├── .gitignore ├── .stylelintrc ├── LICENSE ├── README.md ├── media ├── button.svg └── hero.png ├── package.json ├── src ├── components │ ├── Preview │ │ ├── index.tsx │ │ ├── item.tsx │ │ └── style.css │ ├── Slider │ │ ├── index.tsx │ │ └── style.css │ └── index.ts ├── main.ts ├── style.css ├── types.d.ts ├── ui.tsx ├── utils │ ├── debounce.ts │ ├── error.ts │ ├── node.ts │ ├── selection.ts │ └── transform.ts └── vars.css └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/README.md -------------------------------------------------------------------------------- /media/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/media/button.svg -------------------------------------------------------------------------------- /media/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/media/hero.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/Preview/index.tsx -------------------------------------------------------------------------------- /src/components/Preview/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/Preview/item.tsx -------------------------------------------------------------------------------- /src/components/Preview/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/Preview/style.css -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/Slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/Slider/style.css -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/style.css -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/utils/debounce.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/utils/node.ts -------------------------------------------------------------------------------- /src/utils/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/utils/selection.ts -------------------------------------------------------------------------------- /src/utils/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/utils/transform.ts -------------------------------------------------------------------------------- /src/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/src/vars.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwidua/figma-copy-and-rotate/HEAD/tsconfig.json --------------------------------------------------------------------------------