├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ ├── test.ts.md │ └── test.ts.snap ├── test-case.json └── test.ts ├── index.ts ├── package.json ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/test.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/__tests__/__snapshots__/test.ts.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/__tests__/__snapshots__/test.ts.snap -------------------------------------------------------------------------------- /__tests__/test-case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/__tests__/test-case.json -------------------------------------------------------------------------------- /__tests__/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/__tests__/test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonvasin/styled-system-figma/HEAD/yarn.lock --------------------------------------------------------------------------------