├── .github └── workflows │ └── build.yml ├── .gitignore ├── .husky └── pre-push ├── .node-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── adjust-svg.ts ├── all-combinations.test.ts ├── bin.ts ├── case.ts ├── templates.ts └── transformer.ts ├── tests ├── components │ ├── with-native-for-typescript │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ ├── with-native-for-typescript_allow-override-fill │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ ├── with-native-for-typescript_remove-fill │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ ├── with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ ├── with-native-for-typescript_remove-stroke │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ ├── with-native-for-typescript_with-web-for-typescript │ │ ├── SVGClean.tsx │ │ ├── SVGClean.web.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGEdgeCaseWidth.web.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGMatrixNegative.web.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGPctUnit.web.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSimple.web.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGSketchExport.web.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithFill.web.tsx │ │ ├── SVGWithStroke.tsx │ │ ├── SVGWithStroke.web.tsx │ │ ├── SVGWithStyleAndData.tsx │ │ └── SVGWithStyleAndData.web.tsx │ ├── with-native │ │ ├── SVGClean.js │ │ ├── SVGEdgeCaseWidth.js │ │ ├── SVGMatrixNegative.js │ │ ├── SVGPctUnit.js │ │ ├── SVGSimple.js │ │ ├── SVGSketchExport.js │ │ ├── SVGWithFill.js │ │ ├── SVGWithStroke.js │ │ └── SVGWithStyleAndData.js │ ├── with-native_with-web │ │ ├── SVGClean.js │ │ ├── SVGClean.web.js │ │ ├── SVGEdgeCaseWidth.js │ │ ├── SVGEdgeCaseWidth.web.js │ │ ├── SVGMatrixNegative.js │ │ ├── SVGMatrixNegative.web.js │ │ ├── SVGPctUnit.js │ │ ├── SVGPctUnit.web.js │ │ ├── SVGSimple.js │ │ ├── SVGSimple.web.js │ │ ├── SVGSketchExport.js │ │ ├── SVGSketchExport.web.js │ │ ├── SVGWithFill.js │ │ ├── SVGWithFill.web.js │ │ ├── SVGWithStroke.js │ │ ├── SVGWithStroke.web.js │ │ ├── SVGWithStyleAndData.js │ │ └── SVGWithStyleAndData.web.js │ ├── with-web-for-typescript │ │ ├── SVGClean.tsx │ │ ├── SVGEdgeCaseWidth.tsx │ │ ├── SVGMatrixNegative.tsx │ │ ├── SVGPctUnit.tsx │ │ ├── SVGSimple.tsx │ │ ├── SVGSketchExport.tsx │ │ ├── SVGWithFill.tsx │ │ ├── SVGWithStroke.tsx │ │ └── SVGWithStyleAndData.tsx │ └── with-web │ │ ├── SVGClean.js │ │ ├── SVGEdgeCaseWidth.js │ │ ├── SVGMatrixNegative.js │ │ ├── SVGPctUnit.js │ │ ├── SVGSimple.js │ │ ├── SVGSketchExport.js │ │ ├── SVGWithFill.js │ │ ├── SVGWithStroke.js │ │ └── SVGWithStyleAndData.js └── fixtures │ ├── clean.svg │ ├── edge-case-width.svg │ ├── matrix-negative.svg │ ├── pct-unit.svg │ ├── simple.svg │ ├── sketch-export.svg │ ├── with-fill.svg │ ├── with-stroke.svg │ └── with-style-and-data.svg └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | npm test 2 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/package.json -------------------------------------------------------------------------------- /src/adjust-svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/adjust-svg.ts -------------------------------------------------------------------------------- /src/all-combinations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/all-combinations.test.ts -------------------------------------------------------------------------------- /src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/bin.ts -------------------------------------------------------------------------------- /src/case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/case.ts -------------------------------------------------------------------------------- /src/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/templates.ts -------------------------------------------------------------------------------- /src/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/src/transformer.ts -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_allow-override-fill/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_allow-override-fill/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-fill_remove-stroke_allow-override-fill/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_remove-stroke/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_remove-stroke/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGClean.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGClean.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGEdgeCaseWidth.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGEdgeCaseWidth.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGMatrixNegative.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGMatrixNegative.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGPctUnit.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGPctUnit.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGSimple.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGSimple.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGSketchExport.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGSketchExport.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithFill.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithFill.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStroke.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStroke.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStyleAndData.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native-for-typescript_with-web-for-typescript/SVGWithStyleAndData.web.tsx -------------------------------------------------------------------------------- /tests/components/with-native/SVGClean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGClean.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGEdgeCaseWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGEdgeCaseWidth.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGMatrixNegative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGMatrixNegative.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGPctUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGPctUnit.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGSimple.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGSketchExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGSketchExport.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGWithFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGWithFill.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGWithStroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGWithStroke.js -------------------------------------------------------------------------------- /tests/components/with-native/SVGWithStyleAndData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native/SVGWithStyleAndData.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGClean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGClean.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGClean.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGClean.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGEdgeCaseWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGEdgeCaseWidth.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGEdgeCaseWidth.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGEdgeCaseWidth.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGMatrixNegative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGMatrixNegative.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGMatrixNegative.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGMatrixNegative.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGPctUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGPctUnit.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGPctUnit.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGPctUnit.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGSimple.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGSimple.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGSimple.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGSketchExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGSketchExport.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGSketchExport.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGSketchExport.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithFill.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithFill.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithFill.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithStroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithStroke.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithStroke.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithStroke.web.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithStyleAndData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithStyleAndData.js -------------------------------------------------------------------------------- /tests/components/with-native_with-web/SVGWithStyleAndData.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-native_with-web/SVGWithStyleAndData.web.js -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGClean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGClean.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGEdgeCaseWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGEdgeCaseWidth.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGMatrixNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGMatrixNegative.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGPctUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGPctUnit.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGSimple.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGSketchExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGSketchExport.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGWithFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGWithFill.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGWithStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGWithStroke.tsx -------------------------------------------------------------------------------- /tests/components/with-web-for-typescript/SVGWithStyleAndData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web-for-typescript/SVGWithStyleAndData.tsx -------------------------------------------------------------------------------- /tests/components/with-web/SVGClean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGClean.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGEdgeCaseWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGEdgeCaseWidth.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGMatrixNegative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGMatrixNegative.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGPctUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGPctUnit.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGSimple.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGSketchExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGSketchExport.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGWithFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGWithFill.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGWithStroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGWithStroke.js -------------------------------------------------------------------------------- /tests/components/with-web/SVGWithStyleAndData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/components/with-web/SVGWithStyleAndData.js -------------------------------------------------------------------------------- /tests/fixtures/clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/clean.svg -------------------------------------------------------------------------------- /tests/fixtures/edge-case-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/edge-case-width.svg -------------------------------------------------------------------------------- /tests/fixtures/matrix-negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/matrix-negative.svg -------------------------------------------------------------------------------- /tests/fixtures/pct-unit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/pct-unit.svg -------------------------------------------------------------------------------- /tests/fixtures/simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/simple.svg -------------------------------------------------------------------------------- /tests/fixtures/sketch-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/sketch-export.svg -------------------------------------------------------------------------------- /tests/fixtures/with-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/with-fill.svg -------------------------------------------------------------------------------- /tests/fixtures/with-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/with-stroke.svg -------------------------------------------------------------------------------- /tests/fixtures/with-style-and-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tests/fixtures/with-style-and-data.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/react-from-svg/HEAD/tsconfig.json --------------------------------------------------------------------------------