├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── License.md ├── README.md ├── __tests__ ├── __snapshots__ │ ├── facebook.js.snap │ ├── google.js.snap │ ├── hacker.js.snap │ ├── linkedin.js.snap │ ├── mail.js.snap │ ├── pinterest.js.snap │ ├── reddit.js.snap │ ├── telegram.js.snap │ ├── tumblr.js.snap │ ├── twitter.js.snap │ ├── vk.js.snap │ ├── whatsapp.js.snap │ └── xing.js.snap ├── facebook.js ├── google.js ├── hacker.js ├── linkedin.js ├── mail.js ├── pinterest.js ├── reddit.js ├── telegram.js ├── tumblr.js ├── twitter.js ├── vk.js ├── whatsapp.js └── xing.js ├── docs ├── facebook.md ├── google.md ├── hacker.md ├── index.html ├── index.js ├── linkedin.md ├── mail.md ├── main.css ├── pinterest.md ├── reddit.md ├── telegram.md ├── tumblr.md ├── twitter.md ├── vk.md ├── whatsapp.md ├── x.md └── xing.md ├── lib └── jestsetup.js ├── package.json ├── src ├── buttons │ ├── facebook.js │ ├── factory.js │ ├── google.js │ ├── hacker.js │ ├── linkedin.js │ ├── mail.js │ ├── pinterest.js │ ├── reddit.js │ ├── telegram.js │ ├── tumblr.js │ ├── twitter.js │ ├── vk.js │ ├── whatsapp.js │ ├── wrapper.js │ ├── x.js │ └── xing.js ├── common.js ├── consts.js ├── index.js └── svg │ ├── X.js │ ├── facebook.js │ ├── google.js │ ├── hacker.js │ ├── linkedin.js │ ├── mail.js │ ├── pinterest.js │ ├── reddit.js │ ├── telegram.js │ ├── tumblr.js │ ├── twitter.js │ ├── vk.js │ ├── whatsapp.js │ └── xing.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | bin/* eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/LICENSE -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/facebook.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/facebook.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/google.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/google.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/hacker.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/hacker.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/linkedin.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/linkedin.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/mail.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/mail.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/pinterest.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/pinterest.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/reddit.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/reddit.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/telegram.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/telegram.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/tumblr.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/tumblr.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/twitter.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/twitter.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/vk.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/vk.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/whatsapp.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/whatsapp.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/xing.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/__snapshots__/xing.js.snap -------------------------------------------------------------------------------- /__tests__/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/facebook.js -------------------------------------------------------------------------------- /__tests__/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/google.js -------------------------------------------------------------------------------- /__tests__/hacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/hacker.js -------------------------------------------------------------------------------- /__tests__/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/linkedin.js -------------------------------------------------------------------------------- /__tests__/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/mail.js -------------------------------------------------------------------------------- /__tests__/pinterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/pinterest.js -------------------------------------------------------------------------------- /__tests__/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/reddit.js -------------------------------------------------------------------------------- /__tests__/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/telegram.js -------------------------------------------------------------------------------- /__tests__/tumblr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/tumblr.js -------------------------------------------------------------------------------- /__tests__/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/twitter.js -------------------------------------------------------------------------------- /__tests__/vk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/vk.js -------------------------------------------------------------------------------- /__tests__/whatsapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/whatsapp.js -------------------------------------------------------------------------------- /__tests__/xing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/__tests__/xing.js -------------------------------------------------------------------------------- /docs/facebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/facebook.md -------------------------------------------------------------------------------- /docs/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/google.md -------------------------------------------------------------------------------- /docs/hacker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/hacker.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/linkedin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/linkedin.md -------------------------------------------------------------------------------- /docs/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/mail.md -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/pinterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/pinterest.md -------------------------------------------------------------------------------- /docs/reddit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/reddit.md -------------------------------------------------------------------------------- /docs/telegram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/telegram.md -------------------------------------------------------------------------------- /docs/tumblr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/tumblr.md -------------------------------------------------------------------------------- /docs/twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/twitter.md -------------------------------------------------------------------------------- /docs/vk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/vk.md -------------------------------------------------------------------------------- /docs/whatsapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/whatsapp.md -------------------------------------------------------------------------------- /docs/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/x.md -------------------------------------------------------------------------------- /docs/xing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/docs/xing.md -------------------------------------------------------------------------------- /lib/jestsetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/lib/jestsetup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/package.json -------------------------------------------------------------------------------- /src/buttons/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/facebook.js -------------------------------------------------------------------------------- /src/buttons/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/factory.js -------------------------------------------------------------------------------- /src/buttons/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/google.js -------------------------------------------------------------------------------- /src/buttons/hacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/hacker.js -------------------------------------------------------------------------------- /src/buttons/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/linkedin.js -------------------------------------------------------------------------------- /src/buttons/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/mail.js -------------------------------------------------------------------------------- /src/buttons/pinterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/pinterest.js -------------------------------------------------------------------------------- /src/buttons/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/reddit.js -------------------------------------------------------------------------------- /src/buttons/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/telegram.js -------------------------------------------------------------------------------- /src/buttons/tumblr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/tumblr.js -------------------------------------------------------------------------------- /src/buttons/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/twitter.js -------------------------------------------------------------------------------- /src/buttons/vk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/vk.js -------------------------------------------------------------------------------- /src/buttons/whatsapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/whatsapp.js -------------------------------------------------------------------------------- /src/buttons/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/wrapper.js -------------------------------------------------------------------------------- /src/buttons/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/x.js -------------------------------------------------------------------------------- /src/buttons/xing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/buttons/xing.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/common.js -------------------------------------------------------------------------------- /src/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/consts.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/index.js -------------------------------------------------------------------------------- /src/svg/X.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/X.js -------------------------------------------------------------------------------- /src/svg/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/facebook.js -------------------------------------------------------------------------------- /src/svg/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/google.js -------------------------------------------------------------------------------- /src/svg/hacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/hacker.js -------------------------------------------------------------------------------- /src/svg/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/linkedin.js -------------------------------------------------------------------------------- /src/svg/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/mail.js -------------------------------------------------------------------------------- /src/svg/pinterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/pinterest.js -------------------------------------------------------------------------------- /src/svg/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/reddit.js -------------------------------------------------------------------------------- /src/svg/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/telegram.js -------------------------------------------------------------------------------- /src/svg/tumblr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/tumblr.js -------------------------------------------------------------------------------- /src/svg/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/twitter.js -------------------------------------------------------------------------------- /src/svg/vk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/vk.js -------------------------------------------------------------------------------- /src/svg/whatsapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/whatsapp.js -------------------------------------------------------------------------------- /src/svg/xing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/src/svg/xing.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/react-social-sharing/HEAD/yarn.lock --------------------------------------------------------------------------------