├── .gitignore ├── .prettierignore ├── Readme.md ├── index.js ├── lib ├── default-js-template.ejs ├── default-ts-template.ejs └── generate-icons.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | yarn-error.log 4 | compiled 5 | test-sets -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/.prettierignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/Readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/index.js -------------------------------------------------------------------------------- /lib/default-js-template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/lib/default-js-template.ejs -------------------------------------------------------------------------------- /lib/default-ts-template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/lib/default-ts-template.ejs -------------------------------------------------------------------------------- /lib/generate-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/lib/generate-icons.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmahen/create-react-icons/HEAD/yarn.lock --------------------------------------------------------------------------------