├── .gitignore ├── LICENSE ├── README.md ├── bin ├── build.ts ├── template.ts ├── tsconfig.json └── types.d.ts ├── cleanup.sh ├── compile.js ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/bin/build.ts -------------------------------------------------------------------------------- /bin/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/bin/template.ts -------------------------------------------------------------------------------- /bin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/bin/tsconfig.json -------------------------------------------------------------------------------- /bin/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@svgr/core"; 2 | -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npm pack --dry-run -------------------------------------------------------------------------------- /compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/compile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecklf/react-native-heroicons/HEAD/tsconfig.json --------------------------------------------------------------------------------