├── .gitignore ├── .prettierrc.json ├── .storybook ├── addons.js ├── config.js ├── presets.js └── webpack.config.js ├── .svgrrc.js ├── .yarnclean ├── CHANGELONG.MD ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── Button │ ├── Button.stories.mdx │ ├── Button.test.tsx │ ├── Button.tsx │ ├── __snapshots__ │ │ └── Button.test.tsx.snap │ └── index.ts ├── Checkbox │ ├── Checkbox.stories.mdx │ ├── Checkbox.test.tsx │ ├── Checkbox.tsx │ ├── __snapshots__ │ │ └── Checkbox.test.tsx.snap │ └── index.ts ├── Disclosure │ ├── Disclosure.stories.mdx │ ├── Disclosure.test.tsx │ ├── Disclosure.tsx │ ├── __snapshots__ │ │ └── Disclosure.test.tsx.snap │ └── index.ts ├── Icon │ ├── Icon.stories.mdx │ ├── Icon.tsx │ ├── IconNames.ts │ ├── components │ │ ├── 16 │ │ │ ├── AlignBottom.tsx │ │ │ ├── AlignTop.tsx │ │ │ ├── AlignVerticalCenter.tsx │ │ │ ├── ArrowDown.tsx │ │ │ ├── ArrowLeft.tsx │ │ │ ├── ArrowRight.tsx │ │ │ ├── ArrowUp.tsx │ │ │ ├── CaretDown.tsx │ │ │ ├── CaretRight.tsx │ │ │ ├── CaretUp.tsx │ │ │ ├── MenuCheckmarkBreadcrumb.tsx │ │ │ ├── MenuCheckmarkMixed.tsx │ │ │ ├── MenuCheckmarkOn.tsx │ │ │ ├── MenuChevron.tsx │ │ │ ├── Noodle.tsx │ │ │ ├── OrientationLandscape.tsx │ │ │ ├── OrientationPortrait.tsx │ │ │ ├── Overlay.tsx │ │ │ ├── Swap.tsx │ │ │ ├── TextAlignAdjusted.tsx │ │ │ ├── TextAlignCenter.tsx │ │ │ ├── TextAlignLeft.tsx │ │ │ ├── TextAlignRight.tsx │ │ │ ├── TextDecorationStrikethrough.tsx │ │ │ ├── TextDecorationUnderline.tsx │ │ │ ├── TextResizeFixed.tsx │ │ │ ├── TextResizeHeight.tsx │ │ │ ├── TextResizeWidth.tsx │ │ │ ├── TextTransformCapitalize.tsx │ │ │ ├── TextTransformLower.tsx │ │ │ └── TextTransformUpper.tsx │ │ ├── 32 │ │ │ ├── Adjust.tsx │ │ │ ├── Angle.tsx │ │ │ ├── ArrowLeftRight.tsx │ │ │ ├── ArrowUpDown.tsx │ │ │ ├── Blend.tsx │ │ │ ├── BlendEmpty.tsx │ │ │ ├── Break.tsx │ │ │ ├── Component.tsx │ │ │ ├── CornerRadius.tsx │ │ │ ├── Corners.tsx │ │ │ ├── DistributeHorizontalSpacing.tsx │ │ │ ├── DistributeVerticalSpacing.tsx │ │ │ ├── Draft.tsx │ │ │ ├── Effects.tsx │ │ │ ├── Eyedropper.tsx │ │ │ ├── Frame.tsx │ │ │ ├── Hidden.tsx │ │ │ ├── Hyperlink.tsx │ │ │ ├── Kebab.tsx │ │ │ ├── LayoutAlignBottom.tsx │ │ │ ├── LayoutAlignHorizontalCenters.tsx │ │ │ ├── LayoutAlignLeft.tsx │ │ │ ├── LayoutAlignRight.tsx │ │ │ ├── LayoutAlignTop.tsx │ │ │ ├── LayoutAlignVerticalCenters.tsx │ │ │ ├── LayoutGridColumns.tsx │ │ │ ├── LayoutGridRows.tsx │ │ │ ├── LayoutGridUniform.tsx │ │ │ ├── LetterSpacing.tsx │ │ │ ├── Library.tsx │ │ │ ├── LineHeight.tsx │ │ │ ├── LinkBroke.tsx │ │ │ ├── LinkConnected.tsx │ │ │ ├── List.tsx │ │ │ ├── ListDetailed.tsx │ │ │ ├── Lock.tsx │ │ │ ├── LockUnlocked.tsx │ │ │ ├── Minus.tsx │ │ │ ├── NodeDelete.tsx │ │ │ ├── ParagraphIndent.tsx │ │ │ ├── ParagraphSpacing.tsx │ │ │ ├── Play.tsx │ │ │ ├── Plus.tsx │ │ │ ├── Recent.tsx │ │ │ ├── ResetInstance.tsx │ │ │ ├── ResizeToFit.tsx │ │ │ ├── Resolve.tsx │ │ │ ├── ResolveFilled.tsx │ │ │ ├── Return.tsx │ │ │ ├── Search.tsx │ │ │ ├── SearchLarge.tsx │ │ │ ├── Share.tsx │ │ │ ├── Smiley.tsx │ │ │ ├── StrokeWeight.tsx │ │ │ ├── Styles.tsx │ │ │ ├── TidyUpGrid.tsx │ │ │ ├── TidyUpListHorizontal.tsx │ │ │ ├── TidyUpListVertical.tsx │ │ │ ├── Timer.tsx │ │ │ ├── Trash.tsx │ │ │ ├── VectorHandles.tsx │ │ │ ├── Visible.tsx │ │ │ ├── Warning.tsx │ │ │ └── X.tsx │ │ ├── Layer │ │ │ ├── AnimateFill.tsx │ │ │ ├── Group.tsx │ │ │ ├── ImageFill.tsx │ │ │ ├── Instance.tsx │ │ │ ├── LayerComponent.tsx │ │ │ ├── LayerFrame.tsx │ │ │ ├── Mask.tsx │ │ │ ├── ScrollingFrameAll.tsx │ │ │ ├── ScrollingFrameHorizontal.tsx │ │ │ ├── ScrollingFrameVertical.tsx │ │ │ ├── Slice.tsx │ │ │ ├── Type.tsx │ │ │ └── Vector.tsx │ │ └── index.ts │ ├── index.ts │ └── svg │ │ ├── 16 │ │ ├── align-bottom.svg │ │ ├── align-top.svg │ │ ├── align-vertical-center.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up.svg │ │ ├── caret-down.svg │ │ ├── caret-right.svg │ │ ├── caret-up.svg │ │ ├── menu-checkmark-breadcrumb.svg │ │ ├── menu-checkmark-mixed.svg │ │ ├── menu-checkmark-on.svg │ │ ├── menu-chevron.svg │ │ ├── noodle.svg │ │ ├── orientation-landscape.svg │ │ ├── orientation-portrait.svg │ │ ├── overlay.svg │ │ ├── swap.svg │ │ ├── text-align-adjusted.svg │ │ ├── text-align-center.svg │ │ ├── text-align-left.svg │ │ ├── text-align-right.svg │ │ ├── text-decoration-strikethrough.svg │ │ ├── text-decoration-underline.svg │ │ ├── text-resize-fixed.svg │ │ ├── text-resize-height.svg │ │ ├── text-resize-width.svg │ │ ├── text-transform-capitalize.svg │ │ ├── text-transform-lower.svg │ │ └── text-transform-upper.svg │ │ ├── 32 │ │ ├── adjust.svg │ │ ├── angle.svg │ │ ├── arrow-left-right.svg │ │ ├── arrow-up-down.svg │ │ ├── blend-empty.svg │ │ ├── blend.svg │ │ ├── break.svg │ │ ├── component.svg │ │ ├── corner-radius.svg │ │ ├── corners.svg │ │ ├── distribute-horizontal-spacing.svg │ │ ├── distribute-vertical-spacing.svg │ │ ├── draft.svg │ │ ├── effects.svg │ │ ├── eyedropper.svg │ │ ├── frame.svg │ │ ├── hidden.svg │ │ ├── hyperlink.svg │ │ ├── kebab.svg │ │ ├── layout-align-bottom.svg │ │ ├── layout-align-horizontal-centers.svg │ │ ├── layout-align-left.svg │ │ ├── layout-align-right.svg │ │ ├── layout-align-top.svg │ │ ├── layout-align-vertical-centers.svg │ │ ├── layout-grid-columns.svg │ │ ├── layout-grid-rows.svg │ │ ├── layout-grid-uniform.svg │ │ ├── letter-spacing.svg │ │ ├── library.svg │ │ ├── line_height.svg │ │ ├── link-broke.svg │ │ ├── link-connected.svg │ │ ├── list-detailed.svg │ │ ├── list.svg │ │ ├── lock-unlocked.svg │ │ ├── lock.svg │ │ ├── minus.svg │ │ ├── node-delete.svg │ │ ├── paragraph_indent.svg │ │ ├── paragraph_spacing.svg │ │ ├── play.svg │ │ ├── plus.svg │ │ ├── recent.svg │ │ ├── reset-instance.svg │ │ ├── resize_to_fit.svg │ │ ├── resolve-filled.svg │ │ ├── resolve.svg │ │ ├── return.svg │ │ ├── search-large.svg │ │ ├── search.svg │ │ ├── share.svg │ │ ├── smiley.svg │ │ ├── stroke-weight.svg │ │ ├── styles.svg │ │ ├── tidy-up-grid.svg │ │ ├── tidy-up-list-horizontal.svg │ │ ├── tidy-up-list-vertical.svg │ │ ├── timer.svg │ │ ├── trash.svg │ │ ├── vector-handles.svg │ │ ├── visible.svg │ │ ├── warning.svg │ │ └── x.svg │ │ └── Layer │ │ ├── AnimateFill.svg │ │ ├── Group.svg │ │ ├── ImageFill.svg │ │ ├── Instance.svg │ │ ├── LayerComponent.svg │ │ ├── LayerFrame.svg │ │ ├── Mask.svg │ │ ├── Scrolling frame horizontal.svg │ │ ├── Scrolling frame vertical.svg │ │ ├── Scrolling frame-all.svg │ │ ├── Slice.svg │ │ ├── Type.svg │ │ └── Vector.svg ├── IconButton │ ├── IconButton.test.tsx │ ├── IconButton.tsx │ ├── __snapshots__ │ │ └── IconButton.test.tsx.snap │ └── index.ts ├── Input │ ├── Input.stories.mdx │ ├── Input.test.tsx │ ├── Input.tsx │ ├── __snapshots__ │ │ └── Input.test.tsx.snap │ └── index.ts ├── Label │ ├── Label.test.tsx │ ├── Label.tsx │ ├── __snapshots__ │ │ └── Label.test.tsx.snap │ └── index.ts ├── OptionButton │ ├── OptionButton.test.tsx │ ├── OptionButton.tsx │ ├── __snapshots__ │ │ └── OptionButton.test.tsx.snap │ └── index.ts ├── OptionStrip │ ├── OptionStrip.stories.mdx │ ├── OptionStrip.test.tsx │ ├── OptionStrip.tsx │ ├── __snapshots__ │ │ └── OptionStrip.test.tsx.snap │ └── index.ts ├── Section │ ├── Section.stories.mdx │ ├── Section.test.tsx │ ├── Section.tsx │ ├── __snapshots__ │ │ └── Section.test.tsx.snap │ └── index.ts ├── SectionTitle │ ├── SectionTitle.test.tsx │ ├── SectionTitle.tsx │ ├── __snapshots__ │ │ └── SectionTitle.test.tsx.snap │ └── index.ts ├── Select │ ├── Select.stories.mdx │ ├── Select.test.tsx │ ├── Select.tsx │ ├── __snapshots__ │ │ └── Select.test.tsx.snap │ └── index.ts ├── Switch │ ├── Switch.stories.mdx │ ├── Switch.test.tsx │ ├── Switch.tsx │ ├── __snapshots__ │ │ └── Switch.test.tsx.snap │ └── index.ts ├── Tabs │ ├── Tabs.stories.mdx │ ├── Tabs.test.tsx │ ├── Tabs.tsx │ ├── __snapshots__ │ │ └── Tabs.test.tsx.snap │ └── index.ts ├── Text │ ├── Text.stories.mdx │ ├── Text.test.tsx │ ├── Text.tsx │ ├── __snapshots__ │ │ └── Text.test.tsx.snap │ └── index.ts ├── TextArea │ ├── TextArea.stories.mdx │ ├── TextArea.test.tsx │ ├── TextArea.tsx │ ├── __snapshots__ │ │ └── TextArea.test.tsx.snap │ └── index.ts └── index.ts ├── stories ├── index.tsx └── storybook.css ├── storybook-static ├── favicon.ico ├── iframe.html ├── index.html ├── main.4db265daca4b94a96102.bundle.js ├── main.f4f9204e97c4a05d1ef6.bundle.js ├── runtime~main.f4f9204e97c4a05d1ef6.bundle.js ├── runtime~main.f78feadcfa756daa9a5b.bundle.js ├── sb_dll │ ├── storybook_ui-manifest.json │ ├── storybook_ui_dll.LICENCE │ └── storybook_ui_dll.js ├── vendors~main.f4f9204e97c4a05d1ef6.bundle.js └── vendors~main.f64ea1194a888b6c72f7.bundle.js ├── tsconfig.json ├── tsconfig.test.json ├── tslint.json ├── utils └── build-icons.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.storybook/presets.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.svgrrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/.svgrrc.js -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /CHANGELONG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/CHANGELONG.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/package.json -------------------------------------------------------------------------------- /src/Button/Button.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Button/Button.stories.mdx -------------------------------------------------------------------------------- /src/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Button/Button.test.tsx -------------------------------------------------------------------------------- /src/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Button/Button.tsx -------------------------------------------------------------------------------- /src/Button/__snapshots__/Button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Button/__snapshots__/Button.test.tsx.snap -------------------------------------------------------------------------------- /src/Button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Button' 2 | -------------------------------------------------------------------------------- /src/Checkbox/Checkbox.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Checkbox/Checkbox.stories.mdx -------------------------------------------------------------------------------- /src/Checkbox/Checkbox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Checkbox/Checkbox.test.tsx -------------------------------------------------------------------------------- /src/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/Checkbox/__snapshots__/Checkbox.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Checkbox/__snapshots__/Checkbox.test.tsx.snap -------------------------------------------------------------------------------- /src/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Checkbox' 2 | -------------------------------------------------------------------------------- /src/Disclosure/Disclosure.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Disclosure/Disclosure.stories.mdx -------------------------------------------------------------------------------- /src/Disclosure/Disclosure.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Disclosure/Disclosure.test.tsx -------------------------------------------------------------------------------- /src/Disclosure/Disclosure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Disclosure/Disclosure.tsx -------------------------------------------------------------------------------- /src/Disclosure/__snapshots__/Disclosure.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Disclosure/__snapshots__/Disclosure.test.tsx.snap -------------------------------------------------------------------------------- /src/Disclosure/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Disclosure' 2 | -------------------------------------------------------------------------------- /src/Icon/Icon.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/Icon.stories.mdx -------------------------------------------------------------------------------- /src/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/Icon/IconNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/IconNames.ts -------------------------------------------------------------------------------- /src/Icon/components/16/AlignBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/AlignBottom.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/AlignTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/AlignTop.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/AlignVerticalCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/AlignVerticalCenter.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/ArrowDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/ArrowDown.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/ArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/ArrowLeft.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/ArrowRight.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/ArrowUp.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/CaretDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/CaretDown.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/CaretRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/CaretRight.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/CaretUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/CaretUp.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/MenuCheckmarkBreadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/MenuCheckmarkBreadcrumb.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/MenuCheckmarkMixed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/MenuCheckmarkMixed.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/MenuCheckmarkOn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/MenuCheckmarkOn.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/MenuChevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/MenuChevron.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/Noodle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/Noodle.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/OrientationLandscape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/OrientationLandscape.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/OrientationPortrait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/OrientationPortrait.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/Overlay.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/Swap.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextAlignAdjusted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextAlignAdjusted.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextAlignCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextAlignCenter.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextAlignLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextAlignLeft.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextAlignRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextAlignRight.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextDecorationStrikethrough.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextDecorationStrikethrough.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextDecorationUnderline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextDecorationUnderline.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextResizeFixed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextResizeFixed.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextResizeHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextResizeHeight.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextResizeWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextResizeWidth.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextTransformCapitalize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextTransformCapitalize.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextTransformLower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextTransformLower.tsx -------------------------------------------------------------------------------- /src/Icon/components/16/TextTransformUpper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/16/TextTransformUpper.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Adjust.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Adjust.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Angle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Angle.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ArrowLeftRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ArrowLeftRight.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ArrowUpDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ArrowUpDown.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Blend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Blend.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/BlendEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/BlendEmpty.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Break.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Break.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Component.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/CornerRadius.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/CornerRadius.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Corners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Corners.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/DistributeHorizontalSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/DistributeHorizontalSpacing.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/DistributeVerticalSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/DistributeVerticalSpacing.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Draft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Draft.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Effects.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Eyedropper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Eyedropper.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Frame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Frame.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Hidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Hidden.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Hyperlink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Hyperlink.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Kebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Kebab.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignBottom.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignHorizontalCenters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignHorizontalCenters.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignLeft.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignRight.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignTop.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutAlignVerticalCenters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutAlignVerticalCenters.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutGridColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutGridColumns.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutGridRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutGridRows.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LayoutGridUniform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LayoutGridUniform.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LetterSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LetterSpacing.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Library.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LineHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LineHeight.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LinkBroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LinkBroke.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LinkConnected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LinkConnected.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/List.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ListDetailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ListDetailed.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Lock.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/LockUnlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/LockUnlocked.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Minus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Minus.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/NodeDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/NodeDelete.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ParagraphIndent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ParagraphIndent.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ParagraphSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ParagraphSpacing.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Play.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Plus.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Recent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Recent.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ResetInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ResetInstance.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ResizeToFit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ResizeToFit.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Resolve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Resolve.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/ResolveFilled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/ResolveFilled.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Return.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Return.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Search.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/SearchLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/SearchLarge.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Share.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Smiley.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Smiley.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/StrokeWeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/StrokeWeight.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Styles.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/TidyUpGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/TidyUpGrid.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/TidyUpListHorizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/TidyUpListHorizontal.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/TidyUpListVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/TidyUpListVertical.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Timer.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Trash.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/VectorHandles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/VectorHandles.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Visible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Visible.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/Warning.tsx -------------------------------------------------------------------------------- /src/Icon/components/32/X.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/32/X.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/AnimateFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/AnimateFill.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Group.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/ImageFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/ImageFill.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Instance.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/LayerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/LayerComponent.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/LayerFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/LayerFrame.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Mask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Mask.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/ScrollingFrameAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/ScrollingFrameAll.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/ScrollingFrameHorizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/ScrollingFrameHorizontal.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/ScrollingFrameVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/ScrollingFrameVertical.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Slice.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Type.tsx -------------------------------------------------------------------------------- /src/Icon/components/Layer/Vector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/Layer/Vector.tsx -------------------------------------------------------------------------------- /src/Icon/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/components/index.ts -------------------------------------------------------------------------------- /src/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/index.ts -------------------------------------------------------------------------------- /src/Icon/svg/16/align-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/align-bottom.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/align-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/align-top.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/align-vertical-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/align-vertical-center.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/arrow-down.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/arrow-left.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/arrow-right.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/arrow-up.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/caret-down.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/caret-right.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/caret-up.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/menu-checkmark-breadcrumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/menu-checkmark-breadcrumb.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/menu-checkmark-mixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/menu-checkmark-mixed.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/menu-checkmark-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/menu-checkmark-on.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/menu-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/menu-chevron.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/noodle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/noodle.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/orientation-landscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/orientation-landscape.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/orientation-portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/orientation-portrait.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/overlay.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/swap.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-align-adjusted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-align-adjusted.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-align-center.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-align-left.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-align-right.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-decoration-strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-decoration-strikethrough.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-decoration-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-decoration-underline.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-resize-fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-resize-fixed.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-resize-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-resize-height.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-resize-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-resize-width.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-transform-capitalize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-transform-capitalize.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-transform-lower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-transform-lower.svg -------------------------------------------------------------------------------- /src/Icon/svg/16/text-transform-upper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/16/text-transform-upper.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/adjust.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/angle.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/arrow-left-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/arrow-left-right.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/arrow-up-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/arrow-up-down.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/blend-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/blend-empty.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/blend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/blend.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/break.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/component.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/corner-radius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/corner-radius.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/corners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/corners.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/distribute-horizontal-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/distribute-horizontal-spacing.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/distribute-vertical-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/distribute-vertical-spacing.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/draft.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/effects.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/eyedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/eyedropper.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/frame.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/hidden.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/hyperlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/hyperlink.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/kebab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/kebab.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-bottom.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-horizontal-centers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-horizontal-centers.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-left.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-right.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-top.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-align-vertical-centers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-align-vertical-centers.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-grid-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-grid-columns.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-grid-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-grid-rows.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/layout-grid-uniform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/layout-grid-uniform.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/letter-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/letter-spacing.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/library.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/line_height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/line_height.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/link-broke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/link-broke.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/link-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/link-connected.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/list-detailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/list-detailed.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/list.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/lock-unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/lock-unlocked.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/lock.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/minus.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/node-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/node-delete.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/paragraph_indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/paragraph_indent.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/paragraph_spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/paragraph_spacing.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/play.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/plus.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/recent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/recent.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/reset-instance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/reset-instance.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/resize_to_fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/resize_to_fit.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/resolve-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/resolve-filled.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/resolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/resolve.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/return.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/search-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/search-large.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/search.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/share.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/smiley.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/stroke-weight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/stroke-weight.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/styles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/styles.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/tidy-up-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/tidy-up-grid.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/tidy-up-list-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/tidy-up-list-horizontal.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/tidy-up-list-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/tidy-up-list-vertical.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/timer.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/trash.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/vector-handles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/vector-handles.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/visible.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/warning.svg -------------------------------------------------------------------------------- /src/Icon/svg/32/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/32/x.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/AnimateFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/AnimateFill.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Group.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/ImageFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/ImageFill.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Instance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Instance.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/LayerComponent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/LayerComponent.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/LayerFrame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/LayerFrame.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Mask.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Scrolling frame horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Scrolling frame horizontal.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Scrolling frame vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Scrolling frame vertical.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Scrolling frame-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Scrolling frame-all.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Slice.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Type.svg -------------------------------------------------------------------------------- /src/Icon/svg/Layer/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Icon/svg/Layer/Vector.svg -------------------------------------------------------------------------------- /src/IconButton/IconButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/IconButton/IconButton.test.tsx -------------------------------------------------------------------------------- /src/IconButton/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/IconButton/IconButton.tsx -------------------------------------------------------------------------------- /src/IconButton/__snapshots__/IconButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/IconButton/__snapshots__/IconButton.test.tsx.snap -------------------------------------------------------------------------------- /src/IconButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './IconButton' 2 | -------------------------------------------------------------------------------- /src/Input/Input.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Input/Input.stories.mdx -------------------------------------------------------------------------------- /src/Input/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Input/Input.test.tsx -------------------------------------------------------------------------------- /src/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Input/Input.tsx -------------------------------------------------------------------------------- /src/Input/__snapshots__/Input.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Input/__snapshots__/Input.test.tsx.snap -------------------------------------------------------------------------------- /src/Input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Input' 2 | -------------------------------------------------------------------------------- /src/Label/Label.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Label/Label.test.tsx -------------------------------------------------------------------------------- /src/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Label/Label.tsx -------------------------------------------------------------------------------- /src/Label/__snapshots__/Label.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Label/__snapshots__/Label.test.tsx.snap -------------------------------------------------------------------------------- /src/Label/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Label' 2 | -------------------------------------------------------------------------------- /src/OptionButton/OptionButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionButton/OptionButton.test.tsx -------------------------------------------------------------------------------- /src/OptionButton/OptionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionButton/OptionButton.tsx -------------------------------------------------------------------------------- /src/OptionButton/__snapshots__/OptionButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionButton/__snapshots__/OptionButton.test.tsx.snap -------------------------------------------------------------------------------- /src/OptionButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OptionButton' 2 | -------------------------------------------------------------------------------- /src/OptionStrip/OptionStrip.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionStrip/OptionStrip.stories.mdx -------------------------------------------------------------------------------- /src/OptionStrip/OptionStrip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionStrip/OptionStrip.test.tsx -------------------------------------------------------------------------------- /src/OptionStrip/OptionStrip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionStrip/OptionStrip.tsx -------------------------------------------------------------------------------- /src/OptionStrip/__snapshots__/OptionStrip.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/OptionStrip/__snapshots__/OptionStrip.test.tsx.snap -------------------------------------------------------------------------------- /src/OptionStrip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OptionStrip' 2 | -------------------------------------------------------------------------------- /src/Section/Section.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Section/Section.stories.mdx -------------------------------------------------------------------------------- /src/Section/Section.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Section/Section.test.tsx -------------------------------------------------------------------------------- /src/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Section/Section.tsx -------------------------------------------------------------------------------- /src/Section/__snapshots__/Section.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Section/__snapshots__/Section.test.tsx.snap -------------------------------------------------------------------------------- /src/Section/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Section' 2 | -------------------------------------------------------------------------------- /src/SectionTitle/SectionTitle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/SectionTitle/SectionTitle.test.tsx -------------------------------------------------------------------------------- /src/SectionTitle/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/SectionTitle/SectionTitle.tsx -------------------------------------------------------------------------------- /src/SectionTitle/__snapshots__/SectionTitle.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/SectionTitle/__snapshots__/SectionTitle.test.tsx.snap -------------------------------------------------------------------------------- /src/SectionTitle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SectionTitle' 2 | -------------------------------------------------------------------------------- /src/Select/Select.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Select/Select.stories.mdx -------------------------------------------------------------------------------- /src/Select/Select.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Select/Select.test.tsx -------------------------------------------------------------------------------- /src/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Select/Select.tsx -------------------------------------------------------------------------------- /src/Select/__snapshots__/Select.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Select/__snapshots__/Select.test.tsx.snap -------------------------------------------------------------------------------- /src/Select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Select' 2 | -------------------------------------------------------------------------------- /src/Switch/Switch.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Switch/Switch.stories.mdx -------------------------------------------------------------------------------- /src/Switch/Switch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Switch/Switch.test.tsx -------------------------------------------------------------------------------- /src/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/Switch/__snapshots__/Switch.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Switch/__snapshots__/Switch.test.tsx.snap -------------------------------------------------------------------------------- /src/Switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Switch' 2 | -------------------------------------------------------------------------------- /src/Tabs/Tabs.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Tabs/Tabs.stories.mdx -------------------------------------------------------------------------------- /src/Tabs/Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Tabs/Tabs.test.tsx -------------------------------------------------------------------------------- /src/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/Tabs/__snapshots__/Tabs.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Tabs/__snapshots__/Tabs.test.tsx.snap -------------------------------------------------------------------------------- /src/Tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tabs' 2 | 3 | -------------------------------------------------------------------------------- /src/Text/Text.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Text/Text.stories.mdx -------------------------------------------------------------------------------- /src/Text/Text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Text/Text.test.tsx -------------------------------------------------------------------------------- /src/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Text/Text.tsx -------------------------------------------------------------------------------- /src/Text/__snapshots__/Text.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/Text/__snapshots__/Text.test.tsx.snap -------------------------------------------------------------------------------- /src/Text/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Text' 2 | -------------------------------------------------------------------------------- /src/TextArea/TextArea.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/TextArea/TextArea.stories.mdx -------------------------------------------------------------------------------- /src/TextArea/TextArea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/TextArea/TextArea.test.tsx -------------------------------------------------------------------------------- /src/TextArea/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/TextArea/TextArea.tsx -------------------------------------------------------------------------------- /src/TextArea/__snapshots__/TextArea.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/TextArea/__snapshots__/TextArea.test.tsx.snap -------------------------------------------------------------------------------- /src/TextArea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextArea' 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/src/index.ts -------------------------------------------------------------------------------- /stories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/stories/index.tsx -------------------------------------------------------------------------------- /stories/storybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/stories/storybook.css -------------------------------------------------------------------------------- /storybook-static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/favicon.ico -------------------------------------------------------------------------------- /storybook-static/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/iframe.html -------------------------------------------------------------------------------- /storybook-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/index.html -------------------------------------------------------------------------------- /storybook-static/main.4db265daca4b94a96102.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/main.4db265daca4b94a96102.bundle.js -------------------------------------------------------------------------------- /storybook-static/main.f4f9204e97c4a05d1ef6.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/main.f4f9204e97c4a05d1ef6.bundle.js -------------------------------------------------------------------------------- /storybook-static/runtime~main.f4f9204e97c4a05d1ef6.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/runtime~main.f4f9204e97c4a05d1ef6.bundle.js -------------------------------------------------------------------------------- /storybook-static/runtime~main.f78feadcfa756daa9a5b.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/runtime~main.f78feadcfa756daa9a5b.bundle.js -------------------------------------------------------------------------------- /storybook-static/sb_dll/storybook_ui-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/sb_dll/storybook_ui-manifest.json -------------------------------------------------------------------------------- /storybook-static/sb_dll/storybook_ui_dll.LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/sb_dll/storybook_ui_dll.LICENCE -------------------------------------------------------------------------------- /storybook-static/sb_dll/storybook_ui_dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/sb_dll/storybook_ui_dll.js -------------------------------------------------------------------------------- /storybook-static/vendors~main.f4f9204e97c4a05d1ef6.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/vendors~main.f4f9204e97c4a05d1ef6.bundle.js -------------------------------------------------------------------------------- /storybook-static/vendors~main.f64ea1194a888b6c72f7.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/storybook-static/vendors~main.f64ea1194a888b6c72f7.bundle.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/tslint.json -------------------------------------------------------------------------------- /utils/build-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/utils/build-icons.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhardy/figma-styled-components/HEAD/yarn.lock --------------------------------------------------------------------------------