├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example.html ├── example.js ├── package.json └── src ├── core.android.js ├── core.ios.js ├── core.sketch.js ├── core.web.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .babelrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/README.md -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/example.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/package.json -------------------------------------------------------------------------------- /src/core.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/src/core.android.js -------------------------------------------------------------------------------- /src/core.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/src/core.ios.js -------------------------------------------------------------------------------- /src/core.sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/src/core.sketch.js -------------------------------------------------------------------------------- /src/core.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyin/react-primitives-svg/HEAD/src/core.web.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core'); 2 | --------------------------------------------------------------------------------