├── .gitignore ├── README.md ├── package.json ├── src ├── main.ts ├── types.ts └── ui.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | *.css.d.ts 4 | build/ 5 | node_modules/ 6 | manifest.json 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoWorries/toolkit-figma-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------