├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── docs ├── entry.js └── index.html ├── package.json ├── src ├── Icon.js └── paths.js ├── test ├── Icon.js └── paths.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 2 | docs 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/README.md -------------------------------------------------------------------------------- /docs/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/docs/entry.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/package.json -------------------------------------------------------------------------------- /src/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/src/Icon.js -------------------------------------------------------------------------------- /src/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/src/paths.js -------------------------------------------------------------------------------- /test/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/test/Icon.js -------------------------------------------------------------------------------- /test/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/test/paths.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/react-simple-icons/HEAD/webpack.config.js --------------------------------------------------------------------------------