From 64e779721e114ced62b983eb02d848d5825dd36a Mon Sep 17 00:00:00 2001 From: MKAbuMattar Date: Sun, 30 Jan 2022 15:29:59 +0200 Subject: [PATCH] add devicons react original --- .gitignore | 4 +- README.md | 2 +- build/devicons-react-original.svg | 3 + docs/README.md | 2 +- docs/components/FilteredList/ListIcons.js | 24 +----- docs/components/FilteredList/Style.js | 7 +- docs/components/FilteredList/initialItems.js | 31 +------ docs/components/Header/Header.js | 4 +- docs/next-seo.config.js | 2 +- docs/package-lock.json | 14 +-- docs/package.json | 2 +- generate/generate.js | 8 +- package.json | 11 ++- src/icons/DeviconLine.js | 72 ---------------- src/icons/DeviconLineWordmark.js | 90 -------------------- src/icons/DeviconOriginal.js | 20 ----- src/icons/DeviconOriginalWordmark.js | 30 ------- src/icons/DeviconPlain.js | 12 --- src/icons/DeviconPlainWordmark.js | 19 ----- src/icons/DeviconsReactOriginal.js | 9 ++ src/index.js | 7 +- src/stories/a/aarch64.stories.jsx | 4 +- src/stories/a/adonisjs.stories.jsx | 4 +- src/stories/a/aftereffects.stories.jsx | 4 +- src/stories/a/amazonwebservices.stories.jsx | 6 +- src/stories/a/android.stories.jsx | 8 +- src/stories/a/angularjs.stories.jsx | 8 +- src/stories/a/apache.stories.jsx | 12 +-- src/stories/a/apachekafka.stories.jsx | 4 +- src/stories/a/appcelerator.stories.jsx | 6 +- src/stories/a/apple.stories.jsx | 2 +- src/stories/a/appwrite.stories.jsx | 8 +- src/stories/a/arduino.stories.jsx | 8 +- src/stories/a/atom.stories.jsx | 4 +- src/stories/a/azure.stories.jsx | 8 +- src/stories/b/babel.stories.jsx | 12 ++- src/stories/b/backbonejs.stories.jsx | 31 ++++++- src/stories/b/bash.stories.jsx | 12 ++- src/stories/b/behance.stories.jsx | 28 +++++- src/stories/b/bitbucket.stories.jsx | 13 ++- src/stories/b/bootstrap.stories.jsx | 20 ++++- src/stories/b/bower.stories.jsx | 44 +++++++++- src/stories/b/bulma.stories.jsx | 2 +- src/stories/c/c.stories.jsx | 20 ++++- src/stories/c/cakephp.stories.jsx | 28 +++++- src/stories/c/canva.stories.jsx | 2 +- src/stories/c/centos.stories.jsx | 28 +++++- src/stories/c/ceylon.stories.jsx | 28 +++++- src/stories/c/chrome.stories.jsx | 28 +++++- src/stories/c/circleci.stories.jsx | 24 ++++++ src/stories/c/clojure.stories.jsx | 12 ++- src/stories/c/clojurescript.stories.jsx | 12 ++- src/stories/c/codecov.stories.jsx | 2 +- src/stories/c/codeigniter.stories.jsx | 13 ++- src/stories/c/codepen.stories.jsx | 12 ++- src/stories/c/coffeescript.stories.jsx | 12 ++- src/stories/c/composer.stories.jsx | 22 ++++- src/stories/c/confluence.stories.jsx | 12 ++- src/stories/c/couchdb.stories.jsx | 31 ++++++- src/stories/c/cplusplus.stories.jsx | 20 ++++- src/stories/c/crystal.stories.jsx | 12 ++- src/stories/c/csharp.stories.jsx | 20 ++++- src/stories/c/css3.stories.jsx | 28 +++++- src/stories/c/cucumber.stories.jsx | 12 ++- src/stories/d/d3js.stories.jsx | 12 ++- src/stories/d/dart.stories.jsx | 28 +++++- src/stories/d/debian.stories.jsx | 28 +++++- src/stories/d/denojs.stories.jsx | 12 ++- src/stories/d/deviconsreact.stories.jsx | 2 +- src/stories/d/digitalocean.stories.jsx | 28 +++++- src/stories/d/django.stories.jsx | 20 ++++- src/stories/d/docker.stories.jsx | 28 +++++- src/stories/d/doctrine.stories.jsx | 44 +++++++++- src/stories/d/dot-net.stories.jsx | 28 +++++- src/stories/d/dotnetcore.stories.jsx | 14 ++- src/stories/d/drupal.stories.jsx | 31 ++++++- 76 files changed, 830 insertions(+), 444 deletions(-) create mode 100644 build/devicons-react-original.svg delete mode 100644 src/icons/DeviconLine.js delete mode 100644 src/icons/DeviconLineWordmark.js delete mode 100644 src/icons/DeviconOriginal.js delete mode 100644 src/icons/DeviconOriginalWordmark.js delete mode 100644 src/icons/DeviconPlain.js delete mode 100644 src/icons/DeviconPlainWordmark.js create mode 100644 src/icons/DeviconsReactOriginal.js create mode 100644 src/stories/c/circleci.stories.jsx diff --git a/.gitignore b/.gitignore index c9dc3ae..39bf9c5 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,9 @@ yarn-error.log* **/public/worker-*.js.map **/public/fallback-*.js - +generate/iconslist.js +generate/names.js +generate/tmp.json lib diff --git a/README.md b/README.md index 5339fce..748f7c1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ devicons-react aims to gather all logos representing development languages and tools, build into devicon

- Demo + Demo

diff --git a/build/devicons-react-original.svg b/build/devicons-react-original.svg new file mode 100644 index 0000000..20ece0f --- /dev/null +++ b/build/devicons-react-original.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/README.md b/docs/README.md index 9f18f8d..437f48e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,7 @@ devicons-react aims to gather all logos representing development languages and tools, build into devicon

- Demo + Demo

diff --git a/docs/components/FilteredList/ListIcons.js b/docs/components/FilteredList/ListIcons.js index 9c938a7..52cec63 100644 --- a/docs/components/FilteredList/ListIcons.js +++ b/docs/components/FilteredList/ListIcons.js @@ -136,12 +136,7 @@ import { DebianPlainWordmark, DenojsOriginal, DenojsOriginalWordmark, - DeviconLine, - DeviconLineWordmark, - DeviconOriginal, - DeviconOriginalWordmark, - DeviconPlain, - DeviconPlainWordmark, + DeviconsReactOriginal, DigitaloceanOriginal, DigitaloceanOriginalWordmark, DigitaloceanPlain, @@ -1073,23 +1068,8 @@ const ListIcons = ({ componentName }) => { )} {componentName.toLowerCase() === 'DenojsOriginalWordmark'.toLowerCase() && } - {componentName.toLowerCase() === 'DeviconLine'.toLowerCase() && ( - - )} - {componentName.toLowerCase() === 'DeviconLineWordmark'.toLowerCase() && ( - - )} - {componentName.toLowerCase() === 'DeviconOriginal'.toLowerCase() && ( - - )} {componentName.toLowerCase() === - 'DeviconOriginalWordmark'.toLowerCase() && } - {componentName.toLowerCase() === 'DeviconPlain'.toLowerCase() && ( - - )} - {componentName.toLowerCase() === 'DeviconPlainWordmark'.toLowerCase() && ( - - )} + 'DeviconsReactOriginal'.toLowerCase() && } {componentName.toLowerCase() === 'DigitaloceanOriginal'.toLowerCase() && ( )} diff --git a/docs/components/FilteredList/Style.js b/docs/components/FilteredList/Style.js index 15a9177..dab3ebc 100644 --- a/docs/components/FilteredList/Style.js +++ b/docs/components/FilteredList/Style.js @@ -45,14 +45,15 @@ export const Cards = styled.div` display: flex; flex-wrap: wrap; gap: 1rem; - align-items: baseline; + align-items: stretch; justify-content: center; ` export const Card = styled.div` display: flex; flex-direction: column; - width: 15rem; + justify-content: space-between; + width: 16rem; border-radius: 5px; background-color: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); @@ -62,9 +63,7 @@ export const CardInfo = styled.div` padding: 2.5em 1em; display: flex; flex-direction: column; - align-items: center; gap: 1rem; - text-align: center; ` export const CardTitle = styled.h4` diff --git a/docs/components/FilteredList/initialItems.js b/docs/components/FilteredList/initialItems.js index 9b1e0ef..d251e91 100644 --- a/docs/components/FilteredList/initialItems.js +++ b/docs/components/FilteredList/initialItems.js @@ -675,34 +675,9 @@ const initialItems = [ fileName: 'devicons-react/icons/DenojsOriginalWordmark', }, { - name: 'Devicon Line', - componentName: 'DeviconLine', - fileName: 'devicons-react/icons/DeviconLine', - }, - { - name: 'Devicon Line Wordmark', - componentName: 'DeviconLineWordmark', - fileName: 'devicons-react/icons/DeviconLineWordmark', - }, - { - name: 'Devicon Original', - componentName: 'DeviconOriginal', - fileName: 'devicons-react/icons/DeviconOriginal', - }, - { - name: 'Devicon Original Wordmark', - componentName: 'DeviconOriginalWordmark', - fileName: 'devicons-react/icons/DeviconOriginalWordmark', - }, - { - name: 'Devicon Plain', - componentName: 'DeviconPlain', - fileName: 'devicons-react/icons/DeviconPlain', - }, - { - name: 'Devicon Plain Wordmark', - componentName: 'DeviconPlainWordmark', - fileName: 'devicons-react/icons/DeviconPlainWordmark', + name: 'Devicons React Original', + componentName: 'DeviconsReactOriginal', + fileName: 'devicons-react/icons/DeviconsReactOriginal', }, { name: 'Digitalocean Original', diff --git a/docs/components/Header/Header.js b/docs/components/Header/Header.js index 3e4ea42..34ead4a 100644 --- a/docs/components/Header/Header.js +++ b/docs/components/Header/Header.js @@ -20,7 +20,7 @@ import { HeaderArrowWave, } from './Style' -import ReactLogo from './Logo' +import DeviconsReactOriginal from 'devicons-react/icons/DeviconsReactOriginal' const Header = () => { useEffect(() => { @@ -32,7 +32,7 @@ const Header = () => { - + Devicons React diff --git a/docs/next-seo.config.js b/docs/next-seo.config.js index 4a42b47..8929ceb 100644 --- a/docs/next-seo.config.js +++ b/docs/next-seo.config.js @@ -5,7 +5,7 @@ export default { openGraph: { type: 'website', locale: 'en_IE', - url: 'https://devicons-react.netlify.app/', + url: 'https://devicons-react.vercel.app/', site_name: 'Devicons React', }, twitter: { diff --git a/docs/package-lock.json b/docs/package-lock.json index 9eb9a63..8023e2c 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -6,7 +6,7 @@ "": { "name": "docs", "dependencies": { - "devicons-react": "^1.1.2", + "devicons-react": "^1.1.3", "highlight.js": "^11.4.0", "next": "12.0.9", "next-pwa": "^5.4.4", @@ -2967,9 +2967,9 @@ } }, "node_modules/devicons-react": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/devicons-react/-/devicons-react-1.1.2.tgz", - "integrity": "sha512-jk8x/LT7dkIzXv00nTTKci2UxYuuXuqS2TTO/9owLeaBhesYA1BfRBhfbcl10uTEjBKrlRo65jwAej/12fevEg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/devicons-react/-/devicons-react-1.1.3.tgz", + "integrity": "sha512-EZCBNTJw5mKaxPRBBzwh0XcpqLT8hHbrWGSzH0mKeaxW3HfGuAjYTL5qPd+U8V20ZTQU4lhGKbullMQk0p+p6A==", "peerDependencies": { "react": "^17.0.2", "react-dom": "^17.0.2" @@ -8629,9 +8629,9 @@ } }, "devicons-react": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/devicons-react/-/devicons-react-1.1.2.tgz", - "integrity": "sha512-jk8x/LT7dkIzXv00nTTKci2UxYuuXuqS2TTO/9owLeaBhesYA1BfRBhfbcl10uTEjBKrlRo65jwAej/12fevEg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/devicons-react/-/devicons-react-1.1.3.tgz", + "integrity": "sha512-EZCBNTJw5mKaxPRBBzwh0XcpqLT8hHbrWGSzH0mKeaxW3HfGuAjYTL5qPd+U8V20ZTQU4lhGKbullMQk0p+p6A==", "requires": {} }, "dir-glob": { diff --git a/docs/package.json b/docs/package.json index 4853b8e..4140b07 100644 --- a/docs/package.json +++ b/docs/package.json @@ -8,7 +8,7 @@ "lint": "next lint" }, "dependencies": { - "devicons-react": "^1.1.2", + "devicons-react": "^1.1.3", "highlight.js": "^11.4.0", "next": "12.0.9", "next-pwa": "^5.4.4", diff --git a/generate/generate.js b/generate/generate.js index c4ed59a..b9de0cc 100644 --- a/generate/generate.js +++ b/generate/generate.js @@ -9,7 +9,7 @@ let data const obj = [] const names = [] -const trt = [] +const iconslist = [] fs.readdirSync(testFolder).forEach((file) => { name = file @@ -24,9 +24,9 @@ fs.readdirSync(testFolder).forEach((file) => { <${componentName}/> )}` names.push(componentName) - trt.push(componentNames) + iconslist.push(componentNames) }) fs.writeFileSync(path.resolve(__dirname, 'tmp.json'), JSON.stringify(obj)) -fs.writeFileSync(path.resolve(__dirname, 'temp.json'), JSON.stringify(names)) -fs.writeFileSync(path.resolve(__dirname, 'trt.json'), JSON.stringify(trt)) +fs.writeFileSync(path.resolve(__dirname, 'names.js'), names.join(',')) +fs.writeFileSync(path.resolve(__dirname, 'iconslist.js'), iconslist.join('\n')) diff --git a/package.json b/package.json index 3c8fd32..79ade8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "devicons-react", - "version": "1.1.2", + "version": "1.1.3", "description": "Programming icons", "main": "lib/index.js", "module": "lib/index.es.js", @@ -9,9 +9,12 @@ "clean:svg": "rm -rf svg", "clean:svgr": "rm -rf src/icons", "clean:svgr:index": "rm ./src/icons/index.js", + "clean:svg:devicon": "rm ./svg/devicon-line-wordmark.svg ./svg/devicon-line.svg ./svg/devicon-original-wordmark.svg ./svg/devicon-original.svg ./svg/devicon-plain-wordmark.svg ./svg/devicon-plain.svg", + "copy:svg:devicons-react": "cp ./build/devicons-react-original.svg ./svg", + "generate": "node ./generate/generate.js", "storybook": "start-storybook -p 6006", - "build-storybook": "build-storybook", - "build:svg": "node ./build/build.config.js && npm run clean:svg && node ./build/generate.js", + "build:storybook": "build-storybook", + "build:svg": "node ./build/build.config.js && npm run clean:svg && node ./build/generate.js && npm run clean:svg:devicon && npm run copy:svg:devicons-react", "build:svgr": "npm run clean:svgr && npx @svgr/cli --out-dir src/icons --index-template index-template.js -- svg && npm run clean:svgr:index", "build:lib": "npm run clean:lib && rollup -c", "build": "npm run build:svg && npm run build:svgr && npm run build:lib", @@ -60,5 +63,5 @@ "bugs": { "url": "https://github.com/MKAbuMattar/devicons-react/issues" }, - "homepage": "https://devicons-react.netlify.app/" + "homepage": "https://devicons-react.vercel.app/" } diff --git a/src/icons/DeviconLine.js b/src/icons/DeviconLine.js deleted file mode 100644 index 559ac50..0000000 --- a/src/icons/DeviconLine.js +++ /dev/null @@ -1,72 +0,0 @@ -import * as React from 'react' - -const SvgDeviconLine = (props) => ( - - - - - - -) - -export default SvgDeviconLine diff --git a/src/icons/DeviconLineWordmark.js b/src/icons/DeviconLineWordmark.js deleted file mode 100644 index b14c767..0000000 --- a/src/icons/DeviconLineWordmark.js +++ /dev/null @@ -1,90 +0,0 @@ -import * as React from 'react' - -const SvgDeviconLineWordmark = (props) => ( - - - - - - - - - -) - -export default SvgDeviconLineWordmark diff --git a/src/icons/DeviconOriginal.js b/src/icons/DeviconOriginal.js deleted file mode 100644 index 31a460d..0000000 --- a/src/icons/DeviconOriginal.js +++ /dev/null @@ -1,20 +0,0 @@ -import * as React from 'react' - -const SvgDeviconOriginal = (props) => ( - - - - - - - - -) - -export default SvgDeviconOriginal diff --git a/src/icons/DeviconOriginalWordmark.js b/src/icons/DeviconOriginalWordmark.js deleted file mode 100644 index f1974a7..0000000 --- a/src/icons/DeviconOriginalWordmark.js +++ /dev/null @@ -1,30 +0,0 @@ -import * as React from 'react' - -const SvgDeviconOriginalWordmark = (props) => ( - - - - - - - - - -) - -export default SvgDeviconOriginalWordmark diff --git a/src/icons/DeviconPlain.js b/src/icons/DeviconPlain.js deleted file mode 100644 index 64a3777..0000000 --- a/src/icons/DeviconPlain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from 'react' - -const SvgDeviconPlain = (props) => ( - - - -) - -export default SvgDeviconPlain diff --git a/src/icons/DeviconPlainWordmark.js b/src/icons/DeviconPlainWordmark.js deleted file mode 100644 index 4b9d997..0000000 --- a/src/icons/DeviconPlainWordmark.js +++ /dev/null @@ -1,19 +0,0 @@ -import * as React from 'react' - -const SvgDeviconPlainWordmark = (props) => ( - - - - -) - -export default SvgDeviconPlainWordmark diff --git a/src/icons/DeviconsReactOriginal.js b/src/icons/DeviconsReactOriginal.js new file mode 100644 index 0000000..a23e66f --- /dev/null +++ b/src/icons/DeviconsReactOriginal.js @@ -0,0 +1,9 @@ +import * as React from 'react' + +const SvgDeviconsReactOriginal = (props) => ( + + + +) + +export default SvgDeviconsReactOriginal diff --git a/src/index.js b/src/index.js index 27f3ea7..528c09e 100644 --- a/src/index.js +++ b/src/index.js @@ -133,12 +133,7 @@ export { default as DebianPlainWordmark } from './icons/DebianPlainWordmark' export { default as DebianPlain } from './icons/DebianPlain' export { default as DenojsOriginalWordmark } from './icons/DenojsOriginalWordmark' export { default as DenojsOriginal } from './icons/DenojsOriginal' -export { default as DeviconLineWordmark } from './icons/DeviconLineWordmark' -export { default as DeviconLine } from './icons/DeviconLine' -export { default as DeviconOriginalWordmark } from './icons/DeviconOriginalWordmark' -export { default as DeviconOriginal } from './icons/DeviconOriginal' -export { default as DeviconPlainWordmark } from './icons/DeviconPlainWordmark' -export { default as DeviconPlain } from './icons/DeviconPlain' +export { default as DeviconsReactOriginal } from './icons/DeviconsReactOriginal' export { default as DigitaloceanOriginalWordmark } from './icons/DigitaloceanOriginalWordmark' export { default as DigitaloceanOriginal } from './icons/DigitaloceanOriginal' export { default as DigitaloceanPlainWordmark } from './icons/DigitaloceanPlainWordmark' diff --git a/src/stories/a/aarch64.stories.jsx b/src/stories/a/aarch64.stories.jsx index dfc89d5..6cb70ac 100644 --- a/src/stories/a/aarch64.stories.jsx +++ b/src/stories/a/aarch64.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('aarch64', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/a/adonisjs.stories.jsx b/src/stories/a/adonisjs.stories.jsx index 8903d51..0f5e9ac 100644 --- a/src/stories/a/adonisjs.stories.jsx +++ b/src/stories/a/adonisjs.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('adonisjs', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/aftereffects.stories.jsx b/src/stories/a/aftereffects.stories.jsx index 474c27f..d758509 100644 --- a/src/stories/a/aftereffects.stories.jsx +++ b/src/stories/a/aftereffects.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('aftereffects', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/a/amazonwebservices.stories.jsx b/src/stories/a/amazonwebservices.stories.jsx index 9333a8c..4da12f3 100644 --- a/src/stories/a/amazonwebservices.stories.jsx +++ b/src/stories/a/amazonwebservices.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('amazonwebservices', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/android.stories.jsx b/src/stories/a/android.stories.jsx index 34480c8..89ad71e 100644 --- a/src/stories/a/android.stories.jsx +++ b/src/stories/a/android.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('android', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -32,7 +32,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/angularjs.stories.jsx b/src/stories/a/angularjs.stories.jsx index d87d8e7..b717715 100644 --- a/src/stories/a/angularjs.stories.jsx +++ b/src/stories/a/angularjs.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('angularjs', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -32,7 +32,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/apache.stories.jsx b/src/stories/a/apache.stories.jsx index bce39ad..94a73fd 100644 --- a/src/stories/a/apache.stories.jsx +++ b/src/stories/a/apache.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('apache', module) stories.add('line', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('line', () => { stories.add('line wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('line wordmark', () => { stories.add('original', () => { return ( - + ) }) @@ -32,7 +32,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -40,7 +40,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -48,7 +48,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/apachekafka.stories.jsx b/src/stories/a/apachekafka.stories.jsx index 5ce6a09..1d2302c 100644 --- a/src/stories/a/apachekafka.stories.jsx +++ b/src/stories/a/apachekafka.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('apachekafka', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/appcelerator.stories.jsx b/src/stories/a/appcelerator.stories.jsx index f66a8d5..fe422d7 100644 --- a/src/stories/a/appcelerator.stories.jsx +++ b/src/stories/a/appcelerator.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('appcelerator', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/apple.stories.jsx b/src/stories/a/apple.stories.jsx index c2b741f..d24f79a 100644 --- a/src/stories/a/apple.stories.jsx +++ b/src/stories/a/apple.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('apple', module) stories.add('original', () => { return ( - + ) }) diff --git a/src/stories/a/appwrite.stories.jsx b/src/stories/a/appwrite.stories.jsx index 71e63e5..80d2706 100644 --- a/src/stories/a/appwrite.stories.jsx +++ b/src/stories/a/appwrite.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('appwrite', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -25,7 +25,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -34,7 +34,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/arduino.stories.jsx b/src/stories/a/arduino.stories.jsx index 3b20539..296a707 100644 --- a/src/stories/a/arduino.stories.jsx +++ b/src/stories/a/arduino.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('arduino', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -32,7 +32,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/atom.stories.jsx b/src/stories/a/atom.stories.jsx index d72d24e..9f762e9 100644 --- a/src/stories/a/atom.stories.jsx +++ b/src/stories/a/atom.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('atom', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) diff --git a/src/stories/a/azure.stories.jsx b/src/stories/a/azure.stories.jsx index 0ac444b..a5d061e 100644 --- a/src/stories/a/azure.stories.jsx +++ b/src/stories/a/azure.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('azure', module) stories.add('original', () => { return ( - + ) }) @@ -16,7 +16,7 @@ stories.add('original', () => { stories.add('original wordmark', () => { return ( - + ) }) @@ -24,7 +24,7 @@ stories.add('original wordmark', () => { stories.add('plain', () => { return ( - + ) }) @@ -32,7 +32,7 @@ stories.add('plain', () => { stories.add('plain wordmark', () => { return ( - + ) }) diff --git a/src/stories/b/babel.stories.jsx b/src/stories/b/babel.stories.jsx index 01ec0c2..2be90d6 100644 --- a/src/stories/b/babel.stories.jsx +++ b/src/stories/b/babel.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BabelPlain } from '../../index' +import { BabelOriginal, BabelPlain } from '../../index' const stories = storiesOf('babel', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/b/backbonejs.stories.jsx b/src/stories/b/backbonejs.stories.jsx index 62a8c2f..08adea4 100644 --- a/src/stories/b/backbonejs.stories.jsx +++ b/src/stories/b/backbonejs.stories.jsx @@ -1,14 +1,41 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BackbonejsPlain } from '../../index' +import { BackbonejsOriginal, BackbonejsOriginalWordmark, BackbonejsPlain, BackbonejsPlainWordmark } from '../../index' const stories = storiesOf('backbonejs', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + + stories.add('plain', () => { return ( - + + + ) +}) + + +stories.add('plain wordmark', () => { + return ( + + ) }) + diff --git a/src/stories/b/bash.stories.jsx b/src/stories/b/bash.stories.jsx index ad860cd..60ef460 100644 --- a/src/stories/b/bash.stories.jsx +++ b/src/stories/b/bash.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BashPlain } from '../../index' +import { BashOriginal, BashPlain } from '../../index' const stories = storiesOf('bash', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/b/behance.stories.jsx b/src/stories/b/behance.stories.jsx index c81c36f..22effb4 100644 --- a/src/stories/b/behance.stories.jsx +++ b/src/stories/b/behance.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BehancePlain } from '../../index' +import { BehanceOriginal, BehanceOriginalWordmark, BehancePlain, BehancePlainWordmark } from '../../index' const stories = storiesOf('behance', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/b/bitbucket.stories.jsx b/src/stories/b/bitbucket.stories.jsx index 37d332e..1056090 100644 --- a/src/stories/b/bitbucket.stories.jsx +++ b/src/stories/b/bitbucket.stories.jsx @@ -1,14 +1,23 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BitbucketOriginal } from '../../index' +import { BitbucketOriginal, BitbucketOriginalWordmark } from '../../index' const stories = storiesOf('bitbucket', module) stories.add('original', () => { return ( - + ) }) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + diff --git a/src/stories/b/bootstrap.stories.jsx b/src/stories/b/bootstrap.stories.jsx index a5b897c..670ff08 100644 --- a/src/stories/b/bootstrap.stories.jsx +++ b/src/stories/b/bootstrap.stories.jsx @@ -1,14 +1,30 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BootstrapPlain } from '../../index' +import { BootstrapOriginal, BootstrapPlain, BootstrapPlainWordmark } from '../../index' const stories = storiesOf('bootstrap', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/b/bower.stories.jsx b/src/stories/b/bower.stories.jsx index 0abe75b..2844ef8 100644 --- a/src/stories/b/bower.stories.jsx +++ b/src/stories/b/bower.stories.jsx @@ -1,14 +1,54 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { BowerPlain } from '../../index' +import { BowerLine, BowerLineWordmark, BowerOriginal, BowerOriginalWordmark, BowerPlain, BowerPlainWordmark } from '../../index' const stories = storiesOf('bower', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('line wordmark', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/b/bulma.stories.jsx b/src/stories/b/bulma.stories.jsx index a2621f8..0debbf7 100644 --- a/src/stories/b/bulma.stories.jsx +++ b/src/stories/b/bulma.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('bulma', module) stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/c.stories.jsx b/src/stories/c/c.stories.jsx index d4f773e..a60561b 100644 --- a/src/stories/c/c.stories.jsx +++ b/src/stories/c/c.stories.jsx @@ -1,14 +1,30 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CPlain } from '../../index' +import { CLine, COriginal, CPlain } from '../../index' const stories = storiesOf('c', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/cakephp.stories.jsx b/src/stories/c/cakephp.stories.jsx index 1ed45a8..8d9e7e4 100644 --- a/src/stories/c/cakephp.stories.jsx +++ b/src/stories/c/cakephp.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CakephpPlain } from '../../index' +import { CakephpOriginal, CakephpOriginalWordmark, CakephpPlain, CakephpPlainWordmark } from '../../index' const stories = storiesOf('cakephp', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/canva.stories.jsx b/src/stories/c/canva.stories.jsx index cda7789..2bf1873 100644 --- a/src/stories/c/canva.stories.jsx +++ b/src/stories/c/canva.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('canva', module) stories.add('original', () => { return ( - + ) }) diff --git a/src/stories/c/centos.stories.jsx b/src/stories/c/centos.stories.jsx index 5e54fa1..6cbc8f6 100644 --- a/src/stories/c/centos.stories.jsx +++ b/src/stories/c/centos.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CentosPlain } from '../../index' +import { CentosOriginal, CentosOriginalWordmark, CentosPlain, CentosPlainWordmark } from '../../index' const stories = storiesOf('centos', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/ceylon.stories.jsx b/src/stories/c/ceylon.stories.jsx index e959810..cc0033d 100644 --- a/src/stories/c/ceylon.stories.jsx +++ b/src/stories/c/ceylon.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CeylonPlain } from '../../index' +import { CeylonOriginal, CeylonOriginalWordmark, CeylonPlain, CeylonPlainWordmark } from '../../index' const stories = storiesOf('ceylon', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/chrome.stories.jsx b/src/stories/c/chrome.stories.jsx index 5fbab87..a50c152 100644 --- a/src/stories/c/chrome.stories.jsx +++ b/src/stories/c/chrome.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { ChromePlain } from '../../index' +import { ChromeOriginal, ChromeOriginalWordmark, ChromePlain, ChromePlainWordmark } from '../../index' const stories = storiesOf('chrome', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/circleci.stories.jsx b/src/stories/c/circleci.stories.jsx new file mode 100644 index 0000000..2606f77 --- /dev/null +++ b/src/stories/c/circleci.stories.jsx @@ -0,0 +1,24 @@ +import React, { Fragment } from 'react' +import { storiesOf } from '@storybook/react' + +import { CircleciPlain, CircleciPlainWordmark } from '../../index' + +const stories = storiesOf('circleci', module) + + + +stories.add('plain', () => { + return ( + + + + ) +}) + +stories.add('plain Wordmark', () => { + return ( + + + + ) +}) diff --git a/src/stories/c/clojure.stories.jsx b/src/stories/c/clojure.stories.jsx index 9be82c6..422ab60 100644 --- a/src/stories/c/clojure.stories.jsx +++ b/src/stories/c/clojure.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { ClojureLine } from '../../index' +import { ClojureOriginal, ClojureLine } from '../../index' const stories = storiesOf('clojure', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('line', () => { return ( - + ) }) diff --git a/src/stories/c/clojurescript.stories.jsx b/src/stories/c/clojurescript.stories.jsx index 73e56f3..d08483c 100644 --- a/src/stories/c/clojurescript.stories.jsx +++ b/src/stories/c/clojurescript.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { ClojurescriptPlain } from '../../index' +import { ClojurescriptOriginal, ClojurescriptPlain } from '../../index' const stories = storiesOf('clojurescript', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/codecov.stories.jsx b/src/stories/c/codecov.stories.jsx index f5cbe02..1c8d329 100644 --- a/src/stories/c/codecov.stories.jsx +++ b/src/stories/c/codecov.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('codecov', module) stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/codeigniter.stories.jsx b/src/stories/c/codeigniter.stories.jsx index c6a32b2..4435909 100644 --- a/src/stories/c/codeigniter.stories.jsx +++ b/src/stories/c/codeigniter.stories.jsx @@ -1,14 +1,23 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CodeigniterPlain } from '../../index' +import { CodeigniterPlain, CodeigniterPlainWordmark } from '../../index' const stories = storiesOf('codeigniter', module) stories.add('plain', () => { return ( - + ) }) + +stories.add('plain wordmark', () => { + return ( + + + + ) +}) + diff --git a/src/stories/c/codepen.stories.jsx b/src/stories/c/codepen.stories.jsx index 2079a68..8fe2f5e 100644 --- a/src/stories/c/codepen.stories.jsx +++ b/src/stories/c/codepen.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CodepenPlain } from '../../index' +import { CodepenOriginalWordmark, CodepenPlain } from '../../index' const stories = storiesOf('codepen', module) +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/coffeescript.stories.jsx b/src/stories/c/coffeescript.stories.jsx index 5b5ea43..bddff5f 100644 --- a/src/stories/c/coffeescript.stories.jsx +++ b/src/stories/c/coffeescript.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CoffeescriptOriginal } from '../../index' +import { CoffeescriptOriginal, CoffeescriptOriginalWordmark } from '../../index' const stories = storiesOf('coffeescript', module) stories.add('original', () => { return ( - + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/composer.stories.jsx b/src/stories/c/composer.stories.jsx index 4873275..a98bf11 100644 --- a/src/stories/c/composer.stories.jsx +++ b/src/stories/c/composer.stories.jsx @@ -1,14 +1,32 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { ComposerLine } from '../../index' +import { ComposerLine, ComposerLineWordmark, ComposerOriginal } from '../../index' const stories = storiesOf('composer', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('line wordmark', () => { + return ( + + + + ) +}) + + stories.add('original', () => { return ( - + ) }) + diff --git a/src/stories/c/confluence.stories.jsx b/src/stories/c/confluence.stories.jsx index 2c740b8..e6700e7 100644 --- a/src/stories/c/confluence.stories.jsx +++ b/src/stories/c/confluence.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { ConfluenceOriginal } from '../../index' +import { ConfluenceOriginal, ConfluenceOriginalWordmark } from '../../index' const stories = storiesOf('confluence', module) stories.add('original', () => { return ( - + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/couchdb.stories.jsx b/src/stories/c/couchdb.stories.jsx index 57fd99f..ae25056 100644 --- a/src/stories/c/couchdb.stories.jsx +++ b/src/stories/c/couchdb.stories.jsx @@ -1,14 +1,41 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CouchdbPlain } from '../../index' +import { CouchdbOriginal, CouchdbOriginalWordmark, CouchdbPlain, CouchdbPlainWordmark } from '../../index' const stories = storiesOf('couchdb', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + + stories.add('plain', () => { return ( - + + + ) +}) + + +stories.add('plain wordmark', () => { + return ( + + ) }) + diff --git a/src/stories/c/cplusplus.stories.jsx b/src/stories/c/cplusplus.stories.jsx index ef2a706..5656b27 100644 --- a/src/stories/c/cplusplus.stories.jsx +++ b/src/stories/c/cplusplus.stories.jsx @@ -1,14 +1,30 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CPlusPlusPlain } from '../../index' +import { CplusplusLine, CplusplusOriginal, CplusplusPlain } from '../../index' const stories = storiesOf('cplusplus', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/crystal.stories.jsx b/src/stories/c/crystal.stories.jsx index 05c7fa4..61fccf4 100644 --- a/src/stories/c/crystal.stories.jsx +++ b/src/stories/c/crystal.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CrystalOriginal } from '../../index' +import { CrystalOriginal, CrystalOriginalWordmark } from '../../index' const stories = storiesOf('crystal', module) stories.add('original', () => { return ( - + ) }) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) \ No newline at end of file diff --git a/src/stories/c/csharp.stories.jsx b/src/stories/c/csharp.stories.jsx index f59004f..faa6f40 100644 --- a/src/stories/c/csharp.stories.jsx +++ b/src/stories/c/csharp.stories.jsx @@ -1,14 +1,30 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CSharpPlain } from '../../index' +import { CsharpLine, CsharpOriginal, CsharpPlain } from '../../index' const stories = storiesOf('csharp', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/c/css3.stories.jsx b/src/stories/c/css3.stories.jsx index a5fde67..b41a507 100644 --- a/src/stories/c/css3.stories.jsx +++ b/src/stories/c/css3.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CSS3Plain } from '../../index' +import { Css3Original, Css3OriginalWordmark, Css3Plain, Css3PlainWordmark } from '../../index' const stories = storiesOf('css3', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/c/cucumber.stories.jsx b/src/stories/c/cucumber.stories.jsx index 1605760..8028c86 100644 --- a/src/stories/c/cucumber.stories.jsx +++ b/src/stories/c/cucumber.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { CucumberPlain } from '../../index' +import { CucumberPlain, CucumberPlainWordmark } from '../../index' const stories = storiesOf('cucumber', module) stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/d3js.stories.jsx b/src/stories/d/d3js.stories.jsx index 5be6dca..961468d 100644 --- a/src/stories/d/d3js.stories.jsx +++ b/src/stories/d/d3js.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { D3jsPlain } from '../../index' +import { D3JsOriginal, D3JsPlain } from '../../index' const stories = storiesOf('d3js', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/d/dart.stories.jsx b/src/stories/d/dart.stories.jsx index 8885dde..bd2116b 100644 --- a/src/stories/d/dart.stories.jsx +++ b/src/stories/d/dart.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DartPlain } from '../../index' +import { DartOriginal, DartOriginalWordmark, DartPlain, DartPlainWordmark } from '../../index' const stories = storiesOf('dart', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/debian.stories.jsx b/src/stories/d/debian.stories.jsx index 868b6e7..afff8f0 100644 --- a/src/stories/d/debian.stories.jsx +++ b/src/stories/d/debian.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DebianPlain } from '../../index' +import { DebianOriginal, DebianOriginalWordmark, DebianPlain, DebianPlainWordmark } from '../../index' const stories = storiesOf('debian', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/denojs.stories.jsx b/src/stories/d/denojs.stories.jsx index 3f094d5..68d1f06 100644 --- a/src/stories/d/denojs.stories.jsx +++ b/src/stories/d/denojs.stories.jsx @@ -1,14 +1,22 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DenojsOriginal } from '../../index' +import { DenojsOriginal, DenojsOriginalWordmark } from '../../index' const stories = storiesOf('denojs', module) stories.add('original', () => { return ( - + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/deviconsreact.stories.jsx b/src/stories/d/deviconsreact.stories.jsx index 9060725..ff6c6ee 100644 --- a/src/stories/d/deviconsreact.stories.jsx +++ b/src/stories/d/deviconsreact.stories.jsx @@ -8,7 +8,7 @@ const stories = storiesOf('dev icons react', module) stories.add('original', () => { return ( - + ) }) diff --git a/src/stories/d/digitalocean.stories.jsx b/src/stories/d/digitalocean.stories.jsx index 657e5a8..12c0eac 100644 --- a/src/stories/d/digitalocean.stories.jsx +++ b/src/stories/d/digitalocean.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DigitaloceanPlain } from '../../index' +import { DigitaloceanOriginal, DigitaloceanOriginalWordmark, DigitaloceanPlain, DigitaloceanPlainWordmark } from '../../index' const stories = storiesOf('digitalocean', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/django.stories.jsx b/src/stories/d/django.stories.jsx index ecf600e..a90b10d 100644 --- a/src/stories/d/django.stories.jsx +++ b/src/stories/d/django.stories.jsx @@ -1,14 +1,30 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DjangoPlain } from '../../index' +import { DjangoLine, DjangoOriginal, DjangoPlain } from '../../index' const stories = storiesOf('django', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) diff --git a/src/stories/d/docker.stories.jsx b/src/stories/d/docker.stories.jsx index 3937279..ffc6254 100644 --- a/src/stories/d/docker.stories.jsx +++ b/src/stories/d/docker.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DockerPlain } from '../../index' +import { DockerOriginal, DockerOriginalWordmark, DockerPlain, DockerPlainWordmark } from '../../index' const stories = storiesOf('docker', module) stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + +stories.add('plain', () => { + return ( + + + + ) +}) + +stories.add('plain wordmark ', () => { + return ( + + ) }) diff --git a/src/stories/d/doctrine.stories.jsx b/src/stories/d/doctrine.stories.jsx index 1c11b3f..2f78387 100644 --- a/src/stories/d/doctrine.stories.jsx +++ b/src/stories/d/doctrine.stories.jsx @@ -1,14 +1,54 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DoctrinePlain } from '../../index' +import { DoctrineLine, DoctrineLineWordmark, DoctrineOriginal, DoctrineOriginalWordmark, DoctrinePlain, DoctrinePlainWordmark } from '../../index' const stories = storiesOf('doctrine', module) +stories.add('line', () => { + return ( + + + + ) +}) + +stories.add('line wordmark', () => { + return ( + + + + ) +}) + +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/dot-net.stories.jsx b/src/stories/d/dot-net.stories.jsx index f982dea..8e03fcb 100644 --- a/src/stories/d/dot-net.stories.jsx +++ b/src/stories/d/dot-net.stories.jsx @@ -1,14 +1,38 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DotNetPlain } from '../../index' +import { DotNetOriginal, DotNetOriginalWordmark, DotNetPlain, DotNetPlainWordmark } from '../../index' const stories = storiesOf('dot-net', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + + + ) +}) + +stories.add('plain wordmark', () => { + return ( + + ) }) diff --git a/src/stories/d/dotnetcore.stories.jsx b/src/stories/d/dotnetcore.stories.jsx index d317430..e63a87e 100644 --- a/src/stories/d/dotnetcore.stories.jsx +++ b/src/stories/d/dotnetcore.stories.jsx @@ -1,14 +1,24 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DotnetcorePlain } from '../../index' +import { DotnetcoreOriginal, DotnetcorePlain } from '../../index' const stories = storiesOf('dotnetcore', module) +stories.add('original', () => { + return ( + + + + ) +}) + stories.add('plain', () => { return ( - + ) }) + + diff --git a/src/stories/d/drupal.stories.jsx b/src/stories/d/drupal.stories.jsx index 4e0b739..b95f094 100644 --- a/src/stories/d/drupal.stories.jsx +++ b/src/stories/d/drupal.stories.jsx @@ -1,14 +1,41 @@ import React, { Fragment } from 'react' import { storiesOf } from '@storybook/react' -import { DrupalPlain } from '../../index' +import { DrupalOriginal, DrupalOriginalWordmark, DrupalPlain, DrupalPlainWordmark } from '../../index' const stories = storiesOf('drupal', module) +stories.add('original', () => { + return ( + + + + ) +}) + +stories.add('original wordmark', () => { + return ( + + + + ) +}) + + stories.add('plain', () => { return ( - + + + ) +}) + + +stories.add('plain wordmark', () => { + return ( + + ) }) +