gitextract_btxfd3lk/ ├── .codesandbox/ │ └── tasks.json ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── .storybook/ │ ├── main.ts │ ├── preview-head.html │ └── preview.tsx ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── __mocks__/ │ └── react-native-svg.js ├── babel.config.js ├── docs/ │ └── index.stories.tsx ├── jest.native.config.js ├── jest.web.config.js ├── package.json ├── rollup.config.js ├── src/ │ ├── native/ │ │ ├── ContentLoader.tsx │ │ ├── Svg.tsx │ │ ├── __tests__/ │ │ │ ├── ContentLoader.test.tsx │ │ │ ├── Svg.test.tsx │ │ │ ├── __snapshots__/ │ │ │ │ └── snapshots.test.tsx.snap │ │ │ ├── presets/ │ │ │ │ ├── BulletListStyle.test.tsx │ │ │ │ ├── CodeStyle.test.tsx │ │ │ │ ├── FacebookStyle.test.tsx │ │ │ │ ├── InstagramStyle.test.tsx │ │ │ │ ├── ListStyle.test.tsx │ │ │ │ └── __snapshots__/ │ │ │ │ ├── BulletListStyle.test.tsx.snap │ │ │ │ ├── CodeStyle.test.tsx.snap │ │ │ │ ├── FacebookStyle.test.tsx.snap │ │ │ │ ├── InstagramStyle.test.tsx.snap │ │ │ │ └── ListStyle.test.tsx.snap │ │ │ └── snapshots.test.tsx │ │ ├── index.ts │ │ ├── package.json │ │ └── presets/ │ │ ├── BulletListStyle.tsx │ │ ├── CodeStyle.tsx │ │ ├── FacebookStyle.tsx │ │ ├── InstagramStyle.tsx │ │ └── ListStyle.tsx │ ├── shared/ │ │ └── uid.ts │ └── web/ │ ├── ContentLoader.tsx │ ├── Svg.tsx │ ├── __tests__/ │ │ ├── ContentLoader.test.tsx │ │ ├── Svg.test.tsx │ │ ├── __snapshots__/ │ │ │ └── snapshots.test.tsx.snap │ │ ├── index.test.tsx │ │ ├── presets/ │ │ │ ├── BulletListStyle.test.tsx │ │ │ ├── CodeStyle.test.tsx │ │ │ ├── FacebookStyle.test.tsx │ │ │ ├── InstagramStyle.test.tsx │ │ │ ├── ListStyle.test.tsx │ │ │ └── __snapshots__/ │ │ │ ├── BulletListStyle.test.tsx.snap │ │ │ ├── CodeStyle.test.tsx.snap │ │ │ ├── FacebookStyle.test.tsx.snap │ │ │ ├── InstagramStyle.test.tsx.snap │ │ │ └── ListStyle.test.tsx.snap │ │ ├── snapshots.test.tsx │ │ └── uid.test.tsx │ ├── index.ts │ └── presets/ │ ├── BulletListStyle.tsx │ ├── CodeStyle.tsx │ ├── FacebookStyle.tsx │ ├── InstagramStyle.tsx │ └── ListStyle.tsx ├── tsconfig.base.json ├── tsconfig.json └── tsconfig.test.json