├── .babelrc ├── .circleci └── config.yml ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── index.test.js.snap │ └── index.test.js └── index.js ├── webpack.build.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .circleci/ 2 | .github/ 3 | example/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/src/__tests__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/src/__tests__/index.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/webpack.build.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagelflorian/react-figma-embed/HEAD/yarn.lock --------------------------------------------------------------------------------