├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── LICENSE ├── README.md ├── docs ├── bundle.js ├── einshtein.jpg ├── einshtein2.jpeg ├── example.gif ├── index.html └── user.png ├── example ├── app.jsx └── index.html ├── package.json ├── src ├── avatar.d.ts └── avatar.jsx ├── webpack.dev.js ├── webpack.example.js └── webpack.prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | docs 3 | lib 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/README.md -------------------------------------------------------------------------------- /docs/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/bundle.js -------------------------------------------------------------------------------- /docs/einshtein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/einshtein.jpg -------------------------------------------------------------------------------- /docs/einshtein2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/einshtein2.jpeg -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/example.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/docs/user.png -------------------------------------------------------------------------------- /example/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/example/app.jsx -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/package.json -------------------------------------------------------------------------------- /src/avatar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/src/avatar.d.ts -------------------------------------------------------------------------------- /src/avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/src/avatar.jsx -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/webpack.example.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/react-avatar/HEAD/webpack.prod.js --------------------------------------------------------------------------------