From 7b0a9b57581971906285e7030f0f1c3837f65a4e Mon Sep 17 00:00:00 2001 From: booi-dev Date: Mon, 13 May 2024 17:39:50 +0530 Subject: [PATCH 01/34] update: image stack icon name --- build-storybook.log | 8 +- src/Icons/culling/ImageStackIcon.tsx | 2 +- ...eBgIcon.tsx => SelectedFillCircleIcon.tsx} | 21 +- src/Icons/culling/index.ts | 188 +++++++++--------- src/stories/ImageStackIcon.stories.tsx | 10 +- ...tsx => SelectedFillCircleIcon.stories.tsx} | 14 +- .../9105.9126715b.iframe.bundle.js | 2 +- storybook-static/index.json | 20 +- .../main.a6f50d26.iframe.bundle.js | 4 +- .../runtime~main.a5eb3626.iframe.bundle.js | 2 +- ...leBgIcon-stories.54f80937.iframe.bundle.js | 37 +++- storybook-static/stories.json | 40 ++-- 12 files changed, 187 insertions(+), 161 deletions(-) rename src/Icons/culling/{SelectedCircleBgIcon.tsx => SelectedFillCircleIcon.tsx} (72%) rename src/stories/{SelectedCircleBgIcon.stories.tsx => SelectedFillCircleIcon.stories.tsx} (60%) diff --git a/build-storybook.log b/build-storybook.log index eff562c8..240c600c 100644 --- a/build-storybook.log +++ b/build-storybook.log @@ -562,8 +562,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ScissorsIcon-stories.1890fa11.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SearchIcon-stories.9891173b.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SearchIcon-stories.9891173b.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SelectedCircleBgIcon-stories.360d7f12.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SelectedCircleBgIcon-stories.360d7f12.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SelectedFillCircleIcon-stories.360d7f12.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-SelectedFillCircleIcon-stories.360d7f12.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ShareIcon-stories.32135488.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ShareIcon-stories.32135488.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ShowDuplicateIcon-stories.76c97409.iframe.bundle.js generate SourceMap @@ -1003,8 +1003,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ScissorsIcon-stories.d8a89ed7.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SearchIcon-stories.032345b6.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SearchIcon-stories.032345b6.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SelectedCircleBgIcon-stories.172df878.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SelectedCircleBgIcon-stories.172df878.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SelectedFillCircleIcon-stories.172df878.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-SelectedFillCircleIcon-stories.172df878.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ShareIcon-stories.633e9acb.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ShareIcon-stories.633e9acb.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ShowDuplicateIcon-stories.17cd25c8.iframe.bundle.js generate SourceMap diff --git a/src/Icons/culling/ImageStackIcon.tsx b/src/Icons/culling/ImageStackIcon.tsx index c7f764cd..8a94255a 100644 --- a/src/Icons/culling/ImageStackIcon.tsx +++ b/src/Icons/culling/ImageStackIcon.tsx @@ -8,7 +8,7 @@ type Props = Omit & { variant?: IconVariant } -export const ImageStackThreeIcon = React.forwardRef((props, forwardedRef) => { +export const ImageStackIcon = React.forwardRef((props, forwardedRef) => { //props const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props diff --git a/src/Icons/culling/SelectedCircleBgIcon.tsx b/src/Icons/culling/SelectedFillCircleIcon.tsx similarity index 72% rename from src/Icons/culling/SelectedCircleBgIcon.tsx rename to src/Icons/culling/SelectedFillCircleIcon.tsx index 09d79658..52f24071 100644 --- a/src/Icons/culling/SelectedCircleBgIcon.tsx +++ b/src/Icons/culling/SelectedFillCircleIcon.tsx @@ -6,23 +6,14 @@ import DEFAULT_ICON from '../../constant' type IconVariant = 'primary' type Props = Omit & { variant?: IconVariant - bgColor?: string - bgOpacity?: number inActive?: boolean - opacity?: number + fillColor?: string + fillOpacity?: number } -export const SelectedCircleBgIcon = React.forwardRef((props, forwardedRef) => { +export const SelectedFillCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { - variant = 'primary', - color = DEFAULT_ICON.COLOR, - bgColor = DEFAULT_ICON.BG_COLOR, - bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, - inActive = false, - ...restProps - } = props + const { variant = 'primary', color = '#262626', fillColor = '#fff', size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color @@ -31,7 +22,7 @@ export const SelectedCircleBgIcon = React.forwardRef((prop // variants const primary = ( - + ((prop return }) -export default React.memo(SelectedCircleBgIcon) +export default React.memo(SelectedFillCircleIcon) diff --git a/src/Icons/culling/index.ts b/src/Icons/culling/index.ts index 9e09526d..a15ca67d 100644 --- a/src/Icons/culling/index.ts +++ b/src/Icons/culling/index.ts @@ -1,94 +1,94 @@ -export * from './AddFolderIcon'; -export * from './BorderSquareIcon'; -export * from './CardBgIcon'; -export * from './CartIcon'; -export * from './CelebrateIcon'; -export * from './CheckFillCircleIcon'; -export * from './ComputerBgIcon'; -export * from './ContactSupportIcon'; -export * from './CouponIcon'; -export * from './CreateProfileIcon'; -export * from './DiamonIcon'; -export * from './DublicateStackIcon'; -export * from './DuplicateFillIcon'; -export * from './DuplicateIcon'; -export * from './EditAlbumNameIcon'; -export * from './EditPhotoIcon'; -export * from './ExitAppBgIcon'; -export * from './ExpandIcon'; -export * from './EyeCheckedIcon'; -export * from './EyeCrossedIcon'; -export * from './EyeIcon'; -export * from './FacebookPeopleIcon'; -export * from './FilterCircleIcon'; -export * from './FilterIcon'; -export * from './FinderIcon'; -export * from './FiveStarBgIcon'; -export * from './FolderOutlineBgIcon'; -export * from './FullScreenIcon'; -export * from './GridBgIcon'; -export * from './GridDotsIcon'; -export * from './GridIcon'; -export * from './GridThreeLitIcon'; -export * from './GridTwoLitIcon'; -export * from './GroupingLessIcon'; -export * from './GroupingMoreIcon'; -export * from './HomeIcon'; -export * from './ImageBorderCircleIcon'; -export * from './ImageBorderIcon'; -export * from './ImageCrossedBgIcon'; -export * from './ImageCrossedIcon'; -export * from './ImageIcon'; -export * from './ImageStackIcon'; -export * from './KeyCircleIcon'; -export * from './KeyIcon'; -export * from './LinkIcon'; -export * from './ListNotSelectedIcon'; -export * from './ListSelectedIcon'; -export * from './LoaderIcon'; -export * from './LockIcon'; -export * from './LoopCircleIcon'; -export * from './LoopIcon'; -export * from './LoupeIcon'; -export * from './MaximizeIcon'; -export * from './MenuIcon'; -export * from './MinimizeIcon'; -export * from './MoneyBagIcon'; -export * from './MouseLeftClick'; -export * from './MouseLeftClickCircleIcon'; -export * from './MouseRightClick'; -export * from './MoveBgIcon'; -export * from './NoDuplicateIcon'; -export * from './NoneIcon'; -export * from './NoneSelectedIcon'; -export * from './NotAllowIcon'; -export * from './NotSelectedCircleIcon'; -export * from './RecullIcon'; -export * from './ReloadIcon'; -export * from './ReloadWarningIcon'; -export * from './RotateLeftSquareIcon'; -export * from './RotateRightSquareIcon'; -export * from './SelectedCircleBgIcon'; -export * from './ShareIcon'; -export * from './ShowDuplicateIcon'; -export * from './SmileyHappyIcon'; -export * from './SmileySadIcon'; -export * from './SortCircleIcon'; -export * from './SortDuplicateCircleIcon'; -export * from './SortDuplicatesIcon'; -export * from './SortIcon'; -export * from './SortOptionAlphaIcon'; -export * from './SortOptionNumIcon'; -export * from './SparkleIcon'; -export * from './SprayBgIcon'; -export * from './SprayCanIcon'; -export * from './SprayCircleIcon'; -export * from './StackThreeIcon'; -export * from './StackTwoIcon'; -export * from './StorageCrossedIcon'; -export * from './SurveyModeIcon'; -export * from './ThunderBgIcon'; -export * from './UploadFolderIcon'; -export * from './ViewAllIcon'; -export * from './ZoomCircleIcon'; -export * from './ZoomIcon'; +export * from './AddFolderIcon' +export * from './BorderSquareIcon' +export * from './CardBgIcon' +export * from './CartIcon' +export * from './CelebrateIcon' +export * from './CheckFillCircleIcon' +export * from './ComputerBgIcon' +export * from './ContactSupportIcon' +export * from './CouponIcon' +export * from './CreateProfileIcon' +export * from './DiamonIcon' +export * from './DublicateStackIcon' +export * from './DuplicateFillIcon' +export * from './DuplicateIcon' +export * from './EditAlbumNameIcon' +export * from './EditPhotoIcon' +export * from './ExitAppBgIcon' +export * from './ExpandIcon' +export * from './EyeCheckedIcon' +export * from './EyeCrossedIcon' +export * from './EyeIcon' +export * from './FacebookPeopleIcon' +export * from './FilterCircleIcon' +export * from './FilterIcon' +export * from './FinderIcon' +export * from './FiveStarBgIcon' +export * from './FolderOutlineBgIcon' +export * from './FullScreenIcon' +export * from './GridBgIcon' +export * from './GridDotsIcon' +export * from './GridIcon' +export * from './GridThreeLitIcon' +export * from './GridTwoLitIcon' +export * from './GroupingLessIcon' +export * from './GroupingMoreIcon' +export * from './HomeIcon' +export * from './ImageBorderCircleIcon' +export * from './ImageBorderIcon' +export * from './ImageCrossedBgIcon' +export * from './ImageCrossedIcon' +export * from './ImageIcon' +export * from './ImageStackIcon' +export * from './KeyCircleIcon' +export * from './KeyIcon' +export * from './LinkIcon' +export * from './ListNotSelectedIcon' +export * from './ListSelectedIcon' +export * from './LoaderIcon' +export * from './LockIcon' +export * from './LoopCircleIcon' +export * from './LoopIcon' +export * from './LoupeIcon' +export * from './MaximizeIcon' +export * from './MenuIcon' +export * from './MinimizeIcon' +export * from './MoneyBagIcon' +export * from './MouseLeftClick' +export * from './MouseLeftClickCircleIcon' +export * from './MouseRightClick' +export * from './MoveBgIcon' +export * from './NoDuplicateIcon' +export * from './NoneIcon' +export * from './NoneSelectedIcon' +export * from './NotAllowIcon' +export * from './NotSelectedCircleIcon' +export * from './RecullIcon' +export * from './ReloadIcon' +export * from './ReloadWarningIcon' +export * from './RotateLeftSquareIcon' +export * from './RotateRightSquareIcon' +export * from './SelectedFillCircleIcon' +export * from './ShareIcon' +export * from './ShowDuplicateIcon' +export * from './SmileyHappyIcon' +export * from './SmileySadIcon' +export * from './SortCircleIcon' +export * from './SortDuplicateCircleIcon' +export * from './SortDuplicatesIcon' +export * from './SortIcon' +export * from './SortOptionAlphaIcon' +export * from './SortOptionNumIcon' +export * from './SparkleIcon' +export * from './SprayBgIcon' +export * from './SprayCanIcon' +export * from './SprayCircleIcon' +export * from './StackThreeIcon' +export * from './StackTwoIcon' +export * from './StorageCrossedIcon' +export * from './SurveyModeIcon' +export * from './ThunderBgIcon' +export * from './UploadFolderIcon' +export * from './ViewAllIcon' +export * from './ZoomCircleIcon' +export * from './ZoomIcon' diff --git a/src/stories/ImageStackIcon.stories.tsx b/src/stories/ImageStackIcon.stories.tsx index 9fdedf17..f18ee685 100644 --- a/src/stories/ImageStackIcon.stories.tsx +++ b/src/stories/ImageStackIcon.stories.tsx @@ -1,11 +1,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' -import { ImageStackThreeIcon } from '../icons' +import { ImageStackIcon } from '../icons' -const meta: Meta = { - component: ImageStackThreeIcon, - title: 'culling/ImageStackThreeIcon', +const meta: Meta = { + component: ImageStackIcon, + title: 'culling/ImageStackIcon', decorators: [ (Story) => (
@@ -16,7 +16,7 @@ const meta: Meta = { } export default meta -type Story = StoryObj +type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/SelectedCircleBgIcon.stories.tsx b/src/stories/SelectedFillCircleIcon.stories.tsx similarity index 60% rename from src/stories/SelectedCircleBgIcon.stories.tsx rename to src/stories/SelectedFillCircleIcon.stories.tsx index 8d4ddb8e..18a8f844 100644 --- a/src/stories/SelectedCircleBgIcon.stories.tsx +++ b/src/stories/SelectedFillCircleIcon.stories.tsx @@ -1,11 +1,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' -import { SelectedCircleBgIcon } from '../icons' +import { SelectedFillCircleIcon } from '../icons' -const meta: Meta = { - component: SelectedCircleBgIcon, - title: 'culling/SelectedCircleBgIcon', +const meta: Meta = { + component: SelectedFillCircleIcon, + title: 'culling/SelectedFillCircleIcon', decorators: [ (Story) => (
@@ -16,7 +16,7 @@ const meta: Meta = { } export default meta -type Story = StoryObj +type Story = StoryObj export const Default: Story = {} @@ -26,9 +26,9 @@ export const Red: Story = { }, } -export const yellowBg: Story = { +export const yellowFill: Story = { args: { - bgColor: 'yellow', + fillColor: 'yellow', }, } diff --git a/storybook-static/9105.9126715b.iframe.bundle.js b/storybook-static/9105.9126715b.iframe.bundle.js index 5d2898a8..0f7071d7 100644 --- a/storybook-static/9105.9126715b.iframe.bundle.js +++ b/storybook-static/9105.9126715b.iframe.bundle.js @@ -373,7 +373,7 @@ RotateIcon: () => b6, ScissorsIcon: () => $6, SearchIcon: () => nt, - SelectedCircleBgIcon: () => wx, + SelectedFillCircleIcon: () => wx, ShareIcon: () => qx, ShowDuplicateIcon: () => _x, SortCircleIcon: () => TR, diff --git a/storybook-static/index.json b/storybook-static/index.json index 95d6d143..597bea72 100644 --- a/storybook-static/index.json +++ b/storybook-static/index.json @@ -5005,40 +5005,40 @@ "type": "story", "id": "culling-selectedcirclebgicon--default", "name": "Default", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"] }, "culling-selectedcirclebgicon--red": { "type": "story", "id": "culling-selectedcirclebgicon--red", "name": "Red", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"] }, "culling-selectedcirclebgicon--yellow-bg": { "type": "story", "id": "culling-selectedcirclebgicon--yellow-bg", "name": "Yellow Bg", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"] }, "culling-selectedcirclebgicon--in-active": { "type": "story", "id": "culling-selectedcirclebgicon--in-active", "name": "In Active", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"] }, "culling-selectedcirclebgicon--large": { "type": "story", "id": "culling-selectedcirclebgicon--large", "name": "Large", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"] }, "culling-shareicon--default": { diff --git a/storybook-static/main.a6f50d26.iframe.bundle.js b/storybook-static/main.a6f50d26.iframe.bundle.js index ea85fdc1..34e0dab8 100644 --- a/storybook-static/main.a6f50d26.iframe.bundle.js +++ b/storybook-static/main.a6f50d26.iframe.bundle.js @@ -350,8 +350,8 @@ './stories/ScissorsIcon.stories.tsx': ['./src/stories/ScissorsIcon.stories.tsx', 9105, 6197], './stories/SearchIcon.stories': ['./src/stories/SearchIcon.stories.tsx', 9105, 8997], './stories/SearchIcon.stories.tsx': ['./src/stories/SearchIcon.stories.tsx', 9105, 8997], - './stories/SelectedCircleBgIcon.stories': ['./src/stories/SelectedCircleBgIcon.stories.tsx', 9105, 8946], - './stories/SelectedCircleBgIcon.stories.tsx': ['./src/stories/SelectedCircleBgIcon.stories.tsx', 9105, 8946], + './stories/SelectedFillCircleIcon.stories': ['./src/stories/SelectedFillCircleIcon.stories.tsx', 9105, 8946], + './stories/SelectedFillCircleIcon.stories.tsx': ['./src/stories/SelectedFillCircleIcon.stories.tsx', 9105, 8946], './stories/ShareIcon.stories': ['./src/stories/ShareIcon.stories.tsx', 9105, 9773], './stories/ShareIcon.stories.tsx': ['./src/stories/ShareIcon.stories.tsx', 9105, 9773], './stories/ShowDuplicateIcon.stories': ['./src/stories/ShowDuplicateIcon.stories.tsx', 9105, 55], diff --git a/storybook-static/runtime~main.a5eb3626.iframe.bundle.js b/storybook-static/runtime~main.a5eb3626.iframe.bundle.js index 2a87c035..b14c4607 100644 --- a/storybook-static/runtime~main.a5eb3626.iframe.bundle.js +++ b/storybook-static/runtime~main.a5eb3626.iframe.bundle.js @@ -205,7 +205,7 @@ 8752: 'stories-DragLrIcon-stories', 8798: 'stories-GoogleColorIcon-stories', 8939: 'stories-FaceSadIcon-stories', - 8946: 'stories-SelectedCircleBgIcon-stories', + 8946: 'stories-SelectedFillCircleIcon-stories', 8992: 'stories-CloseCircleIcon-stories', 8997: 'stories-SearchIcon-stories', 9048: 'stories-ComputerIcon-stories', diff --git a/storybook-static/stories-SelectedCircleBgIcon-stories.54f80937.iframe.bundle.js b/storybook-static/stories-SelectedCircleBgIcon-stories.54f80937.iframe.bundle.js index bbca6d2a..0405046b 100644 --- a/storybook-static/stories-SelectedCircleBgIcon-stories.54f80937.iframe.bundle.js +++ b/storybook-static/stories-SelectedCircleBgIcon-stories.54f80937.iframe.bundle.js @@ -1 +1,36 @@ -"use strict";(self.webpackChunk_aftershootco_unicorn_icons_beta=self.webpackChunk_aftershootco_unicorn_icons_beta||[]).push([[8946],{"./src/stories/SelectedCircleBgIcon.stories.tsx":(g,r,e)=>{e.r(r),e.d(r,{Default:()=>l,Large:()=>d,Red:()=>s,__namedExportsOrder:()=>_,default:()=>c,inActive:()=>i,yellowBg:()=>a});var t=e("./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),o=e("./src/icons/index.ts"),n={component:o.SelectedCircleBgIcon,title:"culling/SelectedCircleBgIcon",decorators:[function(u){return t.createElement("div",{style:{margin:"1rem"}},t.createElement(u,null))}]};const c=n;var l={},s={args:{color:"red"}},a={args:{bgColor:"yellow"}},i={args:{inActive:!0}},d={args:{size:30}};const _=["Default","Red","yellowBg","inActive","Large"]}}]); +'use strict' +;(self.webpackChunk_aftershootco_unicorn_icons_beta = self.webpackChunk_aftershootco_unicorn_icons_beta || []).push([ + [8946], + { + './src/stories/SelectedFillCircleIcon.stories.tsx': (g, r, e) => { + e.r(r), + e.d(r, { + Default: () => l, + Large: () => d, + Red: () => s, + __namedExportsOrder: () => _, + default: () => c, + inActive: () => i, + yellowBg: () => a, + }) + var t = e('./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js'), + o = e('./src/icons/index.ts'), + n = { + component: o.SelectedFillCircleIcon, + title: 'culling/SelectedFillCircleIcon', + decorators: [ + function (u) { + return t.createElement('div', { style: { margin: '1rem' } }, t.createElement(u, null)) + }, + ], + } + const c = n + var l = {}, + s = { args: { color: 'red' } }, + a = { args: { bgColor: 'yellow' } }, + i = { args: { inActive: !0 } }, + d = { args: { size: 30 } } + const _ = ['Default', 'Red', 'yellowBg', 'inActive', 'Large'] + }, + }, +]) diff --git a/storybook-static/stories.json b/storybook-static/stories.json index 977be89e..de02a78d 100644 --- a/storybook-static/stories.json +++ b/storybook-static/stories.json @@ -6698,71 +6698,71 @@ "culling-selectedcirclebgicon--default": { "id": "culling-selectedcirclebgicon--default", "name": "Default", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"], - "kind": "culling/SelectedCircleBgIcon", + "kind": "culling/SelectedFillCircleIcon", "story": "Default", "parameters": { "__id": "culling-selectedcirclebgicon--default", "docsOnly": false, - "fileName": "./src/stories/SelectedCircleBgIcon.stories.tsx" + "fileName": "./src/stories/SelectedFillCircleIcon.stories.tsx" } }, "culling-selectedcirclebgicon--red": { "id": "culling-selectedcirclebgicon--red", "name": "Red", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"], - "kind": "culling/SelectedCircleBgIcon", + "kind": "culling/SelectedFillCircleIcon", "story": "Red", "parameters": { "__id": "culling-selectedcirclebgicon--red", "docsOnly": false, - "fileName": "./src/stories/SelectedCircleBgIcon.stories.tsx" + "fileName": "./src/stories/SelectedFillCircleIcon.stories.tsx" } }, "culling-selectedcirclebgicon--yellow-bg": { "id": "culling-selectedcirclebgicon--yellow-bg", "name": "Yellow Bg", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"], - "kind": "culling/SelectedCircleBgIcon", + "kind": "culling/SelectedFillCircleIcon", "story": "Yellow Bg", "parameters": { "__id": "culling-selectedcirclebgicon--yellow-bg", "docsOnly": false, - "fileName": "./src/stories/SelectedCircleBgIcon.stories.tsx" + "fileName": "./src/stories/SelectedFillCircleIcon.stories.tsx" } }, "culling-selectedcirclebgicon--in-active": { "id": "culling-selectedcirclebgicon--in-active", "name": "In Active", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"], - "kind": "culling/SelectedCircleBgIcon", + "kind": "culling/SelectedFillCircleIcon", "story": "In Active", "parameters": { "__id": "culling-selectedcirclebgicon--in-active", "docsOnly": false, - "fileName": "./src/stories/SelectedCircleBgIcon.stories.tsx" + "fileName": "./src/stories/SelectedFillCircleIcon.stories.tsx" } }, "culling-selectedcirclebgicon--large": { "id": "culling-selectedcirclebgicon--large", "name": "Large", - "title": "culling/SelectedCircleBgIcon", - "importPath": "./src/stories/SelectedCircleBgIcon.stories.tsx", + "title": "culling/SelectedFillCircleIcon", + "importPath": "./src/stories/SelectedFillCircleIcon.stories.tsx", "tags": ["story"], - "kind": "culling/SelectedCircleBgIcon", + "kind": "culling/SelectedFillCircleIcon", "story": "Large", "parameters": { "__id": "culling-selectedcirclebgicon--large", "docsOnly": false, - "fileName": "./src/stories/SelectedCircleBgIcon.stories.tsx" + "fileName": "./src/stories/SelectedFillCircleIcon.stories.tsx" } }, "culling-shareicon--default": { From 486e0e8ee00fe5275efacaab8d5aa1ac036fab6d Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 14 May 2024 12:53:12 +0530 Subject: [PATCH 02/34] update: new download icon --- build-storybook.log | 16 +- src/Icons/culling/AddFolderIcon.tsx | 44 ---- src/Icons/culling/DownloadIcon.tsx | 55 +++++ src/Icons/culling/index.ts | 188 +++++++++--------- .../edit/{AtomBgIcon.tsx => TrainBgIcon.tsx} | 4 +- src/Icons/edit/index.ts | 2 +- src/new-svgs/download.svg | 12 ++ src/new-svgs/not-selected-circle.svg | 3 - ...n.stories.tsx => DownloadIcon.stories.tsx} | 20 +- ...on.stories.tsx => TrainBgIcon.stories.tsx} | 10 +- .../9105.9126715b.iframe.bundle.js | 4 +- storybook-static/index.json | 48 ++--- .../main.a6f50d26.iframe.bundle.js | 8 +- .../runtime~main.a5eb3626.iframe.bundle.js | 4 +- ...lderIcon-stories.b2933add.iframe.bundle.js | 39 +++- ...omBgIcon-stories.023a848f.iframe.bundle.js | 39 +++- storybook-static/stories.json | 96 ++++----- 17 files changed, 340 insertions(+), 252 deletions(-) delete mode 100644 src/Icons/culling/AddFolderIcon.tsx create mode 100644 src/Icons/culling/DownloadIcon.tsx rename src/Icons/edit/{AtomBgIcon.tsx => TrainBgIcon.tsx} (94%) create mode 100644 src/new-svgs/download.svg delete mode 100644 src/new-svgs/not-selected-circle.svg rename src/stories/{AddFolderIcon.stories.tsx => DownloadIcon.stories.tsx} (57%) rename src/stories/{AtomBgIcon.stories.tsx => TrainBgIcon.stories.tsx} (76%) diff --git a/build-storybook.log b/build-storybook.log index 240c600c..52e5370a 100644 --- a/build-storybook.log +++ b/build-storybook.log @@ -234,8 +234,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin main.82ce2ef0.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin runtime~main.9c07d2b5.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin runtime~main.9c07d2b5.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AddFolderIcon-stories.b44ede9c.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AddFolderIcon-stories.b44ede9c.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-DownloadIcon-stories.b44ede9c.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-DownloadIcon-stories.b44ede9c.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AdjustmentIcon-stories.ee2c229d.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AdjustmentIcon-stories.ee2c229d.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AfterShootLogoIcon-stories.dfb0a217.iframe.bundle.js generate SourceMap @@ -272,8 +272,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ArrowRightIcon-stories.922beee7.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ArrowUpIcon-stories.5747c34c.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-ArrowUpIcon-stories.5747c34c.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AtomBgIcon-stories.0275d8ee.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-AtomBgIcon-stories.0275d8ee.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-TrainBgIcon-stories.0275d8ee.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-TrainBgIcon-stories.0275d8ee.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-BorderColorIcon-stories.0d945cc3.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-BorderColorIcon-stories.0d945cc3.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin stories-CaptureOneIcon-stories.4b85cdc0.iframe.bundle.js generate SourceMap @@ -675,8 +675,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing RealContentHashPlugin [webpack.Progress] 92% sealing asset processing RealContentHashPlugin runtime~main.6b3a1351.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin runtime~main.6b3a1351.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AddFolderIcon-stories.e1c6dd4e.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AddFolderIcon-stories.e1c6dd4e.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-DownloadIcon-stories.e1c6dd4e.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-DownloadIcon-stories.e1c6dd4e.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AdjustmentIcon-stories.425677e4.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AdjustmentIcon-stories.425677e4.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AfterShootLogoIcon-stories.e551d5f8.iframe.bundle.js generate SourceMap @@ -713,8 +713,8 @@ info => Using default Webpack5 setup [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ArrowRightIcon-stories.7940c74e.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ArrowUpIcon-stories.64027570.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-ArrowUpIcon-stories.64027570.iframe.bundle.js generated SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AtomBgIcon-stories.85ccb6a6.iframe.bundle.js generate SourceMap - [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-AtomBgIcon-stories.85ccb6a6.iframe.bundle.js generated SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-TrainBgIcon-stories.85ccb6a6.iframe.bundle.js generate SourceMap + [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-TrainBgIcon-stories.85ccb6a6.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-BorderColorIcon-stories.31dd64ac.iframe.bundle.js generate SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-BorderColorIcon-stories.31dd64ac.iframe.bundle.js generated SourceMap [webpack.Progress] 92% sealing asset processing RealContentHashPlugin stories-CaptureOneIcon-stories.7646cab4.iframe.bundle.js generate SourceMap diff --git a/src/Icons/culling/AddFolderIcon.tsx b/src/Icons/culling/AddFolderIcon.tsx deleted file mode 100644 index 0cc5fb34..00000000 --- a/src/Icons/culling/AddFolderIcon.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import React from 'react' -import { IconProps } from '../../../types' -import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' - -type IconVariant = 'primary' -type Props = Omit & { - variant?: IconVariant - inActive?: boolean - accentColor?: string -} - -export const AddFolderIcon = React.forwardRef((props, forwardedRef) => { - //props - const { - variant = 'primary', - color = DEFAULT_ICON.COLOR, - size = DEFAULT_ICON.SIZE, - accentColor = DEFAULT_ICON.ACCENT_COLOR, - inActive = false, - ...restProps - } = props - - const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - - const iconSize = typeof size === 'number' ? `${size}px` : size - - // variants - const primary = ( - - - - - ) - return -}) - -export default React.memo(AddFolderIcon) diff --git a/src/Icons/culling/DownloadIcon.tsx b/src/Icons/culling/DownloadIcon.tsx new file mode 100644 index 00000000..0b62ce9e --- /dev/null +++ b/src/Icons/culling/DownloadIcon.tsx @@ -0,0 +1,55 @@ +import React from 'react' +import { IconProps } from '../../../types' +import BaseIcon from '../../components/BaseIcon' +import DEFAULT_ICON from '../../constant' + +type IconVariant = 'primary' +type Props = Omit & { + variant?: IconVariant + accentColor?: string +} + +export const DownloadIcon = React.forwardRef((props, forwardedRef) => { + //props + const { + variant = 'primary', + color = DEFAULT_ICON.COLOR, + accentColor = DEFAULT_ICON.COLOR, + size = DEFAULT_ICON.SIZE, + inActive = false, + ...restProps + } = props + + const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color + + const iconSize = typeof size === 'number' ? `${size}px` : size + + // variants + const primary = ( + + + + + + + + + + + + + ) + return +}) diff --git a/src/Icons/culling/index.ts b/src/Icons/culling/index.ts index a15ca67d..85c04936 100644 --- a/src/Icons/culling/index.ts +++ b/src/Icons/culling/index.ts @@ -1,94 +1,94 @@ -export * from './AddFolderIcon' -export * from './BorderSquareIcon' -export * from './CardBgIcon' -export * from './CartIcon' -export * from './CelebrateIcon' -export * from './CheckFillCircleIcon' -export * from './ComputerBgIcon' -export * from './ContactSupportIcon' -export * from './CouponIcon' -export * from './CreateProfileIcon' -export * from './DiamonIcon' -export * from './DublicateStackIcon' -export * from './DuplicateFillIcon' -export * from './DuplicateIcon' -export * from './EditAlbumNameIcon' -export * from './EditPhotoIcon' -export * from './ExitAppBgIcon' -export * from './ExpandIcon' -export * from './EyeCheckedIcon' -export * from './EyeCrossedIcon' -export * from './EyeIcon' -export * from './FacebookPeopleIcon' -export * from './FilterCircleIcon' -export * from './FilterIcon' -export * from './FinderIcon' -export * from './FiveStarBgIcon' -export * from './FolderOutlineBgIcon' -export * from './FullScreenIcon' -export * from './GridBgIcon' -export * from './GridDotsIcon' -export * from './GridIcon' -export * from './GridThreeLitIcon' -export * from './GridTwoLitIcon' -export * from './GroupingLessIcon' -export * from './GroupingMoreIcon' -export * from './HomeIcon' -export * from './ImageBorderCircleIcon' -export * from './ImageBorderIcon' -export * from './ImageCrossedBgIcon' -export * from './ImageCrossedIcon' -export * from './ImageIcon' -export * from './ImageStackIcon' -export * from './KeyCircleIcon' -export * from './KeyIcon' -export * from './LinkIcon' -export * from './ListNotSelectedIcon' -export * from './ListSelectedIcon' -export * from './LoaderIcon' -export * from './LockIcon' -export * from './LoopCircleIcon' -export * from './LoopIcon' -export * from './LoupeIcon' -export * from './MaximizeIcon' -export * from './MenuIcon' -export * from './MinimizeIcon' -export * from './MoneyBagIcon' -export * from './MouseLeftClick' -export * from './MouseLeftClickCircleIcon' -export * from './MouseRightClick' -export * from './MoveBgIcon' -export * from './NoDuplicateIcon' -export * from './NoneIcon' -export * from './NoneSelectedIcon' -export * from './NotAllowIcon' -export * from './NotSelectedCircleIcon' -export * from './RecullIcon' -export * from './ReloadIcon' -export * from './ReloadWarningIcon' -export * from './RotateLeftSquareIcon' -export * from './RotateRightSquareIcon' -export * from './SelectedFillCircleIcon' -export * from './ShareIcon' -export * from './ShowDuplicateIcon' -export * from './SmileyHappyIcon' -export * from './SmileySadIcon' -export * from './SortCircleIcon' -export * from './SortDuplicateCircleIcon' -export * from './SortDuplicatesIcon' -export * from './SortIcon' -export * from './SortOptionAlphaIcon' -export * from './SortOptionNumIcon' -export * from './SparkleIcon' -export * from './SprayBgIcon' -export * from './SprayCanIcon' -export * from './SprayCircleIcon' -export * from './StackThreeIcon' -export * from './StackTwoIcon' -export * from './StorageCrossedIcon' -export * from './SurveyModeIcon' -export * from './ThunderBgIcon' -export * from './UploadFolderIcon' -export * from './ViewAllIcon' -export * from './ZoomCircleIcon' -export * from './ZoomIcon' +export * from './BorderSquareIcon'; +export * from './CardBgIcon'; +export * from './CartIcon'; +export * from './CelebrateIcon'; +export * from './CheckFillCircleIcon'; +export * from './ComputerBgIcon'; +export * from './ContactSupportIcon'; +export * from './CouponIcon'; +export * from './CreateProfileIcon'; +export * from './DiamonIcon'; +export * from './DownloadIcon'; +export * from './DublicateStackIcon'; +export * from './DuplicateFillIcon'; +export * from './DuplicateIcon'; +export * from './EditAlbumNameIcon'; +export * from './EditPhotoIcon'; +export * from './ExitAppBgIcon'; +export * from './ExpandIcon'; +export * from './EyeCheckedIcon'; +export * from './EyeCrossedIcon'; +export * from './EyeIcon'; +export * from './FacebookPeopleIcon'; +export * from './FilterCircleIcon'; +export * from './FilterIcon'; +export * from './FinderIcon'; +export * from './FiveStarBgIcon'; +export * from './FolderOutlineBgIcon'; +export * from './FullScreenIcon'; +export * from './GridBgIcon'; +export * from './GridDotsIcon'; +export * from './GridIcon'; +export * from './GridThreeLitIcon'; +export * from './GridTwoLitIcon'; +export * from './GroupingLessIcon'; +export * from './GroupingMoreIcon'; +export * from './HomeIcon'; +export * from './ImageBorderCircleIcon'; +export * from './ImageBorderIcon'; +export * from './ImageCrossedBgIcon'; +export * from './ImageCrossedIcon'; +export * from './ImageIcon'; +export * from './ImageStackIcon'; +export * from './KeyCircleIcon'; +export * from './KeyIcon'; +export * from './LinkIcon'; +export * from './ListNotSelectedIcon'; +export * from './ListSelectedIcon'; +export * from './LoaderIcon'; +export * from './LockIcon'; +export * from './LoopCircleIcon'; +export * from './LoopIcon'; +export * from './LoupeIcon'; +export * from './MaximizeIcon'; +export * from './MenuIcon'; +export * from './MinimizeIcon'; +export * from './MoneyBagIcon'; +export * from './MouseLeftClick'; +export * from './MouseLeftClickCircleIcon'; +export * from './MouseRightClick'; +export * from './MoveBgIcon'; +export * from './NoDuplicateIcon'; +export * from './NoneIcon'; +export * from './NoneSelectedIcon'; +export * from './NotAllowIcon'; +export * from './NotSelectedCircleIcon'; +export * from './RecullIcon'; +export * from './ReloadIcon'; +export * from './ReloadWarningIcon'; +export * from './RotateLeftSquareIcon'; +export * from './RotateRightSquareIcon'; +export * from './SelectedFillCircleIcon'; +export * from './ShareIcon'; +export * from './ShowDuplicateIcon'; +export * from './SmileyHappyIcon'; +export * from './SmileySadIcon'; +export * from './SortCircleIcon'; +export * from './SortDuplicateCircleIcon'; +export * from './SortDuplicatesIcon'; +export * from './SortIcon'; +export * from './SortOptionAlphaIcon'; +export * from './SortOptionNumIcon'; +export * from './SparkleIcon'; +export * from './SprayBgIcon'; +export * from './SprayCanIcon'; +export * from './SprayCircleIcon'; +export * from './StackThreeIcon'; +export * from './StackTwoIcon'; +export * from './StorageCrossedIcon'; +export * from './SurveyModeIcon'; +export * from './ThunderBgIcon'; +export * from './UploadFolderIcon'; +export * from './ViewAllIcon'; +export * from './ZoomCircleIcon'; +export * from './ZoomIcon'; diff --git a/src/Icons/edit/AtomBgIcon.tsx b/src/Icons/edit/TrainBgIcon.tsx similarity index 94% rename from src/Icons/edit/AtomBgIcon.tsx rename to src/Icons/edit/TrainBgIcon.tsx index 9679d143..4a10c55b 100644 --- a/src/Icons/edit/AtomBgIcon.tsx +++ b/src/Icons/edit/TrainBgIcon.tsx @@ -12,7 +12,7 @@ type Props = Omit & { accentColor?: string } -export const AtomBgIcon = React.forwardRef((props, forwardedRef) => { +export const TrainBgIcon = React.forwardRef((props, forwardedRef) => { //props const { variant = 'primary', @@ -53,4 +53,4 @@ export const AtomBgIcon = React.forwardRef((props, forward return }) -export default React.memo(AtomBgIcon) +export default React.memo(TrainBgIcon) diff --git a/src/Icons/edit/index.ts b/src/Icons/edit/index.ts index 9b91ee5a..61ec491f 100644 --- a/src/Icons/edit/index.ts +++ b/src/Icons/edit/index.ts @@ -1,5 +1,4 @@ export * from './AftershootEditIcon'; -export * from './AtomBgIcon'; export * from './CheckBoxEmptyIcon'; export * from './CheckBoxIcon'; export * from './CheckBoxPartialIcon'; @@ -21,3 +20,4 @@ export * from './MoodIcon'; export * from './PlusBgIcon'; export * from './RightArrowBgIcon'; export * from './SuccessFillBgIcon'; +export * from './TrainBgIcon'; diff --git a/src/new-svgs/download.svg b/src/new-svgs/download.svg new file mode 100644 index 00000000..6121c070 --- /dev/null +++ b/src/new-svgs/download.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/new-svgs/not-selected-circle.svg b/src/new-svgs/not-selected-circle.svg deleted file mode 100644 index 54b52155..00000000 --- a/src/new-svgs/not-selected-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/stories/AddFolderIcon.stories.tsx b/src/stories/DownloadIcon.stories.tsx similarity index 57% rename from src/stories/AddFolderIcon.stories.tsx rename to src/stories/DownloadIcon.stories.tsx index 7d7147e6..9bf72834 100644 --- a/src/stories/AddFolderIcon.stories.tsx +++ b/src/stories/DownloadIcon.stories.tsx @@ -1,11 +1,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' -import { AddFolderIcon } from '../icons' +import { DownloadIcon } from '../icons' -const meta: Meta = { - component: AddFolderIcon, - title: 'culling/AddFolderIcon', +const meta: Meta = { + component: DownloadIcon, + title: 'culling/DownloadIcon', decorators: [ (Story) => (
@@ -16,7 +16,7 @@ const meta: Meta = { } export default meta -type Story = StoryObj +type Story = StoryObj export const Default: Story = {} @@ -32,9 +32,9 @@ export const inActive: Story = { }, } -export const greenAccent: Story = { +export const accentColor: Story = { args: { - accentColor: 'green', + accentColor: '#0977e0', }, } @@ -43,9 +43,3 @@ export const Large: Story = { size: 30, }, } - -export const Class: Story = { - args: { - className: 'fixed top-0 left-0', - }, -} diff --git a/src/stories/AtomBgIcon.stories.tsx b/src/stories/TrainBgIcon.stories.tsx similarity index 76% rename from src/stories/AtomBgIcon.stories.tsx rename to src/stories/TrainBgIcon.stories.tsx index 7a39c49d..018678af 100644 --- a/src/stories/AtomBgIcon.stories.tsx +++ b/src/stories/TrainBgIcon.stories.tsx @@ -1,11 +1,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' -import { AtomBgIcon } from '../icons' +import { TrainBgIcon } from '../icons' -const meta: Meta = { - component: AtomBgIcon, - title: 'edit/AtomBgIcon', +const meta: Meta = { + component: TrainBgIcon, + title: 'edit/TrainBgIcon', decorators: [ (Story) => (
@@ -16,7 +16,7 @@ const meta: Meta = { } export default meta -type Story = StoryObj +type Story = StoryObj export const Default: Story = {} diff --git a/storybook-static/9105.9126715b.iframe.bundle.js b/storybook-static/9105.9126715b.iframe.bundle.js index 0f7071d7..83e20fef 100644 --- a/storybook-static/9105.9126715b.iframe.bundle.js +++ b/storybook-static/9105.9126715b.iframe.bundle.js @@ -216,7 +216,7 @@ './src/icons/index.ts': (A, X, m) => { m.r(X), m.d(X, { - AddFolderIcon: () => H, + DownloadIcon: () => H, AdjustmentIcon: () => x0, AfterShootLogoIcon: () => xM, AftershootEditIcon: () => rc, @@ -234,7 +234,7 @@ ArrowLeftIcon: () => oK, ArrowRightcon: () => ZK, ArrowUpIcon: () => bK, - AtomBgIcon: () => sc, + TrainBgIcon: () => sc, BorderSquareIcon: () => w, CaptureOneIcon: () => UM, CartIcon: () => $i, diff --git a/storybook-static/index.json b/storybook-static/index.json index 597bea72..82fe2203 100644 --- a/storybook-static/index.json +++ b/storybook-static/index.json @@ -5,48 +5,48 @@ "type": "story", "id": "culling-addfoldericon--default", "name": "Default", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "culling-addfoldericon--red": { "type": "story", "id": "culling-addfoldericon--red", "name": "Red", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "culling-addfoldericon--in-active": { "type": "story", "id": "culling-addfoldericon--in-active", "name": "In Active", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "culling-addfoldericon--green-accent": { "type": "story", "id": "culling-addfoldericon--green-accent", "name": "Green Accent", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "culling-addfoldericon--large": { "type": "story", "id": "culling-addfoldericon--large", "name": "Large", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "culling-addfoldericon--class": { "type": "story", "id": "culling-addfoldericon--class", "name": "Class", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"] }, "general-adjustmenticon--default": { @@ -605,48 +605,48 @@ "type": "story", "id": "edit-atombgicon--default", "name": "Default", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "edit-atombgicon--red": { "type": "story", "id": "edit-atombgicon--red", "name": "Red", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "edit-atombgicon--yellow-bg": { "type": "story", "id": "edit-atombgicon--yellow-bg", "name": "Yellow Bg", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "edit-atombgicon--in-active": { "type": "story", "id": "edit-atombgicon--in-active", "name": "In Active", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "edit-atombgicon--green-accent": { "type": "story", "id": "edit-atombgicon--green-accent", "name": "Green Accent", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "edit-atombgicon--large": { "type": "story", "id": "edit-atombgicon--large", "name": "Large", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"] }, "culling-bordersquareicon--default": { diff --git a/storybook-static/main.a6f50d26.iframe.bundle.js b/storybook-static/main.a6f50d26.iframe.bundle.js index 34e0dab8..9a0fc5df 100644 --- a/storybook-static/main.a6f50d26.iframe.bundle.js +++ b/storybook-static/main.a6f50d26.iframe.bundle.js @@ -36,8 +36,8 @@ './src lazy recursive ^\\.\\/.*$ include: (?:\\/src(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$': (o, t, s) => { var r = { - './stories/AddFolderIcon.stories': ['./src/stories/AddFolderIcon.stories.tsx', 9105, 9113], - './stories/AddFolderIcon.stories.tsx': ['./src/stories/AddFolderIcon.stories.tsx', 9105, 9113], + './stories/DownloadIcon.stories': ['./src/stories/DownloadIcon.stories.tsx', 9105, 9113], + './stories/DownloadIcon.stories.tsx': ['./src/stories/DownloadIcon.stories.tsx', 9105, 9113], './stories/AdjustmentIcon.stories': ['./src/stories/AdjustmentIcon.stories.tsx', 9105, 7548], './stories/AdjustmentIcon.stories.tsx': ['./src/stories/AdjustmentIcon.stories.tsx', 9105, 7548], './stories/AfterShootLogoIcon.stories': ['./src/stories/AfterShootLogoIcon.stories.tsx', 9105, 8253], @@ -72,8 +72,8 @@ './stories/ArrowRightcon.stories.tsx': ['./src/stories/ArrowRightcon.stories.tsx', 9105, 5694], './stories/ArrowUpIcon.stories': ['./src/stories/ArrowUpIcon.stories.tsx', 9105, 5119], './stories/ArrowUpIcon.stories.tsx': ['./src/stories/ArrowUpIcon.stories.tsx', 9105, 5119], - './stories/AtomBgIcon.stories': ['./src/stories/AtomBgIcon.stories.tsx', 9105, 1034], - './stories/AtomBgIcon.stories.tsx': ['./src/stories/AtomBgIcon.stories.tsx', 9105, 1034], + './stories/TrainBgIcon.stories': ['./src/stories/TrainBgIcon.stories.tsx', 9105, 1034], + './stories/TrainBgIcon.stories.tsx': ['./src/stories/TrainBgIcon.stories.tsx', 9105, 1034], './stories/BorderColorIcon.stories': ['./src/stories/BorderColorIcon.stories.tsx', 9105, 8318], './stories/BorderColorIcon.stories.tsx': ['./src/stories/BorderColorIcon.stories.tsx', 9105, 8318], './stories/CaptureOneIcon.stories': ['./src/stories/CaptureOneIcon.stories.tsx', 9105, 7959], diff --git a/storybook-static/runtime~main.a5eb3626.iframe.bundle.js b/storybook-static/runtime~main.a5eb3626.iframe.bundle.js index b14c4607..805f418f 100644 --- a/storybook-static/runtime~main.a5eb3626.iframe.bundle.js +++ b/storybook-static/runtime~main.a5eb3626.iframe.bundle.js @@ -53,7 +53,7 @@ 514: 'stories-CollectionsIcon-stories', 524: 'stories-TwitterBgIcon-stories', 1020: 'stories-SprayCanIcon-stories', - 1034: 'stories-AtomBgIcon-stories', + 1034: 'stories-TrainBgIcon-stories', 1131: 'stories-ImageBorderCircleIcon-stories', 1135: 'stories-WifiCrossedIcon-stories', 1181: 'stories-CartIcon-stories', @@ -209,7 +209,7 @@ 8992: 'stories-CloseCircleIcon-stories', 8997: 'stories-SearchIcon-stories', 9048: 'stories-ComputerIcon-stories', - 9113: 'stories-AddFolderIcon-stories', + 9113: 'stories-DownloadIcon-stories', 9169: 'stories-ChevronUpIcon-stories', 9183: 'stories-PlayBgIcon-stories', 9216: 'stories-StackThreeIcon-stories', diff --git a/storybook-static/stories-AddFolderIcon-stories.b2933add.iframe.bundle.js b/storybook-static/stories-AddFolderIcon-stories.b2933add.iframe.bundle.js index 47cb13fb..a28241a8 100644 --- a/storybook-static/stories-AddFolderIcon-stories.b2933add.iframe.bundle.js +++ b/storybook-static/stories-AddFolderIcon-stories.b2933add.iframe.bundle.js @@ -1 +1,38 @@ -"use strict";(self.webpackChunk_aftershootco_unicorn_icons_beta=self.webpackChunk_aftershootco_unicorn_icons_beta||[]).push([[9113],{"./src/stories/AddFolderIcon.stories.tsx":(v,r,e)=>{e.r(r),e.d(r,{Class:()=>_,Default:()=>c,Large:()=>i,Red:()=>o,__namedExportsOrder:()=>u,default:()=>a,greenAccent:()=>l,inActive:()=>d});var n=e("./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),t=e("./src/icons/index.ts"),s={component:t.AddFolderIcon,title:"culling/AddFolderIcon",decorators:[function(g){return n.createElement("div",{style:{margin:"1rem"}},n.createElement(g,null))}]};const a=s;var c={},o={args:{color:"red"}},d={args:{inActive:!0}},l={args:{accentColor:"green"}},i={args:{size:30}},_={args:{className:"fixed top-0 left-0"}};const u=["Default","Red","inActive","greenAccent","Large","Class"]}}]); +'use strict' +;(self.webpackChunk_aftershootco_unicorn_icons_beta = self.webpackChunk_aftershootco_unicorn_icons_beta || []).push([ + [9113], + { + './src/stories/DownloadIcon.stories.tsx': (v, r, e) => { + e.r(r), + e.d(r, { + Class: () => _, + Default: () => c, + Large: () => i, + Red: () => o, + __namedExportsOrder: () => u, + default: () => a, + greenAccent: () => l, + inActive: () => d, + }) + var n = e('./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js'), + t = e('./src/icons/index.ts'), + s = { + component: t.DownloadIcon, + title: 'culling/DownloadIcon', + decorators: [ + function (g) { + return n.createElement('div', { style: { margin: '1rem' } }, n.createElement(g, null)) + }, + ], + } + const a = s + var c = {}, + o = { args: { color: 'red' } }, + d = { args: { inActive: !0 } }, + l = { args: { accentColor: 'green' } }, + i = { args: { size: 30 } }, + _ = { args: { className: 'fixed top-0 left-0' } } + const u = ['Default', 'Red', 'inActive', 'greenAccent', 'Large', 'Class'] + }, + }, +]) diff --git a/storybook-static/stories-AtomBgIcon-stories.023a848f.iframe.bundle.js b/storybook-static/stories-AtomBgIcon-stories.023a848f.iframe.bundle.js index d568723a..396ee7f0 100644 --- a/storybook-static/stories-AtomBgIcon-stories.023a848f.iframe.bundle.js +++ b/storybook-static/stories-AtomBgIcon-stories.023a848f.iframe.bundle.js @@ -1 +1,38 @@ -"use strict";(self.webpackChunk_aftershootco_unicorn_icons_beta=self.webpackChunk_aftershootco_unicorn_icons_beta||[]).push([[1034],{"./src/stories/AtomBgIcon.stories.tsx":(m,t,e)=>{e.r(t),e.d(t,{Default:()=>a,Large:()=>g,Red:()=>s,__namedExportsOrder:()=>_,default:()=>c,greenAccent:()=>d,inActive:()=>i,yellowBg:()=>l});var r=e("./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),n=e("./src/icons/index.ts"),o={component:n.AtomBgIcon,title:"edit/AtomBgIcon",decorators:[function(u){return r.createElement("div",{style:{margin:"1rem"}},r.createElement(u,null))}]};const c=o;var a={},s={args:{color:"red"}},l={args:{bgColor:"yellow"}},i={args:{inActive:!0}},d={args:{accentColor:"green"}},g={args:{size:30}};const _=["Default","Red","yellowBg","inActive","greenAccent","Large"]}}]); +'use strict' +;(self.webpackChunk_aftershootco_unicorn_icons_beta = self.webpackChunk_aftershootco_unicorn_icons_beta || []).push([ + [1034], + { + './src/stories/TrainBgIcon.stories.tsx': (m, t, e) => { + e.r(t), + e.d(t, { + Default: () => a, + Large: () => g, + Red: () => s, + __namedExportsOrder: () => _, + default: () => c, + greenAccent: () => d, + inActive: () => i, + yellowBg: () => l, + }) + var r = e('./node_modules/.pnpm/react@18.2.0/node_modules/react/index.js'), + n = e('./src/icons/index.ts'), + o = { + component: n.TrainBgIcon, + title: 'edit/TrainBgIcon', + decorators: [ + function (u) { + return r.createElement('div', { style: { margin: '1rem' } }, r.createElement(u, null)) + }, + ], + } + const c = o + var a = {}, + s = { args: { color: 'red' } }, + l = { args: { bgColor: 'yellow' } }, + i = { args: { inActive: !0 } }, + d = { args: { accentColor: 'green' } }, + g = { args: { size: 30 } } + const _ = ['Default', 'Red', 'yellowBg', 'inActive', 'greenAccent', 'Large'] + }, + }, +]) diff --git a/storybook-static/stories.json b/storybook-static/stories.json index de02a78d..6bac8b96 100644 --- a/storybook-static/stories.json +++ b/storybook-static/stories.json @@ -4,62 +4,62 @@ "culling-addfoldericon--default": { "id": "culling-addfoldericon--default", "name": "Default", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "Default", - "parameters": { "__id": "culling-addfoldericon--default", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--default", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "culling-addfoldericon--red": { "id": "culling-addfoldericon--red", "name": "Red", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "Red", - "parameters": { "__id": "culling-addfoldericon--red", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--red", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "culling-addfoldericon--in-active": { "id": "culling-addfoldericon--in-active", "name": "In Active", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "In Active", - "parameters": { "__id": "culling-addfoldericon--in-active", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--in-active", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "culling-addfoldericon--green-accent": { "id": "culling-addfoldericon--green-accent", "name": "Green Accent", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "Green Accent", - "parameters": { "__id": "culling-addfoldericon--green-accent", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--green-accent", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "culling-addfoldericon--large": { "id": "culling-addfoldericon--large", "name": "Large", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "Large", - "parameters": { "__id": "culling-addfoldericon--large", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--large", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "culling-addfoldericon--class": { "id": "culling-addfoldericon--class", "name": "Class", - "title": "culling/AddFolderIcon", - "importPath": "./src/stories/AddFolderIcon.stories.tsx", + "title": "culling/DownloadIcon", + "importPath": "./src/stories/DownloadIcon.stories.tsx", "tags": ["story"], - "kind": "culling/AddFolderIcon", + "kind": "culling/DownloadIcon", "story": "Class", - "parameters": { "__id": "culling-addfoldericon--class", "docsOnly": false, "fileName": "./src/stories/AddFolderIcon.stories.tsx" } + "parameters": { "__id": "culling-addfoldericon--class", "docsOnly": false, "fileName": "./src/stories/DownloadIcon.stories.tsx" } }, "general-adjustmenticon--default": { "id": "general-adjustmenticon--default", @@ -846,62 +846,62 @@ "edit-atombgicon--default": { "id": "edit-atombgicon--default", "name": "Default", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "Default", - "parameters": { "__id": "edit-atombgicon--default", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--default", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "edit-atombgicon--red": { "id": "edit-atombgicon--red", "name": "Red", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "Red", - "parameters": { "__id": "edit-atombgicon--red", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--red", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "edit-atombgicon--yellow-bg": { "id": "edit-atombgicon--yellow-bg", "name": "Yellow Bg", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "Yellow Bg", - "parameters": { "__id": "edit-atombgicon--yellow-bg", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--yellow-bg", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "edit-atombgicon--in-active": { "id": "edit-atombgicon--in-active", "name": "In Active", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "In Active", - "parameters": { "__id": "edit-atombgicon--in-active", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--in-active", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "edit-atombgicon--green-accent": { "id": "edit-atombgicon--green-accent", "name": "Green Accent", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "Green Accent", - "parameters": { "__id": "edit-atombgicon--green-accent", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--green-accent", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "edit-atombgicon--large": { "id": "edit-atombgicon--large", "name": "Large", - "title": "edit/AtomBgIcon", - "importPath": "./src/stories/AtomBgIcon.stories.tsx", + "title": "edit/TrainBgIcon", + "importPath": "./src/stories/TrainBgIcon.stories.tsx", "tags": ["story"], - "kind": "edit/AtomBgIcon", + "kind": "edit/TrainBgIcon", "story": "Large", - "parameters": { "__id": "edit-atombgicon--large", "docsOnly": false, "fileName": "./src/stories/AtomBgIcon.stories.tsx" } + "parameters": { "__id": "edit-atombgicon--large", "docsOnly": false, "fileName": "./src/stories/TrainBgIcon.stories.tsx" } }, "culling-bordersquareicon--default": { "id": "culling-bordersquareicon--default", From da8b5629b95516afb67283f03bdd715b3bfb5be5 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Fri, 24 May 2024 15:34:41 +0530 Subject: [PATCH 03/34] update --- src/Icons/general/CrossIcon.tsx | 9 ++++++++- src/stories/CrossIcon.stories.tsx | 2 +- src/stories/StarIcon.stories.tsx | 2 +- src/styles/tailwind.css | 16 ++++++---------- 4 files changed, 16 insertions(+), 13 deletions(-) diff --git a/src/Icons/general/CrossIcon.tsx b/src/Icons/general/CrossIcon.tsx index 0595a102..1b923b71 100644 --- a/src/Icons/general/CrossIcon.tsx +++ b/src/Icons/general/CrossIcon.tsx @@ -20,7 +20,14 @@ export const CrossIcon = React.forwardRef((props, forwarde // variants const primary = ( - + ) diff --git a/src/stories/CrossIcon.stories.tsx b/src/stories/CrossIcon.stories.tsx index 9d58adfd..636c1a9d 100644 --- a/src/stories/CrossIcon.stories.tsx +++ b/src/stories/CrossIcon.stories.tsx @@ -39,6 +39,6 @@ export const Large: Story = { export const onhover: Story = { args: { - className: 'hover:scale w-[1000px]', + className: 'w-[10px]', }, } diff --git a/src/stories/StarIcon.stories.tsx b/src/stories/StarIcon.stories.tsx index e3888275..cbecf562 100644 --- a/src/stories/StarIcon.stories.tsx +++ b/src/stories/StarIcon.stories.tsx @@ -8,7 +8,7 @@ const meta: Meta = { title: 'general/StarIcon', decorators: [ (Story) => ( -
+
), diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 3587c162..71c314dc 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -554,20 +554,16 @@ video { --tw-contain-style: ; } -.fixed { - position: fixed; -} - -.left-0 { - left: 0px; +.w-\[1000px\] { + width: 1000px; } -.top-0 { - top: 0px; +.w-\[100px\] { + width: 100px; } -.w-\[1000px\] { - width: 1000px; +.w-\[10px\] { + width: 10px; } .transform { From 3a1b454971e9df433e5aaa1f1fb1be83c7f6206f Mon Sep 17 00:00:00 2001 From: booi-dev Date: Fri, 24 May 2024 16:52:37 +0530 Subject: [PATCH 04/34] add: update --- sh-scripts/gen_icon_c.sh | 14 +++--- sh-scripts/gen_img_c.sh | 14 +++--- src/Icons/culling/BorderSquareIcon.tsx | 15 +++++-- src/Icons/culling/CardBgIcon.tsx | 18 +++++--- src/Icons/culling/CartIcon.tsx | 35 ++++++++++++--- src/Icons/culling/CelebrateIcon.tsx | 9 ++-- src/Icons/culling/CheckFillCircleIcon.tsx | 18 +++++--- src/Icons/culling/ComputerBgIcon.tsx | 19 +++++--- src/Icons/culling/ContactSupportIcon.tsx | 8 ++-- src/Icons/culling/CouponIcon.tsx | 15 +++++-- src/Icons/culling/CreateProfileIcon.tsx | 15 +++++-- src/Icons/culling/DiamonIcon.tsx | 15 +++++-- src/Icons/culling/DownloadIcon.tsx | 19 +++++--- src/Icons/culling/DublicateStackIcon.tsx | 8 ++-- src/Icons/culling/DuplicateFillIcon.tsx | 15 +++++-- src/Icons/culling/DuplicateIcon.tsx | 15 +++++-- src/Icons/culling/EditAlbumNameIcon.tsx | 15 +++++-- src/Icons/culling/EditPhotoIcon.tsx | 15 +++++-- src/Icons/culling/ExitAppBgIcon.tsx | 18 ++++++-- src/Icons/culling/ExpandIcon.tsx | 15 +++++-- src/Icons/culling/EyeCheckedIcon.tsx | 14 ++++-- src/Icons/culling/EyeCrossedIcon.tsx | 14 ++++-- src/Icons/culling/EyeIcon.tsx | 15 +++++-- src/Icons/culling/FacebookPeopleIcon.tsx | 8 ++-- src/Icons/culling/FilterCircleIcon.tsx | 15 +++++-- src/Icons/culling/FilterIcon.tsx | 15 +++++-- src/Icons/culling/FinderIcon.tsx | 8 ++-- src/Icons/culling/FiveStarBgIcon.tsx | 19 +++++--- src/Icons/culling/FolderOutlineBgIcon.tsx | 19 +++++--- src/Icons/culling/FullScreenIcon.tsx | 8 ++-- src/Icons/culling/GridBgIcon.tsx | 19 +++++--- src/Icons/culling/GridDotsIcon.tsx | 15 +++++-- src/Icons/culling/GridIcon.tsx | 8 ++-- src/Icons/culling/GridThreeLitIcon.tsx | 15 +++++-- src/Icons/culling/GridTwoLitIcon.tsx | 15 +++++-- src/Icons/culling/GroupingLessIcon.tsx | 11 ++--- src/Icons/culling/GroupingMoreIcon.tsx | 11 ++--- src/Icons/culling/HomeIcon.tsx | 11 ++--- src/Icons/culling/ImageBorderCircleIcon.tsx | 15 +++++-- src/Icons/culling/ImageBorderIcon.tsx | 15 +++++-- src/Icons/culling/ImageCrossedBgIcon.tsx | 28 +++++++++--- src/Icons/culling/ImageCrossedIcon.tsx | 15 +++++-- src/Icons/culling/ImageIcon.tsx | 8 ++-- src/Icons/culling/ImageStackIcon.tsx | 8 ++-- src/Icons/culling/KeyCircleIcon.tsx | 15 +++++-- src/Icons/culling/KeyIcon.tsx | 15 +++++-- src/Icons/culling/LinkIcon.tsx | 15 +++++-- src/Icons/culling/ListNotSelectedIcon.tsx | 14 ++++-- src/Icons/culling/ListSelectedIcon.tsx | 25 ++++++++--- src/Icons/culling/LoaderIcon.tsx | 15 +++++-- src/Icons/culling/LockIcon.tsx | 35 ++++++++++++--- src/Icons/culling/LoopCircleIcon.tsx | 15 +++++-- src/Icons/culling/LoopIcon.tsx | 14 ++++-- src/Icons/culling/LoupeIcon.tsx | 25 ++++++++--- src/Icons/culling/MaximizeIcon.tsx | 18 +++++--- src/Icons/culling/MenuIcon.tsx | 8 ++-- src/Icons/culling/MinimizeIcon.tsx | 15 ++++--- src/Icons/culling/MoneyBagIcon.tsx | 15 +++++-- src/Icons/culling/MouseLeftClick.tsx | 15 +++++-- .../culling/MouseLeftClickCircleIcon.tsx | 19 +++++--- src/Icons/culling/MouseRightClick.tsx | 25 ++++++++--- src/Icons/culling/MoveBgIcon.tsx | 18 ++++++-- src/Icons/culling/NoDuplicateIcon.tsx | 15 +++++-- src/Icons/culling/NoneIcon.tsx | 15 +++++-- src/Icons/culling/NoneSelectedIcon.tsx | 15 +++++-- src/Icons/culling/NotAllowIcon.tsx | 15 +++++-- src/Icons/culling/NotSelectedCircleIcon.tsx | 15 +++++-- src/Icons/culling/RecullIcon.tsx | 15 +++++-- src/Icons/culling/ReloadIcon.tsx | 25 ++++++++--- src/Icons/culling/ReloadWarningIcon.tsx | 15 +++++-- src/Icons/culling/RotateLeftSquareIcon.tsx | 8 ++-- src/Icons/culling/RotateRightSquareIcon.tsx | 8 ++-- src/Icons/culling/SelectedFillCircleIcon.tsx | 15 +++++-- src/Icons/culling/ShareIcon.tsx | 15 +++++-- src/Icons/culling/ShowDuplicateIcon.tsx | 8 ++-- src/Icons/culling/SmileyHappyIcon.tsx | 15 +++++-- src/Icons/culling/SmileySadIcon.tsx | 19 +++++--- src/Icons/culling/SortCircleIcon.tsx | 15 +++++-- src/Icons/culling/SortDuplicateCircleIcon.tsx | 15 +++++-- src/Icons/culling/SortDuplicatesIcon.tsx | 15 +++++-- src/Icons/culling/SortIcon.tsx | 15 +++++-- src/Icons/culling/SortOptionAlphaIcon.tsx | 27 ++++++++--- src/Icons/culling/SortOptionNumIcon.tsx | 28 +++++++++--- src/Icons/culling/SparkleIcon.tsx | 15 +++++-- src/Icons/culling/SprayBgIcon.tsx | 19 +++++--- src/Icons/culling/SprayCanIcon.tsx | 14 ++++-- src/Icons/culling/SprayCircleIcon.tsx | 15 +++++-- src/Icons/culling/StackThreeIcon.tsx | 15 +++++-- src/Icons/culling/StackTwoIcon.tsx | 15 +++++-- src/Icons/culling/StorageCrossedIcon.tsx | 15 +++++-- src/Icons/culling/SurveyModeIcon.tsx | 8 ++-- src/Icons/culling/ThunderBgIcon.tsx | 10 +++-- src/Icons/culling/UploadFolderIcon.tsx | 15 +++++-- src/Icons/culling/ViewAllIcon.tsx | 15 +++++-- src/Icons/culling/ZoomCircleIcon.tsx | 15 +++++-- src/Icons/culling/ZoomIcon.tsx | 25 ++++++++--- src/Icons/edit/AftershootEditIcon.tsx | 15 +++++-- src/Icons/edit/CheckBoxEmptyIcon.tsx | 15 +++++-- src/Icons/edit/CheckBoxIcon.tsx | 19 +++++--- src/Icons/edit/CheckBoxPartialIcon.tsx | 19 +++++--- src/Icons/edit/CollectionsIcon.tsx | 15 +++++-- src/Icons/edit/ComputerIcon.tsx | 15 +++++-- src/Icons/edit/ConfettiLeftScreen.tsx | 15 +++++-- src/Icons/edit/ConfettiRightScreen.tsx | 15 +++++-- src/Icons/edit/ConfettiSideScreen.tsx | 15 +++++-- src/Icons/edit/DecrementIcon.tsx | 19 +++++--- src/Icons/edit/DotsVerticalIcon.tsx | 15 +++++-- src/Icons/edit/EditProgressIcon.tsx | 17 +++++-- src/Icons/edit/FailFillBgIcon.tsx | 19 +++++--- src/Icons/edit/FailFillIcon.tsx | 19 +++++--- src/Icons/edit/FileSearchIcon.tsx | 15 +++++-- src/Icons/edit/FlagFillIcon.tsx | 15 +++++-- src/Icons/edit/FlagOutlineCrossedIcon.tsx | 15 +++++-- src/Icons/edit/FlagOutlineIcon.tsx | 15 +++++-- src/Icons/edit/MoodIcon.tsx | 17 +++++-- src/Icons/edit/PlusBgIcon.tsx | 19 +++++--- src/Icons/edit/RightArrowBgIcon.tsx | 19 +++++--- src/Icons/edit/SuccessFillBgIcon.tsx | 19 +++++--- src/Icons/edit/TrainBgIcon.tsx | 19 +++++--- src/Icons/enable/PowerHighIcon.tsx | 26 ++++++++--- src/Icons/enable/PowerLowIcon.tsx | 26 ++++++++--- src/Icons/enable/PowerMidIcon.tsx | 26 ++++++++--- src/Icons/general/AdjustmentIcon.tsx | 15 +++++-- src/Icons/general/AlertCircleIcon.tsx | 15 +++++-- src/Icons/general/AlertFillIcon.tsx | 16 +++++-- src/Icons/general/AlertFillTriangleBgIcon.tsx | 18 +++++--- src/Icons/general/AlertFillTriangleIcon.tsx | 19 +++++--- src/Icons/general/AlertHexagonBgIcon.tsx | 19 +++++--- src/Icons/general/AlertHexagonIcon.tsx | 15 +++++-- src/Icons/general/AlertTriangleBgIcon.tsx | 19 +++++--- src/Icons/general/AlertTriangleIcon.tsx | 25 ++++++++--- src/Icons/general/ArrowCurveIcon.tsx | 15 +++++-- src/Icons/general/ArrowDownIcon.tsx | 8 ++-- src/Icons/general/ArrowFillRightIcon.tsx | 15 +++++-- src/Icons/general/ArrowFillUpIcon.tsx | 16 ++++--- src/Icons/general/ArrowLeftIcon.tsx | 25 ++++++++--- src/Icons/general/ArrowRightIcon.tsx | 25 ++++++++--- src/Icons/general/ArrowUpIcon.tsx | 8 ++-- src/Icons/general/BulbIcon.tsx | 8 ++-- src/Icons/general/C1UploadIcon.tsx | 12 ++--- src/Icons/general/CheckCircleBgIcon.tsx | 19 +++++--- src/Icons/general/CheckCircleIcon.tsx | 15 +++++-- src/Icons/general/CheckFillIcon.tsx | 19 +++++--- src/Icons/general/CheckIcon.tsx | 18 +++++--- src/Icons/general/ChevronDownIcon.tsx | 11 ++--- src/Icons/general/ChevronLeftIcon.tsx | 28 +++++++++--- src/Icons/general/ChevronRightIcon.tsx | 17 +++++-- src/Icons/general/ChevronUpIcon.tsx | 17 +++++-- src/Icons/general/CircleFillIcon.tsx | 15 +++++-- src/Icons/general/CircleIcon.tsx | 15 +++++-- src/Icons/general/ClockIcon.tsx | 25 ++++++++--- src/Icons/general/CloseCircleIcon.tsx | 25 ++++++++--- src/Icons/general/CloseIcon.tsx | 18 +++++--- src/Icons/general/ColorPaletteIcon.tsx | 15 +++++-- src/Icons/general/ConfettiIcon.tsx | 12 ++--- src/Icons/general/CopyContentIcon.tsx | 8 ++-- src/Icons/general/CopyIcon.tsx | 27 ++++++++--- src/Icons/general/CreditIcon.tsx | 8 ++-- src/Icons/general/CrossCircleIcon.tsx | 15 +++++-- src/Icons/general/CrossIcon.tsx | 8 ++-- src/Icons/general/CrownBgIcon.tsx | 29 +++++++++--- src/Icons/general/CrownIcon.tsx | 18 +++++--- src/Icons/general/DeleteBgIcon.tsx | 19 +++++--- src/Icons/general/DeleteIcon.tsx | 25 ++++++++--- src/Icons/general/DollarIcon.tsx | 12 ++--- src/Icons/general/DrawerIcon.tsx | 8 ++-- src/Icons/general/EditIcon.tsx | 15 +++++-- src/Icons/general/ExportIcon.tsx | 8 ++-- src/Icons/general/FolderFillIcon.tsx | 15 +++++-- .../general/FolderOutlineCrossedIcon.tsx | 15 +++++-- src/Icons/general/GlobalIcon.tsx | 25 ++++++++--- src/Icons/general/InfoBgIcon.tsx | 19 +++++--- src/Icons/general/InfoCircleIcon.tsx | 45 ++++++++++++++++--- src/Icons/general/LrUploadIcon.tsx | 12 ++--- src/Icons/general/MailBgIcon.tsx | 12 ++--- src/Icons/general/OpenlinkIcon.tsx | 24 ++++++++-- src/Icons/general/PauseBgIcon.tsx | 12 ++--- src/Icons/general/PersonPlusIcon.tsx | 12 ++--- src/Icons/general/PersonTwoIcon.tsx | 25 ++++++++--- src/Icons/general/PipeIcon.tsx | 15 +++++-- src/Icons/general/PlayBgIcon.tsx | 18 ++++++-- src/Icons/general/PlayCircleIcon.tsx | 15 +++++-- src/Icons/general/QuestionMarkCircleIcon.tsx | 15 +++++-- src/Icons/general/QuestionMarkIcon.tsx | 34 +++++++++++--- src/Icons/general/RefreshIcon.tsx | 15 +++++-- src/Icons/general/RevertIcon.tsx | 15 +++++-- src/Icons/general/RotateIcon.tsx | 25 ++++++++--- src/Icons/general/ScissorsIcon.tsx | 15 +++++-- src/Icons/general/SearchIcon.tsx | 35 ++++++++++++--- src/Icons/general/StarCrossedIcon.tsx | 15 +++++-- src/Icons/general/StarIcon.tsx | 28 +++++++++--- src/Icons/general/ThumbDownBgIcon.tsx | 19 +++++--- src/Icons/general/ThumbUpBgIcon.tsx | 19 +++++--- src/Icons/general/TrophyColorIcon.tsx | 8 ++-- src/Icons/general/UploadBgIcon.tsx | 29 +++++++++--- src/Icons/general/UploadCloudBgIcon.tsx | 19 +++++--- src/Icons/general/UploadCloudIcon.tsx | 15 +++++-- src/Icons/general/UploadIcon.tsx | 25 ++++++++--- src/Icons/general/WifiCrossedBgIcon.tsx | 19 +++++--- src/Icons/general/WifiCrossedIcon.tsx | 15 +++++-- src/Icons/logo/AfterShootLogoIcon.tsx | 8 ++-- src/Icons/logo/AftershootLogoWhite.tsx | 15 +++++-- src/Icons/logo/CaptureOneIcon.tsx | 8 ++-- src/Icons/logo/DragBridgeIcon.tsx | 8 ++-- src/Icons/logo/DragCaptureOneIcon.tsx | 9 ++-- src/Icons/logo/DragFolderIcon.tsx | 16 ++++--- src/Icons/logo/DragLrIcon.tsx | 9 ++-- src/Icons/logo/DragLrcIcon.tsx | 9 ++-- src/Icons/logo/DragPhotoshopIcon.tsx | 9 ++-- src/Icons/logo/EditsLogoTextIcon.tsx | 15 +++++-- src/Icons/logo/LightroomClassicIcon.tsx | 9 ++-- src/Icons/logo/LightroomIcon.tsx | 9 ++-- src/Icons/social/AppleIcon.tsx | 14 ++++-- src/Icons/social/FacebookBgIcon.tsx | 23 ++++++++-- src/Icons/social/FacebookIcon.tsx | 7 +-- src/Icons/social/FacebookOutlineIcon.tsx | 15 +++++-- src/Icons/social/GoogleColorIcon.tsx | 14 ++++-- src/Icons/social/InstagramIcon.tsx | 15 +++++-- src/Icons/social/WhatsappIcon.tsx | 8 ++-- src/Icons/social/XIcon.tsx | 8 ++-- src/deleted-icons/TwitterBgIcon.tsx | 14 ++++-- src/deleted-icons/TwitterIcon.tsx | 5 +-- src/deleted-icons/TwitterOutlineIcon.tsx | 14 ++++-- src/styles/tailwind.css | 17 ++++--- types.d.ts | 2 + 225 files changed, 2634 insertions(+), 994 deletions(-) diff --git a/sh-scripts/gen_icon_c.sh b/sh-scripts/gen_icon_c.sh index 9a4dd8a6..f89b625d 100755 --- a/sh-scripts/gen_icon_c.sh +++ b/sh-scripts/gen_icon_c.sh @@ -49,25 +49,25 @@ for svg_file in "$SVG_FOLDER"/*.svg; do echo "export const $CAP_FILE_NAME = React.forwardRef((props, forwardedRef) => {" >> "$FILE_PATH" echo " //props" >> "$FILE_PATH" echo " const {" >> "$FILE_PATH" - echo " variant = 'primary'," >> "$FILE_PATH" - echo " color = DEFAULT_ICON.COLOR," >> "$FILE_PATH" - echo " // bgColor = DEFAULT_ICON.BG_COLOR,">> "$FILE_PATH" + echo " variant = 'primary', className," >> "$FILE_PATH" + echo " " >> "$FILE_PATH" + echo " // bgColor = DEFAULT_ICON.BG_COLOR, size,">> "$FILE_PATH" echo " // bgOpacity = DEFAULT_ICON.BG_OPACITY," >> "$FILE_PATH" - echo " size = DEFAULT_ICON.SIZE," >> "$FILE_PATH" + echo " color = DEFAULT_ICON.COLOR, size," >> "$FILE_PATH" echo " inActive = false," >> "$FILE_PATH" echo " ...restProps" >> "$FILE_PATH" echo " } = props" >> "$FILE_PATH" echo "" >> "$FILE_PATH" echo " const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color" >> "$FILE_PATH" echo "" >> "$FILE_PATH" - echo " const iconSize = typeof size === 'number' ? \`\${size}px\` : size " >> "$FILE_PATH" + echo " const size = typeof size === 'number' ? \`\${size}px\` : size " >> "$FILE_PATH" echo "" >> "$FILE_PATH" echo " // variants" >> "$FILE_PATH" echo " const primary = (" >> "$FILE_PATH" # cat $svg_file >> $FILE_PATH - # awk '/^/, " style={{ width: iconSize}}\n\t{...restProps}\n\tref={forwardedRef} >", $0); added=1 } 1' "$svg_file" | awk '{ gsub(/("#E2E2E2"|'\''#E2E2E2'\'')/, "{modifiedColor}"); print}' >> "$FILE_PATH" -awk '/^> "$FILE_PATH" + # awk '/^/, " style={{ width: size}}\n\t{...restProps}\n\tref={forwardedRef} className={cn('w-6', className && className)} >", $0); added=1 } 1' "$svg_file" | awk '{ gsub(/("#E2E2E2"|'\''#E2E2E2'\'')/, "{modifiedColor}"); print}' >> "$FILE_PATH" +awk '/^> "$FILE_PATH" echo ")" >> "$FILE_PATH" diff --git a/sh-scripts/gen_img_c.sh b/sh-scripts/gen_img_c.sh index 88865d52..38a952d0 100755 --- a/sh-scripts/gen_img_c.sh +++ b/sh-scripts/gen_img_c.sh @@ -49,25 +49,25 @@ for svg_file in "$SVG_FOLDER"/*.svg; do echo "export const $CAP_FILE_NAME = React.forwardRef((props, forwardedRef) => {" >> "$FILE_PATH" echo " //props" >> "$FILE_PATH" echo " const {" >> "$FILE_PATH" - echo " variant = 'primary'," >> "$FILE_PATH" - echo " color = DEFAULT_ICON.COLOR," >> "$FILE_PATH" - echo " // bgColor = DEFAULT_ICON.BG_COLOR,">> "$FILE_PATH" + echo " variant = 'primary', className," >> "$FILE_PATH" + echo " " >> "$FILE_PATH" + echo " // bgColor = DEFAULT_ICON.BG_COLOR, size,">> "$FILE_PATH" echo " // bgOpacity = DEFAULT_ICON.BG_OPACITY," >> "$FILE_PATH" - echo " size = DEFAULT_ICON.SIZE," >> "$FILE_PATH" + echo " color = DEFAULT_ICON.COLOR, size," >> "$FILE_PATH" echo " inActive = false," >> "$FILE_PATH" echo " ...restProps" >> "$FILE_PATH" echo " } = props" >> "$FILE_PATH" echo "" >> "$FILE_PATH" echo " const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color" >> "$FILE_PATH" echo "" >> "$FILE_PATH" - echo " const iconSize = typeof size === 'number' ? \`\${size}px\` : size " >> "$FILE_PATH" + echo " const size = typeof size === 'number' ? \`\${size}px\` : size " >> "$FILE_PATH" echo "" >> "$FILE_PATH" echo " // variants" >> "$FILE_PATH" echo " const primary = (" >> "$FILE_PATH" # cat $svg_file >> $FILE_PATH - # awk '/^/, " style={{ width: iconSize}}\n\t{...restProps}\n\tref={forwardedRef} >", $0); added=1 } 1' "$svg_file" | awk '{ gsub(/("#E2E2E2"|'\''#E2E2E2'\'')/, "{modifiedColor}"); print}' >> "$FILE_PATH" -awk '/^> "$FILE_PATH" + # awk '/^/, " style={{ width: size}}\n\t{...restProps}\n\tref={forwardedRef} className={cn('w-6', className && className)} >", $0); added=1 } 1' "$svg_file" | awk '{ gsub(/("#E2E2E2"|'\''#E2E2E2'\'')/, "{modifiedColor}"); print}' >> "$FILE_PATH" +awk '/^> "$FILE_PATH" echo ")" >> "$FILE_PATH" diff --git a/src/Icons/culling/BorderSquareIcon.tsx b/src/Icons/culling/BorderSquareIcon.tsx index f80979ce..bc210490 100644 --- a/src/Icons/culling/BorderSquareIcon.tsx +++ b/src/Icons/culling/BorderSquareIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const BorderSquareIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,28 @@ export const CardBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwarded ) const secondary = ( - + ((props, forwarded ) const tertiary = ( - + & { @@ -10,9 +10,7 @@ type Props = Omit & { export const CelebrateIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,9 +19,10 @@ export const CelebrateIcon = React.forwardRef((props, forw fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/CheckFillCircleIcon.tsx b/src/Icons/culling/CheckFillCircleIcon.tsx index d86a8c31..aa285f08 100644 --- a/src/Icons/culling/CheckFillCircleIcon.tsx +++ b/src/Icons/culling/CheckFillCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -13,20 +14,27 @@ export const CheckFillCircleIcon = React.forwardRef((props //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const ComputerBgIcon = React.forwardRef((props, for //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,21 +12,20 @@ type Props = Omit & { export const ContactSupportIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( diff --git a/src/Icons/culling/CouponIcon.tsx b/src/Icons/culling/CouponIcon.tsx index f70a2d86..671a4419 100644 --- a/src/Icons/culling/CouponIcon.tsx +++ b/src/Icons/culling/CouponIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CouponIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CreateProfileIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const DiamondIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -13,20 +14,28 @@ export const DownloadIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const DublicateStackThreeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((p viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,21 @@ type Props = Omit & { export const DuplicateFillIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const DuplicateIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const EditAlbumNameIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const EditPhotoIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,20 +16,29 @@ export const ExitAppBgIcon = React.forwardRef((props, forw //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ExpandIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const EyeCheckedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const EyeCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const EyeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -10,9 +11,7 @@ type Props = Omit & { export const FacebookPeopleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants const primary = ( @@ -21,9 +20,10 @@ export const FacebookPeopleIcon = React.forwardRef((props, fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/FilterCircleIcon.tsx b/src/Icons/culling/FilterCircleIcon.tsx index c1a78834..648c71b1 100644 --- a/src/Icons/culling/FilterCircleIcon.tsx +++ b/src/Icons/culling/FilterCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FilterCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/FilterIcon.tsx b/src/Icons/culling/FilterIcon.tsx index f7684602..4d373865 100644 --- a/src/Icons/culling/FilterIcon.tsx +++ b/src/Icons/culling/FilterIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type Props = IconProps & { inActive?: boolean @@ -9,15 +10,21 @@ type Props = IconProps & { export const FilterIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const FinderIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forward viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -15,21 +16,29 @@ export const FiveStarBgIcon = React.forwardRef((props, for //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const FullScreenIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, for viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/GridBgIcon.tsx b/src/Icons/culling/GridBgIcon.tsx index e1e05022..c6817f15 100644 --- a/src/Icons/culling/GridBgIcon.tsx +++ b/src/Icons/culling/GridBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type Props = IconProps & { bgColor?: string @@ -13,21 +14,29 @@ export const GridBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const GridDotsIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const GridIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarded viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,21 @@ type Props = Omit & { export const GridThreeLitIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/GridTwoLitIcon.tsx b/src/Icons/culling/GridTwoLitIcon.tsx index 2e035d0f..57494c92 100644 --- a/src/Icons/culling/GridTwoLitIcon.tsx +++ b/src/Icons/culling/GridTwoLitIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const GridTwoLitIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/GroupingLessIcon.tsx b/src/Icons/culling/GroupingLessIcon.tsx index 62a475ec..83ef7627 100644 --- a/src/Icons/culling/GroupingLessIcon.tsx +++ b/src/Icons/culling/GroupingLessIcon.tsx @@ -1,6 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -10,9 +11,7 @@ type Props = Omit & { export const GroupingLessIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 196, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 196, ...restProps } = props // variants const primary = ( @@ -21,9 +20,10 @@ export const GroupingLessIcon = React.forwardRef((props, f fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > @@ -76,9 +76,10 @@ export const GroupingLessIcon = React.forwardRef((props, f fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/GroupingMoreIcon.tsx b/src/Icons/culling/GroupingMoreIcon.tsx index 0fa25e9c..73e10276 100644 --- a/src/Icons/culling/GroupingMoreIcon.tsx +++ b/src/Icons/culling/GroupingMoreIcon.tsx @@ -1,6 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -9,9 +10,7 @@ type Props = Omit & { export const GroupingMoreIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 208, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 208, ...restProps } = props // variants const primary = ( @@ -20,9 +19,10 @@ export const GroupingMoreIcon = React.forwardRef((props, f fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > @@ -75,9 +75,10 @@ export const GroupingMoreIcon = React.forwardRef((props, f fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/HomeIcon.tsx b/src/Icons/culling/HomeIcon.tsx index 0c2cfe76..806ac018 100644 --- a/src/Icons/culling/HomeIcon.tsx +++ b/src/Icons/culling/HomeIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -11,21 +12,20 @@ type Props = Omit & { export const HomeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarded viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/ImageBorderCircleIcon.tsx b/src/Icons/culling/ImageBorderCircleIcon.tsx index 2ca3aae7..ffdf621f 100644 --- a/src/Icons/culling/ImageBorderCircleIcon.tsx +++ b/src/Icons/culling/ImageBorderCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ImageBorderCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/ImageBorderIcon.tsx b/src/Icons/culling/ImageBorderIcon.tsx index 6f65ed7f..73e6e69f 100644 --- a/src/Icons/culling/ImageBorderIcon.tsx +++ b/src/Icons/culling/ImageBorderIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ImageBorderIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/ImageCrossedBgIcon.tsx b/src/Icons/culling/ImageCrossedBgIcon.tsx index 421db1aa..073567e8 100644 --- a/src/Icons/culling/ImageCrossedBgIcon.tsx +++ b/src/Icons/culling/ImageCrossedBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -15,21 +16,30 @@ export const ImageCrossedBgIcon = React.forwardRef((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + @@ -65,7 +75,15 @@ export const ImageCrossedBgIcon = React.forwardRef((props, ) const secondary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ImageCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/ImageIcon.tsx b/src/Icons/culling/ImageIcon.tsx index a921f798..431c9815 100644 --- a/src/Icons/culling/ImageIcon.tsx +++ b/src/Icons/culling/ImageIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,12 +11,10 @@ type Props = Omit & { export const ImageIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarde viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/ImageStackIcon.tsx b/src/Icons/culling/ImageStackIcon.tsx index 8a94255a..9b7b916a 100644 --- a/src/Icons/culling/ImageStackIcon.tsx +++ b/src/Icons/culling/ImageStackIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,12 +11,10 @@ type Props = Omit & { export const ImageStackIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, for viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,21 @@ type Props = Omit & { export const KeyCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const LinkIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const ListNotSelectedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const ListSelectedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, f ) const secondary = ( - + diff --git a/src/Icons/culling/LoaderIcon.tsx b/src/Icons/culling/LoaderIcon.tsx index b84f643a..58618ade 100644 --- a/src/Icons/culling/LoaderIcon.tsx +++ b/src/Icons/culling/LoaderIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const LoaderIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/LockIcon.tsx b/src/Icons/culling/LockIcon.tsx index 119cb096..0cb81a14 100644 --- a/src/Icons/culling/LockIcon.tsx +++ b/src/Icons/culling/LockIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type Props = IconProps & { inActive?: boolean @@ -9,15 +10,21 @@ type Props = IconProps & { export const LockIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwarded ) const secondary = ( - + ((props, forwarded ) const tertiary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const LoopCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const LoopIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const LoupeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ) const secondary = ( - + & { export const MaximizeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwa viewBox='0 0 11 11' fill={modifiedColor} xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/MenuIcon.tsx b/src/Icons/culling/MenuIcon.tsx index f256616b..760e9237 100644 --- a/src/Icons/culling/MenuIcon.tsx +++ b/src/Icons/culling/MenuIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,21 +12,20 @@ type Props = Omit & { export const MenuIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( diff --git a/src/Icons/culling/MinimizeIcon.tsx b/src/Icons/culling/MinimizeIcon.tsx index 8736abae..eb2a81d7 100644 --- a/src/Icons/culling/MinimizeIcon.tsx +++ b/src/Icons/culling/MinimizeIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -15,27 +16,28 @@ export const MinimizeIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( @@ -46,9 +48,10 @@ export const MinimizeIcon = React.forwardRef((props, forwa viewBox='0 0 11 11' fill={modifiedColor} xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > ((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const MouseLeftClick = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const MouseLeftClickCircleIcon = React.forwardRef(( //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/MouseRightClick.tsx b/src/Icons/culling/MouseRightClick.tsx index dc687175..c9381c45 100644 --- a/src/Icons/culling/MouseRightClick.tsx +++ b/src/Icons/culling/MouseRightClick.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const MouseRightClick = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, fo ) const secondary = ( - + & { @@ -15,20 +16,29 @@ export const MoveBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const NoDuplicateIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const NoneIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const NoneSelectedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const NotAllowIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -10,15 +11,21 @@ type Props = Omit & { export const NotSelectedCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const RecullIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ReloadIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forward ) const secondary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ReloadWarningIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const RotateLeftSquareIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((prop viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,12 +12,10 @@ type Props = Omit & { export const RotateRightSquareIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((pro viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -13,15 +14,21 @@ type Props = Omit & { export const SelectedFillCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = '#262626', fillColor = '#fff', size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = '#262626', fillColor = '#fff', size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ShareIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const ShowDuplicateIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { export const SmileyHappyIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const SmileySadIcon = React.forwardRef((props, forw //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const SortCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/SortDuplicateCircleIcon.tsx b/src/Icons/culling/SortDuplicateCircleIcon.tsx index 7c0d8f55..4d85e780 100644 --- a/src/Icons/culling/SortDuplicateCircleIcon.tsx +++ b/src/Icons/culling/SortDuplicateCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const SortDuplicateCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/SortDuplicatesIcon.tsx b/src/Icons/culling/SortDuplicatesIcon.tsx index bdfe8b88..57812de5 100644 --- a/src/Icons/culling/SortDuplicatesIcon.tsx +++ b/src/Icons/culling/SortDuplicatesIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const SortDuplicatesIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/culling/SortOptionAlphaIcon.tsx b/src/Icons/culling/SortOptionAlphaIcon.tsx index 01e148ad..e92815d0 100644 --- a/src/Icons/culling/SortOptionAlphaIcon.tsx +++ b/src/Icons/culling/SortOptionAlphaIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'ascend' | 'descend' type Props = Omit & { @@ -16,21 +17,29 @@ export const SortOptionAlphaIcon = React.forwardRef((props //props const { variant = 'ascend', - color = DEFAULT_ICON.COLOR, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const ascend = ( - + ((props ) const descend = ( - + & { @@ -15,20 +16,29 @@ export const SortOptionNumIcon = React.forwardRef((props, //props const { variant = 'ascend', - color = DEFAULT_ICON.COLOR, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, + className, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const ascend = ( - + @@ -61,7 +71,15 @@ export const SortOptionNumIcon = React.forwardRef((props, ) const descend = ( - + diff --git a/src/Icons/culling/SparkleIcon.tsx b/src/Icons/culling/SparkleIcon.tsx index d310d228..324f5688 100644 --- a/src/Icons/culling/SparkleIcon.tsx +++ b/src/Icons/culling/SparkleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const SparkleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const SprayBgIcon = React.forwardRef((props, forwar //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const SprayCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const StackTwoIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const StorageCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,12 +12,10 @@ type Props = Omit & { export const SurveyModeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, for viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { bgColor?: string @@ -13,15 +14,15 @@ export const ThunderBgIcon = React.forwardRef((props, forw //props const { variant = 'primary', + className, bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forw fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/culling/UploadFolderIcon.tsx b/src/Icons/culling/UploadFolderIcon.tsx index e5f6fbbb..4f9ef17e 100644 --- a/src/Icons/culling/UploadFolderIcon.tsx +++ b/src/Icons/culling/UploadFolderIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const UploadFolderIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ViewAllIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ZoomCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,16 +12,22 @@ type Props = Omit & { export const ZoomIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwarded ) const secondary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const AftershootEditIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = 150, inActive = false, ...restProps } = props + const { variant = 'primary', color, className, size = 150, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CheckBoxEmptyIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/CheckBoxIcon.tsx b/src/Icons/edit/CheckBoxIcon.tsx index cd5f8ffd..04f4cb28 100644 --- a/src/Icons/edit/CheckBoxIcon.tsx +++ b/src/Icons/edit/CheckBoxIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -16,22 +17,30 @@ export const CheckBoxIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.ACCENT_COLOR, bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -16,22 +17,30 @@ export const CheckBoxPartialIcon = React.forwardRef((props //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, accentColor = DEFAULT_ICON.ACCENT_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/CollectionsIcon.tsx b/src/Icons/edit/CollectionsIcon.tsx index 030ccd16..05c59703 100644 --- a/src/Icons/edit/CollectionsIcon.tsx +++ b/src/Icons/edit/CollectionsIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CollectionsIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const ComputerIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -9,13 +10,19 @@ type Props = Omit & { export const ConfettiLeftScreen = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 300, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 300, ...restProps } = props // variants const primary = ( - + & { @@ -9,13 +10,19 @@ type Props = Omit & { export const ConfettiRightScreen = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 300, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 300, ...restProps } = props // variants const primary = ( - + & { @@ -9,13 +10,19 @@ type Props = Omit & { export const ConfettiSideScreen = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 300, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 300, ...restProps } = props // variants const primary = ( - + & { @@ -14,20 +15,28 @@ export const DecrementIcon = React.forwardRef((props, forw //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.BG_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/DotsVerticalIcon.tsx b/src/Icons/edit/DotsVerticalIcon.tsx index b04f0e01..1fe91ab5 100644 --- a/src/Icons/edit/DotsVerticalIcon.tsx +++ b/src/Icons/edit/DotsVerticalIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' @@ -12,15 +13,21 @@ type Props = Omit & { export const DotsVerticalIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, f //props const { variant = 'primary', + className, + color = DEFAULT_ICON.COLOR, - size = DEFAULT_ICON.SIZE, + size, accentColor = DEFAULT_ICON.ACCENT_COLOR, inActive = false, ...restProps @@ -24,11 +27,17 @@ export const EditProgressIcon = React.forwardRef((props, f const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -16,10 +17,12 @@ export const FailFillBgIcon = React.forwardRef((props, for //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, fillColor = DEFAULT_ICON.FILL_COLOR, inActive = false, ...restProps @@ -27,11 +30,17 @@ export const FailFillBgIcon = React.forwardRef((props, for const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -14,20 +15,28 @@ export const FailFillIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/FileSearchIcon.tsx b/src/Icons/edit/FileSearchIcon.tsx index 39c940d5..2f2a52ea 100644 --- a/src/Icons/edit/FileSearchIcon.tsx +++ b/src/Icons/edit/FileSearchIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FileSearchIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FlagFillIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/FlagOutlineCrossedIcon.tsx b/src/Icons/edit/FlagOutlineCrossedIcon.tsx index b8f9c686..86dc447a 100644 --- a/src/Icons/edit/FlagOutlineCrossedIcon.tsx +++ b/src/Icons/edit/FlagOutlineCrossedIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FlagOutlineCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const FlagOutlineIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/MoodIcon.tsx b/src/Icons/edit/MoodIcon.tsx index 19f060ec..3eb5f619 100644 --- a/src/Icons/edit/MoodIcon.tsx +++ b/src/Icons/edit/MoodIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' @@ -15,8 +16,10 @@ export const MoodIcon = React.forwardRef((props, forwarded //props const { variant = 'primary', + className, + color = DEFAULT_ICON.COLOR, - size = DEFAULT_ICON.SIZE, + size, accentColor = DEFAULT_ICON.ACCENT_COLOR, inActive = false, ...restProps @@ -24,11 +27,17 @@ export const MoodIcon = React.forwardRef((props, forwarded const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -14,20 +15,28 @@ export const PlusBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.BG_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/RightArrowBgIcon.tsx b/src/Icons/edit/RightArrowBgIcon.tsx index 64f07d42..a3621beb 100644 --- a/src/Icons/edit/RightArrowBgIcon.tsx +++ b/src/Icons/edit/RightArrowBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -15,21 +16,29 @@ export const RightArrowBgIcon = React.forwardRef((props, f //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -16,22 +17,30 @@ export const SuccessFillBgIcon = React.forwardRef((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/edit/TrainBgIcon.tsx b/src/Icons/edit/TrainBgIcon.tsx index 4a10c55b..35737737 100644 --- a/src/Icons/edit/TrainBgIcon.tsx +++ b/src/Icons/edit/TrainBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -16,10 +17,12 @@ export const TrainBgIcon = React.forwardRef((props, forwar //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, accentColor = DEFAULT_ICON.ACCENT_COLOR, ...restProps @@ -27,11 +30,17 @@ export const TrainBgIcon = React.forwardRef((props, forwar const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const PowerHighIcon = React.forwardRef((props, forwardedRef) => { //props - const { isFill = false, size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { isFill = false, size, className, ...restProps } = props // variants const outline = ( - + ((props, forw ) const fill = ( - + & { isFill?: boolean @@ -9,13 +9,19 @@ type Props = Omit & { export const PowerLowIcon = React.forwardRef((props, forwardedRef) => { //props - const { isFill = false, size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { isFill = false, size, className, ...restProps } = props // variants const outline = ( - + ((props, forwa ) const fill = ( - + & { export const PowerMidIcon = React.forwardRef((props, forwardedRef) => { //props - const { isFill = false, size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { isFill = false, size, className, ...restProps } = props // variants const outline = ( - + ((props, forwa ) const fill = ( - + & { export const AdjustmentIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,16 +12,22 @@ type Props = Omit & { export const AlertCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -12,15 +14,21 @@ type Props = Omit & { export const AlertFillIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, fillColor = '#1DA0BC', inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, fillColor = '#1DA0BC', inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -16,22 +17,29 @@ export const AlertFillTriangleBgIcon = React.forwardRef((p //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,20 +16,28 @@ export const AlertFillTriangleIcon = React.forwardRef((pro //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const AlertHexagonBgIcon = React.forwardRef((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/AlertHexagonIcon.tsx b/src/Icons/general/AlertHexagonIcon.tsx index ae4284e0..ae90069e 100644 --- a/src/Icons/general/AlertHexagonIcon.tsx +++ b/src/Icons/general/AlertHexagonIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const AlertHexagonIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,21 +16,29 @@ export const AlertTriangleBgIcon = React.forwardRef((props //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const AlertTriangleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, ) const secondary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ArrowCurveIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,21 +12,20 @@ type Props = Omit & { export const ArrowDownIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( diff --git a/src/Icons/general/ArrowFillRightIcon.tsx b/src/Icons/general/ArrowFillRightIcon.tsx index 66e7520a..3cb3e887 100644 --- a/src/Icons/general/ArrowFillRightIcon.tsx +++ b/src/Icons/general/ArrowFillRightIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ArrowFillRightIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ) diff --git a/src/Icons/general/ArrowFillUpIcon.tsx b/src/Icons/general/ArrowFillUpIcon.tsx index fbdd12aa..203e5241 100644 --- a/src/Icons/general/ArrowFillUpIcon.tsx +++ b/src/Icons/general/ArrowFillUpIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'secondary' type Props = Omit & { @@ -11,13 +11,19 @@ type Props = Omit & { export const ArrowFillUpIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = '#E2E2E2', size = DEFAULT_ICON.SIZE, fillColor = '#292929', ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = '#E2E2E2', size, fillColor = '#292929', ...restProps } = props // variants const secondary = ( - + diff --git a/src/Icons/general/ArrowLeftIcon.tsx b/src/Icons/general/ArrowLeftIcon.tsx index 6f18113e..87599221 100644 --- a/src/Icons/general/ArrowLeftIcon.tsx +++ b/src/Icons/general/ArrowLeftIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ArrowLeftIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + @@ -34,7 +41,15 @@ export const ArrowLeftIcon = React.forwardRef((props, forw ) const secondary = ( - + diff --git a/src/Icons/general/ArrowRightIcon.tsx b/src/Icons/general/ArrowRightIcon.tsx index ac8dc41d..37f2ed98 100644 --- a/src/Icons/general/ArrowRightIcon.tsx +++ b/src/Icons/general/ArrowRightIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -12,15 +13,21 @@ type Props = Omit & { export const ArrowRightIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + @@ -35,7 +42,15 @@ export const ArrowRightIcon = React.forwardRef((props, for ) const secondary = ( - + ) diff --git a/src/Icons/general/ArrowUpIcon.tsx b/src/Icons/general/ArrowUpIcon.tsx index 844380bb..fcf5f2bf 100644 --- a/src/Icons/general/ArrowUpIcon.tsx +++ b/src/Icons/general/ArrowUpIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,21 +12,20 @@ type Props = Omit & { export const ArrowUpIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( diff --git a/src/Icons/general/BulbIcon.tsx b/src/Icons/general/BulbIcon.tsx index fb626d2c..1c217bc9 100644 --- a/src/Icons/general/BulbIcon.tsx +++ b/src/Icons/general/BulbIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,12 +11,10 @@ type Props = Omit & { export const BulbIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarded viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -13,17 +14,17 @@ export const C1UploadIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.ACCENT_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwa viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > ((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CheckCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -15,20 +16,28 @@ export const CheckFillIcon = React.forwardRef((props, forw //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + fillColor = DEFAULT_ICON.FILL_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/CheckIcon.tsx b/src/Icons/general/CheckIcon.tsx index 0ee24ebf..320e27a7 100644 --- a/src/Icons/general/CheckIcon.tsx +++ b/src/Icons/general/CheckIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -12,21 +13,20 @@ type Props = Omit & { export const CheckIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( @@ -34,7 +34,15 @@ export const CheckIcon = React.forwardRef((props, forwarde ) const secondary = ( - + & { export const ChevronDownIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( @@ -39,9 +39,10 @@ export const ChevronDownIcon = React.forwardRef((props, fo viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { export const ChevronLeftIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ) const secondary = ( - + ) const tertiary = ( - + ) diff --git a/src/Icons/general/ChevronRightIcon.tsx b/src/Icons/general/ChevronRightIcon.tsx index d81af312..cc6df3a3 100644 --- a/src/Icons/general/ChevronRightIcon.tsx +++ b/src/Icons/general/ChevronRightIcon.tsx @@ -2,6 +2,7 @@ import * as React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -12,10 +13,9 @@ type Props = Omit & { export const ChevronRightIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( @@ -23,8 +23,9 @@ export const ChevronRightIcon = React.forwardRef((props, f xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill={modifiedColor} - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > @@ -32,7 +33,15 @@ export const ChevronRightIcon = React.forwardRef((props, f ) const secondary = ( - + ) diff --git a/src/Icons/general/ChevronUpIcon.tsx b/src/Icons/general/ChevronUpIcon.tsx index bc096cb7..63d01f77 100644 --- a/src/Icons/general/ChevronUpIcon.tsx +++ b/src/Icons/general/ChevronUpIcon.tsx @@ -2,6 +2,7 @@ import * as React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -12,10 +13,9 @@ type Props = Omit & { export const ChevronUpIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( @@ -23,8 +23,9 @@ export const ChevronUpIcon = React.forwardRef((props, forw xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill={modifiedColor} - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > @@ -32,7 +33,15 @@ export const ChevronUpIcon = React.forwardRef((props, forw ) const secondary = ( - + & { @@ -11,13 +12,19 @@ type Props = Omit & { export const CircleFillIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', fillColor = DEFAULT_ICON.FILL_COLOR, inActive = false, size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, fillColor = DEFAULT_ICON.FILL_COLOR, inActive = false, size, ...restProps } = props // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const CircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -12,15 +13,21 @@ type Props = Omit & { export const ClockIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwarde ) const secondary = ( - + & { export const CloseCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, fo ) const secondary = ( - + & { export const CloseIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props let modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarde ) const secondary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ColorPaletteIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -14,18 +15,18 @@ export const ConfettiIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwa viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/general/CopyContentIcon.tsx b/src/Icons/general/CopyContentIcon.tsx index a2a8d1f3..2a2b8634 100644 --- a/src/Icons/general/CopyContentIcon.tsx +++ b/src/Icons/general/CopyContentIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,12 +12,10 @@ type Props = Omit & { export const CopyContentIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, fo width={size} viewBox='0 0 24 24' fill={modifiedColor} - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/general/CopyIcon.tsx b/src/Icons/general/CopyIcon.tsx index f244cb7d..a849dac8 100644 --- a/src/Icons/general/CopyIcon.tsx +++ b/src/Icons/general/CopyIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' @@ -12,15 +13,22 @@ type Props = Omit & { export const CopyIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + ((props, forwarded ) const secondary = ( - + ((props, forwarded xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill={modifiedColor} - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/general/CreditIcon.tsx b/src/Icons/general/CreditIcon.tsx index d11e6965..d7321c41 100644 --- a/src/Icons/general/CreditIcon.tsx +++ b/src/Icons/general/CreditIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit, 'inActive'> & { @@ -10,9 +11,7 @@ type Props = Omit, 'inActive'> & { export const CreditIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants const primary = ( @@ -22,9 +21,10 @@ export const CreditIcon = React.forwardRef((props, forward viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/general/CrossCircleIcon.tsx b/src/Icons/general/CrossCircleIcon.tsx index 7821d1e9..50e9b41a 100644 --- a/src/Icons/general/CrossCircleIcon.tsx +++ b/src/Icons/general/CrossCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' @@ -12,15 +13,21 @@ type Props = Omit & { export const CrossCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const CrossIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( diff --git a/src/Icons/general/CrownBgIcon.tsx b/src/Icons/general/CrownBgIcon.tsx index 1007f4df..5d5e2331 100644 --- a/src/Icons/general/CrownBgIcon.tsx +++ b/src/Icons/general/CrownBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -15,21 +16,29 @@ type Props = Omit & { export const CrownBgIcon = React.forwardRef((props, forwardedRef) => { const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwar ) const secondary = ( - + & { export const CrownIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwarde viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/general/DeleteBgIcon.tsx b/src/Icons/general/DeleteBgIcon.tsx index 5ae04d87..5d8aedd9 100644 --- a/src/Icons/general/DeleteBgIcon.tsx +++ b/src/Icons/general/DeleteBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -15,21 +16,29 @@ export const DeleteBgIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/DeleteIcon.tsx b/src/Icons/general/DeleteIcon.tsx index 81f5350c..6ecdb554 100644 --- a/src/Icons/general/DeleteIcon.tsx +++ b/src/Icons/general/DeleteIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' @@ -12,16 +13,22 @@ type Props = Omit & { export const DeleteIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forward ) const secondary = ( - + & { @@ -14,18 +15,18 @@ export const DollarIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forward viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -10,12 +11,10 @@ type Props = Omit & { export const DrawerIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forward viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,21 @@ type Props = Omit & { export const EditIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -10,12 +11,10 @@ type Props = Omit & { export const ExportIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forward viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FolderFillIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FolderOutlineCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const GlobalIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forward ) const secondary = ( - + ((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const InfoCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, for ) const secondary = ( - + ((props, for ) const tertiary = ( - + @@ -70,7 +93,15 @@ export const InfoCircleIcon = React.forwardRef((props, for ) const quaternary = ( - + diff --git a/src/Icons/general/LrUploadIcon.tsx b/src/Icons/general/LrUploadIcon.tsx index a893dde6..e8fdfbec 100644 --- a/src/Icons/general/LrUploadIcon.tsx +++ b/src/Icons/general/LrUploadIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -13,17 +14,17 @@ export const LrUploadIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + accentColor = DEFAULT_ICON.ACCENT_COLOR, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwa viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -14,18 +15,18 @@ export const MailBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forward viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,15 +12,22 @@ type Props = Omit & { export const OpenlinkIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + ((props, forwa ) const secondary = ( - + & { @@ -14,18 +15,18 @@ export const PauseBgIcon = React.forwardRef((props, forwar //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwar viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/general/PersonPlusIcon.tsx b/src/Icons/general/PersonPlusIcon.tsx index 46c95b5e..4200e594 100644 --- a/src/Icons/general/PersonPlusIcon.tsx +++ b/src/Icons/general/PersonPlusIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' | 'tertiary' type Props = Omit & { @@ -14,18 +15,18 @@ export const PersonPlusIcon = React.forwardRef((props, for //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, for viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > & { @@ -11,16 +12,22 @@ type Props = Omit & { export const PersonTwoIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forw ) const secondary = ( - + & { export const PipeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ) diff --git a/src/Icons/general/PlayBgIcon.tsx b/src/Icons/general/PlayBgIcon.tsx index 3fce7ca4..b60f3773 100644 --- a/src/Icons/general/PlayBgIcon.tsx +++ b/src/Icons/general/PlayBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -15,20 +16,29 @@ export const PlayBgIcon = React.forwardRef((props, forward //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + diff --git a/src/Icons/general/PlayCircleIcon.tsx b/src/Icons/general/PlayCircleIcon.tsx index 25560263..217ee3a7 100644 --- a/src/Icons/general/PlayCircleIcon.tsx +++ b/src/Icons/general/PlayCircleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const PlayCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -13,15 +14,21 @@ type Props = Omit & { export const QuestionMarkCircleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,22 @@ type Props = Omit & { export const QuestionMarkIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + @@ -32,7 +40,15 @@ export const QuestionMarkIcon = React.forwardRef((props, f ) const secondary = ( - + ((props, f ) const tertiary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const RefreshIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const RevertIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const RotateIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forward ) const secondary = ( - + diff --git a/src/Icons/general/ScissorsIcon.tsx b/src/Icons/general/ScissorsIcon.tsx index 4f26399f..46b3971c 100644 --- a/src/Icons/general/ScissorsIcon.tsx +++ b/src/Icons/general/ScissorsIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const ScissorsIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,21 +12,35 @@ type Props = Omit & { export const SearchIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ) const secondary = ( - + ((props, forward ) const tertiary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const StarCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const StarIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwarded enable-background='new 0 0 24 24' viewBox='0 0 24 24' fill={modifiedColor} - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > @@ -37,7 +37,15 @@ export const StarIcon = React.forwardRef((props, forwarded ) const secondary = ( - + ((props, forwarded ) const tertiary = ( - + ((props, fo //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/ThumbUpBgIcon.tsx b/src/Icons/general/ThumbUpBgIcon.tsx index 0d0d088d..e129e614 100644 --- a/src/Icons/general/ThumbUpBgIcon.tsx +++ b/src/Icons/general/ThumbUpBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' @@ -16,21 +17,29 @@ export const ThumbUpBgIcon = React.forwardRef((props, forw //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/TrophyColorIcon.tsx b/src/Icons/general/TrophyColorIcon.tsx index b313074a..9bc830b2 100644 --- a/src/Icons/general/TrophyColorIcon.tsx +++ b/src/Icons/general/TrophyColorIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit, 'color'>, 'inActive'> & { @@ -10,9 +11,7 @@ type Props = Omit, 'color'>, 'inActive'> & { export const TrophyColorIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants const primary = ( @@ -21,9 +20,10 @@ export const TrophyColorIcon = React.forwardRef((props, fo fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/general/UploadBgIcon.tsx b/src/Icons/general/UploadBgIcon.tsx index 11ee58ae..6f117ad9 100644 --- a/src/Icons/general/UploadBgIcon.tsx +++ b/src/Icons/general/UploadBgIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' | 'secondary' type Props = Omit & { @@ -16,10 +17,12 @@ export const UploadBgIcon = React.forwardRef((props, forwa //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, accentColor = DEFAULT_ICON.ACCENT_COLOR, inActive = false, ...restProps @@ -27,11 +30,17 @@ export const UploadBgIcon = React.forwardRef((props, forwa const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forwa ) const secondary = ( - + & { @@ -16,10 +17,12 @@ export const UploadCloudBgIcon = React.forwardRef((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, accentColor = DEFAULT_ICON.ACCENT_COLOR, inActive = false, ...restProps @@ -27,11 +30,17 @@ export const UploadCloudBgIcon = React.forwardRef((props, const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -11,15 +12,21 @@ type Props = Omit & { export const UploadCloudIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const UploadIcon = React.forwardRef((props, forwardedRef) => { // props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + ((props, forward ) const secondary = ( - + & { @@ -15,21 +16,29 @@ export const WifiCrossedBgIcon = React.forwardRef((props, //props const { variant = 'primary', - color = DEFAULT_ICON.COLOR, + className, + bgColor = DEFAULT_ICON.BG_COLOR, bgOpacity = DEFAULT_ICON.BG_OPACITY, - size = DEFAULT_ICON.SIZE, + color = DEFAULT_ICON.COLOR, + size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + diff --git a/src/Icons/general/WifiCrossedIcon.tsx b/src/Icons/general/WifiCrossedIcon.tsx index 6df34653..6c62850b 100644 --- a/src/Icons/general/WifiCrossedIcon.tsx +++ b/src/Icons/general/WifiCrossedIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const WifiCrossedIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const AfterShootLogoIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants @@ -23,8 +22,9 @@ export const AfterShootLogoIcon = React.forwardRef((props, fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > & { @@ -10,15 +11,21 @@ type Props = Omit & { export const AftershootWhiteIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { export const CaptureOneIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants const primary = ( @@ -22,8 +21,9 @@ export const CaptureOneIcon = React.forwardRef((props, for fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/DragBridgeIcon.tsx b/src/Icons/logo/DragBridgeIcon.tsx index a3e17768..bf4d3edc 100644 --- a/src/Icons/logo/DragBridgeIcon.tsx +++ b/src/Icons/logo/DragBridgeIcon.tsx @@ -2,6 +2,7 @@ import * as React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,9 +11,7 @@ type Props = Omit & { export const DragBridgeIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props const primary = ( ((props, for fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/DragCaptureOneIcon.tsx b/src/Icons/logo/DragCaptureOneIcon.tsx index fa2aaabf..6d743b74 100644 --- a/src/Icons/logo/DragCaptureOneIcon.tsx +++ b/src/Icons/logo/DragCaptureOneIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,9 +10,7 @@ type Props = Omit & { export const DragCaptureOneIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const DragCaptureOneIcon = React.forwardRef((props, fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/DragFolderIcon.tsx b/src/Icons/logo/DragFolderIcon.tsx index 2e52eee7..d76f7fa9 100644 --- a/src/Icons/logo/DragFolderIcon.tsx +++ b/src/Icons/logo/DragFolderIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,13 +10,19 @@ type Props = Omit & { export const DragFolderIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( - + & { @@ -10,9 +10,7 @@ type Props = Omit & { export const DragLrIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const DragLrIcon = React.forwardRef((props, forward fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/DragLrcIcon.tsx b/src/Icons/logo/DragLrcIcon.tsx index cf9c3e83..5cf7d401 100644 --- a/src/Icons/logo/DragLrcIcon.tsx +++ b/src/Icons/logo/DragLrcIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,9 +10,7 @@ type Props = Omit & { export const DragLrcIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const DragLrcIcon = React.forwardRef((props, forwar fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/DragPhotoshopIcon.tsx b/src/Icons/logo/DragPhotoshopIcon.tsx index 47327098..9723db4b 100644 --- a/src/Icons/logo/DragPhotoshopIcon.tsx +++ b/src/Icons/logo/DragPhotoshopIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,9 +10,7 @@ type Props = Omit & { export const DragPhotoshopIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const DragPhotoshopIcon = React.forwardRef((props, fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/EditsLogoTextIcon.tsx b/src/Icons/logo/EditsLogoTextIcon.tsx index ce0a87e7..8a927d74 100644 --- a/src/Icons/logo/EditsLogoTextIcon.tsx +++ b/src/Icons/logo/EditsLogoTextIcon.tsx @@ -1,6 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -9,13 +10,19 @@ type Props = Omit & { export const EditsLogoTextIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = 50, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size = 50, ...restProps } = props // variants const primary = ( - + & { @@ -10,9 +10,7 @@ type Props = Omit & { export const LightroomClassicIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const LightroomClassicIcon = React.forwardRef((prop fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/logo/LightroomIcon.tsx b/src/Icons/logo/LightroomIcon.tsx index 49e4e99c..2884f247 100644 --- a/src/Icons/logo/LightroomIcon.tsx +++ b/src/Icons/logo/LightroomIcon.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' -import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,9 +10,7 @@ type Props = Omit & { export const LightroomIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, size, ...restProps } = props // variants const primary = ( @@ -21,8 +19,9 @@ export const LightroomIcon = React.forwardRef((props, forw fill='none' xmlns='http://www.w3.org/2000/svg' xmlnsXlink='http://www.w3.org/1999/xlink' - style={{ width: iconSize }} + {...(size ? { style: { width: size } } : {})} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/social/AppleIcon.tsx b/src/Icons/social/AppleIcon.tsx index a94ec5ae..2a5d29e9 100644 --- a/src/Icons/social/AppleIcon.tsx +++ b/src/Icons/social/AppleIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,14 +11,21 @@ type Props = Omit & { export const AppleIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const FacebookBgIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', bgColor = '#4267B2', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { + variant = 'primary', + className, + bgColor = '#4267B2', + + color = DEFAULT_ICON.COLOR, + size, + inActive = false, + ...restProps + } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants const primary = ( - + & { export const FacebookIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size // variants @@ -25,8 +25,9 @@ export const FacebookIcon = React.forwardRef((props, forwa x='0px' y='0px' viewBox='0 0 24 24' - style={{ width: iconSize, fill: modifiedColor }} + style={{ width: size, fill: modifiedColor }} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/Icons/social/FacebookOutlineIcon.tsx b/src/Icons/social/FacebookOutlineIcon.tsx index d5d65c99..c0ea9594 100644 --- a/src/Icons/social/FacebookOutlineIcon.tsx +++ b/src/Icons/social/FacebookOutlineIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -11,15 +12,21 @@ type Props = Omit & { export const FacebookOutlineIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -10,13 +11,18 @@ type Props = Omit & { export const GoogleColorIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', size = DEFAULT_ICON.SIZE, ...restProps } = props - - const iconSize = typeof size === 'number' ? `${size}px` : size + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, ...restProps } = props // variants const primary = ( - + & { @@ -10,15 +11,21 @@ type Props = Omit & { export const InstagramIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + & { @@ -10,12 +11,10 @@ type Props = Omit & { export const WhatsappIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwa x='0px' y='0px' viewBox='0 0 24 24' - style={{ width: iconSize, fill: modifiedColor }} + style={{ width: size, fill: modifiedColor }} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/Icons/social/XIcon.tsx b/src/Icons/social/XIcon.tsx index 7377d387..70c7923e 100644 --- a/src/Icons/social/XIcon.tsx +++ b/src/Icons/social/XIcon.tsx @@ -2,6 +2,7 @@ import React from 'react' import { IconProps } from '../../../types' import BaseIcon from '../../components/BaseIcon' import DEFAULT_ICON from '../../constant' +import { cn } from '../../utils/cn' type IconVariant = 'primary' type Props = Omit & { @@ -10,12 +11,10 @@ type Props = Omit & { export const XIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwardedRef x='0px' y='0px' viewBox='0 0 32 32' - style={{ width: iconSize, fill: modifiedColor }} + style={{ width: size, fill: modifiedColor }} {...restProps} ref={forwardedRef} + className={cn('w-6', className && className)} > diff --git a/src/deleted-icons/TwitterBgIcon.tsx b/src/deleted-icons/TwitterBgIcon.tsx index cff97ff7..09c18f37 100644 --- a/src/deleted-icons/TwitterBgIcon.tsx +++ b/src/deleted-icons/TwitterBgIcon.tsx @@ -12,11 +12,18 @@ type Props = Omit & { export const TwitterBgIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, bgColor = '#1DA1F2', size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { + variant = 'primary', + className, - const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color + bgColor = '#1DA1F2', + color = DEFAULT_ICON.COLOR, + size, + inActive = false, + ...restProps + } = props - const iconSize = typeof size === 'number' ? `${size}px` : size + const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color // variants const primary = ( @@ -28,6 +35,7 @@ export const TwitterBgIcon = React.forwardRef((props, forw xmlns='http://www.w3.org/2000/svg' style={{ width: size, height: (40 / 60) * size }} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > diff --git a/src/deleted-icons/TwitterIcon.tsx b/src/deleted-icons/TwitterIcon.tsx index 587791a5..e1cfb6ca 100644 --- a/src/deleted-icons/TwitterIcon.tsx +++ b/src/deleted-icons/TwitterIcon.tsx @@ -11,12 +11,10 @@ type Props = Omit & { export const TwitterIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( ((props, forwar xmlns='http://www.w3.org/2000/svg' style={{ width: size, height: (15 / 18) * size }} ref={forwardedRef} + className={cn('w-6', className && className)} {...restProps} > & { export const TwitterOutlineIcon = React.forwardRef((props, forwardedRef) => { //props - const { variant = 'primary', color = DEFAULT_ICON.COLOR, size = DEFAULT_ICON.SIZE, inActive = false, ...restProps } = props + const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - const iconSize = typeof size === 'number' ? `${size}px` : size - // variants const primary = ( - + { color?: string size?: number | string inActive?: boolean + className?: ClassNameValue } export interface ImageProps extends React.ImgHTMLAttributes { From cabeca7cb6e3f8d8cdd6537bb4d3cde02eccb62e Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 28 May 2024 22:05:33 +0530 Subject: [PATCH 05/34] add render func --- icons-nodes/adjust_profile.node.json | 18 + icons-nodes/alert-circle.node.json | 15 + icons-nodes/alert-red.node.json | 19 + icons-nodes/alert-white.node.json | 18 + icons-nodes/alert.node.json | 20 + icons-nodes/alertTriangle.node.json | 11 + icons-nodes/apple.node.json | 10 + icons-nodes/arrow-right.node.json | 15 + icons-nodes/arrow_down.node.json | 14 + icons-nodes/arrow_down_variant.node.json | 14 + icons-nodes/arrow_left.node.json | 14 + icons-nodes/arrow_right_ios.node.json | 14 + icons-nodes/arrow_up.node.json | 14 + icons-nodes/index.ts | 46 + icons-objs/adjust_profile.new.json | 148 + icons-objs/adjust_profile.obj.json | 152 + icons-objs/alert-circle.new.json | 91 + icons-objs/alert-circle.obj.json | 95 + icons-objs/alert-red.new.json | 79 + icons-objs/alert-red.obj.json | 83 + icons-objs/alert-white.new.json | 77 + icons-objs/alert-white.obj.json | 81 + icons-objs/alert.new.json | 34 + icons-objs/alert.obj.json | 38 + icons-objs/alertTriangle.new.json | 21 + icons-objs/alertTriangle.obj.json | 25 + icons-objs/apple.new.json | 20 + icons-objs/apple.obj.json | 24 + icons-objs/arrow-right.new.json | 123 + icons-objs/arrow-right.obj.json | 127 + icons-objs/arrow_down.new.json | 24 + icons-objs/arrow_down.obj.json | 28 + icons-objs/arrow_down_variant.new.json | 24 + icons-objs/arrow_down_variant.obj.json | 28 + icons-objs/arrow_left.new.json | 24 + icons-objs/arrow_left.obj.json | 28 + icons-objs/arrow_right_ios.new.json | 24 + icons-objs/arrow_right_ios.obj.json | 28 + icons-objs/arrow_up.new.json | 24 + icons-objs/arrow_up.obj.json | 28 + icons-objs/text.svg | 2 + icons/adjust_profile.svg | 28 + icons/alert-circle.svg | 28 + icons/alert-red.svg | 23 + icons/alert-white.svg | 22 + icons/alert.svg | 16 + icons/alertTriangle.svg | 13 + icons/apple.svg | 12 + icons/arrow-right.svg | 29 + icons/arrow_down.svg | 16 + icons/arrow_down_variant.svg | 16 + icons/arrow_left.svg | 16 + icons/arrow_right_ios.svg | 16 + icons/arrow_up.svg | 16 + package.json | 8 + pnpm-lock.yaml | 12771 ++++++++++------- scripts/buildIcons.mjs | 69 + scripts/default-attrs.json | 11 + scripts/exportIconTemplate.mjs | 22 + scripts/generateIconFiles.mjs | 47 + scripts/generateIcons.mjs | 22 + scripts/helpers.mjs | 215 + scripts/optimizeSvgs.mjs | 19 + scripts/processSvg.mjs | 83 + scripts/renderIconsObject.mjs | 39 + scripts/renderSvgChildrenObj.mjs | 38 + scripts/writeSvgChildren.mjs | 38 + scripts/writeSvgObjs.mjs | 51 + src/Icon.ts | 65 + src/Icons/culling/BorderSquareIcon.tsx | 4 +- src/createASIcon.ts | 28 + src/defaultAttributes.ts | 11 + src/defaultBgStyles.ts | 5 + src/icons-neo/adjust_profile.ts | 162 + src/icons-neo/alert-circle.ts | 106 + src/icons-neo/alert-red.ts | 94 + src/icons-neo/alert-white.ts | 92 + src/icons-neo/alert.ts | 50 + src/icons-neo/alertTriangle.ts | 38 + src/icons-neo/apple.ts | 37 + src/icons-neo/arrow-right.ts | 138 + src/icons-neo/arrow_down.ts | 41 + src/icons-neo/arrow_down_variant.ts | 41 + src/icons-neo/arrow_left.ts | 41 + src/icons-neo/arrow_right_ios.ts | 41 + src/icons-neo/arrow_up.ts | 41 + src/stories/BorderColorIcon.stories.tsx | 6 + src/stories/sample.stories.tsx | 39 + src/styles/tailwind.css | 57 +- src/types.ts | 17 + src/utils.ts | 43 + svg-children/adjust_profile.children.svg | 1 + svg-children/alert-circle.children.svg | 1 + svg-children/alert-red.children.svg | 1 + svg-children/alert-white.children.svg | 1 + svg-children/alert.children.svg | 1 + svg-children/alertTriangle.children.svg | 1 + svg-children/apple.children.svg | 1 + svg-children/arrow-right.children.svg | 1 + svg-children/arrow_down.children.svg | 1 + svg-children/arrow_down_variant.children.svg | 1 + svg-children/arrow_left.children.svg | 1 + svg-children/arrow_right_ios.children.svg | 1 + svg-children/arrow_up.children.svg | 1 + yarn-error.log | 9857 ++++++++++++- 105 files changed, 20879 insertions(+), 5594 deletions(-) create mode 100644 icons-nodes/adjust_profile.node.json create mode 100644 icons-nodes/alert-circle.node.json create mode 100644 icons-nodes/alert-red.node.json create mode 100644 icons-nodes/alert-white.node.json create mode 100644 icons-nodes/alert.node.json create mode 100644 icons-nodes/alertTriangle.node.json create mode 100644 icons-nodes/apple.node.json create mode 100644 icons-nodes/arrow-right.node.json create mode 100644 icons-nodes/arrow_down.node.json create mode 100644 icons-nodes/arrow_down_variant.node.json create mode 100644 icons-nodes/arrow_left.node.json create mode 100644 icons-nodes/arrow_right_ios.node.json create mode 100644 icons-nodes/arrow_up.node.json create mode 100644 icons-nodes/index.ts create mode 100644 icons-objs/adjust_profile.new.json create mode 100644 icons-objs/adjust_profile.obj.json create mode 100644 icons-objs/alert-circle.new.json create mode 100644 icons-objs/alert-circle.obj.json create mode 100644 icons-objs/alert-red.new.json create mode 100644 icons-objs/alert-red.obj.json create mode 100644 icons-objs/alert-white.new.json create mode 100644 icons-objs/alert-white.obj.json create mode 100644 icons-objs/alert.new.json create mode 100644 icons-objs/alert.obj.json create mode 100644 icons-objs/alertTriangle.new.json create mode 100644 icons-objs/alertTriangle.obj.json create mode 100644 icons-objs/apple.new.json create mode 100644 icons-objs/apple.obj.json create mode 100644 icons-objs/arrow-right.new.json create mode 100644 icons-objs/arrow-right.obj.json create mode 100644 icons-objs/arrow_down.new.json create mode 100644 icons-objs/arrow_down.obj.json create mode 100644 icons-objs/arrow_down_variant.new.json create mode 100644 icons-objs/arrow_down_variant.obj.json create mode 100644 icons-objs/arrow_left.new.json create mode 100644 icons-objs/arrow_left.obj.json create mode 100644 icons-objs/arrow_right_ios.new.json create mode 100644 icons-objs/arrow_right_ios.obj.json create mode 100644 icons-objs/arrow_up.new.json create mode 100644 icons-objs/arrow_up.obj.json create mode 100644 icons-objs/text.svg create mode 100644 icons/adjust_profile.svg create mode 100644 icons/alert-circle.svg create mode 100644 icons/alert-red.svg create mode 100644 icons/alert-white.svg create mode 100644 icons/alert.svg create mode 100644 icons/alertTriangle.svg create mode 100644 icons/apple.svg create mode 100644 icons/arrow-right.svg create mode 100644 icons/arrow_down.svg create mode 100644 icons/arrow_down_variant.svg create mode 100644 icons/arrow_left.svg create mode 100644 icons/arrow_right_ios.svg create mode 100644 icons/arrow_up.svg create mode 100644 scripts/buildIcons.mjs create mode 100644 scripts/default-attrs.json create mode 100644 scripts/exportIconTemplate.mjs create mode 100644 scripts/generateIconFiles.mjs create mode 100644 scripts/generateIcons.mjs create mode 100644 scripts/helpers.mjs create mode 100644 scripts/optimizeSvgs.mjs create mode 100644 scripts/processSvg.mjs create mode 100644 scripts/renderIconsObject.mjs create mode 100644 scripts/renderSvgChildrenObj.mjs create mode 100644 scripts/writeSvgChildren.mjs create mode 100644 scripts/writeSvgObjs.mjs create mode 100644 src/Icon.ts create mode 100644 src/createASIcon.ts create mode 100644 src/defaultAttributes.ts create mode 100644 src/defaultBgStyles.ts create mode 100644 src/icons-neo/adjust_profile.ts create mode 100644 src/icons-neo/alert-circle.ts create mode 100644 src/icons-neo/alert-red.ts create mode 100644 src/icons-neo/alert-white.ts create mode 100644 src/icons-neo/alert.ts create mode 100644 src/icons-neo/alertTriangle.ts create mode 100644 src/icons-neo/apple.ts create mode 100644 src/icons-neo/arrow-right.ts create mode 100644 src/icons-neo/arrow_down.ts create mode 100644 src/icons-neo/arrow_down_variant.ts create mode 100644 src/icons-neo/arrow_left.ts create mode 100644 src/icons-neo/arrow_right_ios.ts create mode 100644 src/icons-neo/arrow_up.ts create mode 100644 src/stories/sample.stories.tsx create mode 100644 src/types.ts create mode 100644 src/utils.ts create mode 100644 svg-children/adjust_profile.children.svg create mode 100644 svg-children/alert-circle.children.svg create mode 100644 svg-children/alert-red.children.svg create mode 100644 svg-children/alert-white.children.svg create mode 100644 svg-children/alert.children.svg create mode 100644 svg-children/alertTriangle.children.svg create mode 100644 svg-children/apple.children.svg create mode 100644 svg-children/arrow-right.children.svg create mode 100644 svg-children/arrow_down.children.svg create mode 100644 svg-children/arrow_down_variant.children.svg create mode 100644 svg-children/arrow_left.children.svg create mode 100644 svg-children/arrow_right_ios.children.svg create mode 100644 svg-children/arrow_up.children.svg diff --git a/icons-nodes/adjust_profile.node.json b/icons-nodes/adjust_profile.node.json new file mode 100644 index 00000000..4d5f2572 --- /dev/null +++ b/icons-nodes/adjust_profile.node.json @@ -0,0 +1,18 @@ +[ + [ + "g", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + } + ], + [ + "defs", + { + "key": "9ahrjx" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/alert-circle.node.json b/icons-nodes/alert-circle.node.json new file mode 100644 index 00000000..f2547324 --- /dev/null +++ b/icons-nodes/alert-circle.node.json @@ -0,0 +1,15 @@ +[ + [ + "g", + { + "clip-path": "url(#a)", + "key": "1ycjfh" + } + ], + [ + "defs", + { + "key": "9ahrjx" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/alert-red.node.json b/icons-nodes/alert-red.node.json new file mode 100644 index 00000000..924433aa --- /dev/null +++ b/icons-nodes/alert-red.node.json @@ -0,0 +1,19 @@ +[ + [ + "g", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "3", + "clip-path": "url(#a)", + "key": "cm40qe" + } + ], + [ + "defs", + { + "key": "9ahrjx" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/alert-white.node.json b/icons-nodes/alert-white.node.json new file mode 100644 index 00000000..4d5f2572 --- /dev/null +++ b/icons-nodes/alert-white.node.json @@ -0,0 +1,18 @@ +[ + [ + "g", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + } + ], + [ + "defs", + { + "key": "9ahrjx" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/alert.node.json b/icons-nodes/alert.node.json new file mode 100644 index 00000000..9b8df2f9 --- /dev/null +++ b/icons-nodes/alert.node.json @@ -0,0 +1,20 @@ +[ + [ + "path", + { + "d": "M22.204 2.446.68 38.376A5.082 5.082 0 0 0 5.026 46h43.046a5.083 5.083 0 0 0 4.345-7.623L30.894 2.447a5.08 5.08 0 0 0-8.69 0Z", + "key": "1dix0z" + } + ], + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "5", + "d": "M26.552 15.507V25.67m0 10.165h.025", + "key": "1qd0x9" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/alertTriangle.node.json b/icons-nodes/alertTriangle.node.json new file mode 100644 index 00000000..d54c3923 --- /dev/null +++ b/icons-nodes/alertTriangle.node.json @@ -0,0 +1,11 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-width": "1.3", + "d": "M14.97 10.178h-.919l.46-.46zm0 0v.65h-.65zm3.38-1.182v-.003a.7.7 0 0 0-.036-.225.4.4 0 0 0-.1-.146l-.001-.001-7.82-7.82a.5.5 0 0 0-.376-.15.46.46 0 0 0-.365.15l-.01.01-.01.009a.46.46 0 0 0-.16.357.45.45 0 0 0 .149.362l.002.001 5.807 5.808 1.11 1.11H1.726a.5.5 0 0 0-.386.15c-.1.1-.15.213-.15.383v.002c0 .172.052.286.151.386.098.098.21.15.383.149H16.54l-1.11 1.11-5.807 5.807c-.09.089-.146.203-.152.39-.004.155.04.246.13.33l.022.019.02.021a.43.43 0 0 0 .35.145c.163 0 .284-.05.4-.165l7.821-7.822a.4.4 0 0 0 .1-.146.6.6 0 0 0 .036-.221ZM.54 8.993q0 .503.34.845.342.34.846.34z", + "key": "1lc0dp" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/apple.node.json b/icons-nodes/apple.node.json new file mode 100644 index 00000000..1f46a844 --- /dev/null +++ b/icons-nodes/apple.node.json @@ -0,0 +1,10 @@ +[ + [ + "path", + { + "fill": "#fff", + "d": "M13.934 10.57c-.01-1.64.727-2.876 2.215-3.787-.832-1.201-2.09-1.863-3.75-1.99-1.572-.125-3.29.923-3.92.923-.665 0-2.187-.88-3.384-.88C2.625 4.875 0 6.822 0 10.783q0 1.756.637 3.625c.567 1.64 2.613 5.656 4.747 5.591 1.116-.026 1.905-.798 3.357-.798 1.41 0 2.139.798 3.383.798 2.153-.031 4.004-3.682 4.543-5.326-2.888-1.373-2.733-4.02-2.733-4.104Zm-2.506-7.332C12.638 1.79 12.528.474 12.492 0c-1.069.062-2.304.733-3.007 1.558-.775.884-1.23 1.978-1.133 3.211 1.154.089 2.208-.51 3.076-1.531", + "key": "s8x3c1" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow-right.node.json b/icons-nodes/arrow-right.node.json new file mode 100644 index 00000000..f2547324 --- /dev/null +++ b/icons-nodes/arrow-right.node.json @@ -0,0 +1,15 @@ +[ + [ + "g", + { + "clip-path": "url(#a)", + "key": "1ycjfh" + } + ], + [ + "defs", + { + "key": "9ahrjx" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow_down.node.json b/icons-nodes/arrow_down.node.json new file mode 100644 index 00000000..4be9ea7e --- /dev/null +++ b/icons-nodes/arrow_down.node.json @@ -0,0 +1,14 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow_down_variant.node.json b/icons-nodes/arrow_down_variant.node.json new file mode 100644 index 00000000..4be9ea7e --- /dev/null +++ b/icons-nodes/arrow_down_variant.node.json @@ -0,0 +1,14 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow_left.node.json b/icons-nodes/arrow_left.node.json new file mode 100644 index 00000000..5ce34828 --- /dev/null +++ b/icons-nodes/arrow_left.node.json @@ -0,0 +1,14 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M8.706 16.94.765 9l7.94-7.941", + "key": "12tmx5" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow_right_ios.node.json b/icons-nodes/arrow_right_ios.node.json new file mode 100644 index 00000000..06841844 --- /dev/null +++ b/icons-nodes/arrow_right_ios.node.json @@ -0,0 +1,14 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.53 1.059 9.47 9l-7.94 7.941", + "key": "akkrx1" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/arrow_up.node.json b/icons-nodes/arrow_up.node.json new file mode 100644 index 00000000..90c0e75b --- /dev/null +++ b/icons-nodes/arrow_up.node.json @@ -0,0 +1,14 @@ +[ + [ + "path", + { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.059 9.53 9 1.587l7.941 7.941", + "key": "1b07nj" + } + ] +] \ No newline at end of file diff --git a/icons-nodes/index.ts b/icons-nodes/index.ts new file mode 100644 index 00000000..61c37e8e --- /dev/null +++ b/icons-nodes/index.ts @@ -0,0 +1,46 @@ +import adjustProfileNode from './adjust_profile.node.json' assert { type: "json" }; +import alertCircleNode from './alert-circle.node.json' assert { type: "json" }; +import alertRedNode from './alert-red.node.json' assert { type: "json" }; +import alertWhiteNode from './alert-white.node.json' assert { type: "json" }; +import alertNode from './alert.node.json' assert { type: "json" }; +import alertTriangleNode from './alertTriangle.node.json' assert { type: "json" }; +import appleNode from './apple.node.json' assert { type: "json" }; +import arrowRightNode from './arrow-right.node.json' assert { type: "json" }; +import arrowDownNode from './arrow_down.node.json' assert { type: "json" }; +import arrowLeftNode from './arrow_left.node.json' assert { type: "json" }; +import arrowDownVariantNode from './arrow_down_variant.node.json' assert { type: "json" }; +import arrowUpNode from './arrow_up.node.json' assert { type: "json" }; +import arrowRightIosNode from './arrow_right_ios.node.json' assert { type: "json" }; + +export { + adjustProfileNode as adjustProfile, + alertCircleNode as alertCircle, + alertRedNode as alertRed, + alertWhiteNode as alertWhite, + alertNode as alert, + alertTriangleNode as alertTriangle, + appleNode as apple, + arrowRightNode as arrowRight, + arrowDownNode as arrowDown, + arrowLeftNode as arrowLeft, + arrowDownVariantNode as arrowDownVariant, + arrowUpNode as arrowUp, + arrowRightIosNode as arrowRightIos, +} + +export default { + 'adjust_profile': adjustProfileNode, + 'alert-circle': alertCircleNode, + 'alert-red': alertRedNode, + 'alert-white': alertWhiteNode, + 'alert': alertNode, + 'alertTriangle': alertTriangleNode, + 'apple': appleNode, + 'arrow-right': arrowRightNode, + 'arrow_down': arrowDownNode, + 'arrow_left': arrowLeftNode, + 'arrow_down_variant': arrowDownVariantNode, + 'arrow_up': arrowUpNode, + 'arrow_right_ios': arrowRightIosNode, +} + \ No newline at end of file diff --git a/icons-objs/adjust_profile.new.json b/icons-objs/adjust_profile.new.json new file mode 100644 index 00000000..de956a42 --- /dev/null +++ b/icons-objs/adjust_profile.new.json @@ -0,0 +1,148 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M12.167 6.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 5h6.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.834 5h3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M7.167 11.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 10h1.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M8.834 10h8.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M14.667 16.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 15h9.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M16.334 15h.833" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/adjust_profile.obj.json b/icons-objs/adjust_profile.obj.json new file mode 100644 index 00000000..e1509ea0 --- /dev/null +++ b/icons-objs/adjust_profile.obj.json @@ -0,0 +1,152 @@ +{ + "objName": "adjust_profile", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "none", + "viewBox": "0 0 21 20" + }, + "originalSvgChildren": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M12.167 6.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 5h6.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.834 5h3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M7.167 11.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 10h1.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M8.834 10h8.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M14.667 16.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 15h9.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M16.334 15h.833" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-circle.new.json b/icons-objs/alert-circle.new.json new file mode 100644 index 00000000..b794d47e --- /dev/null +++ b/icons-objs/alert-circle.new.json @@ -0,0 +1,91 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)", + "key": "1ycjfh" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M10.5 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 6.667V10" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 13.333h.008" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-circle.obj.json b/icons-objs/alert-circle.obj.json new file mode 100644 index 00000000..2d3ec142 --- /dev/null +++ b/icons-objs/alert-circle.obj.json @@ -0,0 +1,95 @@ +{ + "objName": "alert-circle", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "red", + "viewBox": "0 0 21 20" + }, + "originalSvgChildren": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)", + "key": "1ycjfh" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M10.5 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 6.667V10" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 13.333h.008" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-red.new.json b/icons-objs/alert-red.new.json new file mode 100644 index 00000000..56a39de9 --- /dev/null +++ b/icons-objs/alert-red.new.json @@ -0,0 +1,79 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "3", + "clip-path": "url(#a)", + "key": "cm40qe" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.334 50.667h37.333a5.334 5.334 0 0 0 4.907-7.334L36.64 10.667a5.333 5.333 0 0 0-9.333 0L8.374 43.333a5.333 5.333 0 0 0 4.666 7.334" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M32 40v.027M32 24v5.333z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "64", + "height": "64", + "fill": "#fff", + "rx": "32" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-red.obj.json b/icons-objs/alert-red.obj.json new file mode 100644 index 00000000..70982694 --- /dev/null +++ b/icons-objs/alert-red.obj.json @@ -0,0 +1,83 @@ +{ + "objName": "alert-red", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "64", + "height": "64", + "fill": "none", + "viewBox": "0 0 64 64" + }, + "originalSvgChildren": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "3", + "clip-path": "url(#a)", + "key": "cm40qe" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.334 50.667h37.333a5.334 5.334 0 0 0 4.907-7.334L36.64 10.667a5.333 5.333 0 0 0-9.333 0L8.374 43.333a5.333 5.333 0 0 0 4.666 7.334" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M32 40v.027M32 24v5.333z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "64", + "height": "64", + "fill": "#fff", + "rx": "32" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-white.new.json b/icons-objs/alert-white.new.json new file mode 100644 index 00000000..189022b4 --- /dev/null +++ b/icons-objs/alert-white.new.json @@ -0,0 +1,77 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M2.5 9.5h7a1 1 0 0 0 .92-1.375L6.87 2a1 1 0 0 0-1.75 0L1.57 8.125A1 1 0 0 0 2.445 9.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M6 7.5v.005M6 4.5v1z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "12", + "height": "12", + "fill": "#fff" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert-white.obj.json b/icons-objs/alert-white.obj.json new file mode 100644 index 00000000..44efc470 --- /dev/null +++ b/icons-objs/alert-white.obj.json @@ -0,0 +1,81 @@ +{ + "objName": "alert-white", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "12", + "height": "12", + "fill": "none", + "viewBox": "0 0 12 12" + }, + "originalSvgChildren": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)", + "key": "1vif23" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M2.5 9.5h7a1 1 0 0 0 .92-1.375L6.87 2a1 1 0 0 0-1.75 0L1.57 8.125A1 1 0 0 0 2.445 9.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M6 7.5v.005M6 4.5v1z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "12", + "height": "12", + "fill": "#fff" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert.new.json b/icons-objs/alert.new.json new file mode 100644 index 00000000..2caa0101 --- /dev/null +++ b/icons-objs/alert.new.json @@ -0,0 +1,34 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M22.204 2.446.68 38.376A5.082 5.082 0 0 0 5.026 46h43.046a5.083 5.083 0 0 0 4.345-7.623L30.894 2.447a5.08 5.08 0 0 0-8.69 0Z", + "key": "1dix0z" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "5", + "d": "M26.552 15.507V25.67m0 10.165h.025", + "key": "1qd0x9" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alert.obj.json b/icons-objs/alert.obj.json new file mode 100644 index 00000000..6782adff --- /dev/null +++ b/icons-objs/alert.obj.json @@ -0,0 +1,38 @@ +{ + "objName": "alert", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "54", + "height": "46", + "fill": "red", + "viewBox": "0 0 54 46" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M22.204 2.446.68 38.376A5.082 5.082 0 0 0 5.026 46h43.046a5.083 5.083 0 0 0 4.345-7.623L30.894 2.447a5.08 5.08 0 0 0-8.69 0Z", + "key": "1dix0z" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "5", + "d": "M26.552 15.507V25.67m0 10.165h.025", + "key": "1qd0x9" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alertTriangle.new.json b/icons-objs/alertTriangle.new.json new file mode 100644 index 00000000..994233e4 --- /dev/null +++ b/icons-objs/alertTriangle.new.json @@ -0,0 +1,21 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-width": "1.3", + "d": "M14.97 10.178h-.919l.46-.46zm0 0v.65h-.65zm3.38-1.182v-.003a.7.7 0 0 0-.036-.225.4.4 0 0 0-.1-.146l-.001-.001-7.82-7.82a.5.5 0 0 0-.376-.15.46.46 0 0 0-.365.15l-.01.01-.01.009a.46.46 0 0 0-.16.357.45.45 0 0 0 .149.362l.002.001 5.807 5.808 1.11 1.11H1.726a.5.5 0 0 0-.386.15c-.1.1-.15.213-.15.383v.002c0 .172.052.286.151.386.098.098.21.15.383.149H16.54l-1.11 1.11-5.807 5.807c-.09.089-.146.203-.152.39-.004.155.04.246.13.33l.022.019.02.021a.43.43 0 0 0 .35.145c.163 0 .284-.05.4-.165l7.821-7.822a.4.4 0 0 0 .1-.146.6.6 0 0 0 .036-.221ZM.54 8.993q0 .503.34.845.342.34.846.34z", + "key": "1lc0dp" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/alertTriangle.obj.json b/icons-objs/alertTriangle.obj.json new file mode 100644 index 00000000..008544d0 --- /dev/null +++ b/icons-objs/alertTriangle.obj.json @@ -0,0 +1,25 @@ +{ + "objName": "alertTriangle", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "19", + "height": "18", + "fill": "none", + "viewBox": "0 0 19 18" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-width": "1.3", + "d": "M14.97 10.178h-.919l.46-.46zm0 0v.65h-.65zm3.38-1.182v-.003a.7.7 0 0 0-.036-.225.4.4 0 0 0-.1-.146l-.001-.001-7.82-7.82a.5.5 0 0 0-.376-.15.46.46 0 0 0-.365.15l-.01.01-.01.009a.46.46 0 0 0-.16.357.45.45 0 0 0 .149.362l.002.001 5.807 5.808 1.11 1.11H1.726a.5.5 0 0 0-.386.15c-.1.1-.15.213-.15.383v.002c0 .172.052.286.151.386.098.098.21.15.383.149H16.54l-1.11 1.11-5.807 5.807c-.09.089-.146.203-.152.39-.004.155.04.246.13.33l.022.019.02.021a.43.43 0 0 0 .35.145c.163 0 .284-.05.4-.165l7.821-7.822a.4.4 0 0 0 .1-.146.6.6 0 0 0 .036-.221ZM.54 8.993q0 .503.34.845.342.34.846.34z", + "key": "1lc0dp" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/apple.new.json b/icons-objs/apple.new.json new file mode 100644 index 00000000..21a11f14 --- /dev/null +++ b/icons-objs/apple.new.json @@ -0,0 +1,20 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "fill": "#fff", + "d": "M13.934 10.57c-.01-1.64.727-2.876 2.215-3.787-.832-1.201-2.09-1.863-3.75-1.99-1.572-.125-3.29.923-3.92.923-.665 0-2.187-.88-3.384-.88C2.625 4.875 0 6.822 0 10.783q0 1.756.637 3.625c.567 1.64 2.613 5.656 4.747 5.591 1.116-.026 1.905-.798 3.357-.798 1.41 0 2.139.798 3.383.798 2.153-.031 4.004-3.682 4.543-5.326-2.888-1.373-2.733-4.02-2.733-4.104Zm-2.506-7.332C12.638 1.79 12.528.474 12.492 0c-1.069.062-2.304.733-3.007 1.558-.775.884-1.23 1.978-1.133 3.211 1.154.089 2.208-.51 3.076-1.531", + "key": "s8x3c1" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/apple.obj.json b/icons-objs/apple.obj.json new file mode 100644 index 00000000..81208fd1 --- /dev/null +++ b/icons-objs/apple.obj.json @@ -0,0 +1,24 @@ +{ + "objName": "apple", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "17", + "height": "20", + "fill": "none", + "viewBox": "0 0 17 20" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "fill": "#fff", + "d": "M13.934 10.57c-.01-1.64.727-2.876 2.215-3.787-.832-1.201-2.09-1.863-3.75-1.99-1.572-.125-3.29.923-3.92.923-.665 0-2.187-.88-3.384-.88C2.625 4.875 0 6.822 0 10.783q0 1.756.637 3.625c.567 1.64 2.613 5.656 4.747 5.591 1.116-.026 1.905-.798 3.357-.798 1.41 0 2.139.798 3.383.798 2.153-.031 4.004-3.682 4.543-5.326-2.888-1.373-2.733-4.02-2.733-4.104Zm-2.506-7.332C12.638 1.79 12.528.474 12.492 0c-1.069.062-2.304.733-3.007 1.558-.775.884-1.23 1.978-1.133 3.211 1.154.089 2.208-.51 3.076-1.531", + "key": "s8x3c1" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow-right.new.json b/icons-objs/arrow-right.new.json new file mode 100644 index 00000000..f187d8a0 --- /dev/null +++ b/icons-objs/arrow-right.new.json @@ -0,0 +1,123 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)", + "key": "1ycjfh" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "2.25", + "clip-path": "url(#b)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M1.417 9h15.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 15.5 6.5-6.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 2.5 6.5 6.5" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "18", + "height": "18", + "fill": "#fff" + }, + "children": [] + } + ] + }, + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "b" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "26", + "height": "26", + "fill": "#fff", + "transform": "translate(-4 -4)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow-right.obj.json b/icons-objs/arrow-right.obj.json new file mode 100644 index 00000000..e1c5ef72 --- /dev/null +++ b/icons-objs/arrow-right.obj.json @@ -0,0 +1,127 @@ +{ + "objName": "arrow-right", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "18", + "fill": "none", + "viewBox": "0 0 18 18" + }, + "originalSvgChildren": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)", + "key": "1ycjfh" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "2.25", + "clip-path": "url(#b)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M1.417 9h15.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 15.5 6.5-6.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 2.5 6.5 6.5" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "key": "9ahrjx" + }, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "18", + "height": "18", + "fill": "#fff" + }, + "children": [] + } + ] + }, + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "b" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "26", + "height": "26", + "fill": "#fff", + "transform": "translate(-4 -4)" + }, + "children": [] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_down.new.json b/icons-objs/arrow_down.new.json new file mode 100644 index 00000000..b96b1eff --- /dev/null +++ b/icons-objs/arrow_down.new.json @@ -0,0 +1,24 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_down.obj.json b/icons-objs/arrow_down.obj.json new file mode 100644 index 00000000..eff5bab0 --- /dev/null +++ b/icons-objs/arrow_down.obj.json @@ -0,0 +1,28 @@ +{ + "objName": "arrow_down", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_down_variant.new.json b/icons-objs/arrow_down_variant.new.json new file mode 100644 index 00000000..b96b1eff --- /dev/null +++ b/icons-objs/arrow_down_variant.new.json @@ -0,0 +1,24 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_down_variant.obj.json b/icons-objs/arrow_down_variant.obj.json new file mode 100644 index 00000000..94ba9dc5 --- /dev/null +++ b/icons-objs/arrow_down_variant.obj.json @@ -0,0 +1,28 @@ +{ + "objName": "arrow_down_variant", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412", + "key": "dgjc2x" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_left.new.json b/icons-objs/arrow_left.new.json new file mode 100644 index 00000000..be84ae1e --- /dev/null +++ b/icons-objs/arrow_left.new.json @@ -0,0 +1,24 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M8.706 16.94.765 9l7.94-7.941", + "key": "12tmx5" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_left.obj.json b/icons-objs/arrow_left.obj.json new file mode 100644 index 00000000..a6924293 --- /dev/null +++ b/icons-objs/arrow_left.obj.json @@ -0,0 +1,28 @@ +{ + "objName": "arrow_left", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "10", + "height": "18", + "fill": "none", + "viewBox": "0 0 10 18" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M8.706 16.94.765 9l7.94-7.941", + "key": "12tmx5" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_right_ios.new.json b/icons-objs/arrow_right_ios.new.json new file mode 100644 index 00000000..805950c5 --- /dev/null +++ b/icons-objs/arrow_right_ios.new.json @@ -0,0 +1,24 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.53 1.059 9.47 9l-7.94 7.941", + "key": "akkrx1" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_right_ios.obj.json b/icons-objs/arrow_right_ios.obj.json new file mode 100644 index 00000000..67359cb2 --- /dev/null +++ b/icons-objs/arrow_right_ios.obj.json @@ -0,0 +1,28 @@ +{ + "objName": "arrow_right_ios", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "11", + "height": "18", + "fill": "none", + "viewBox": "0 0 11 18" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.53 1.059 9.47 9l-7.94 7.941", + "key": "akkrx1" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_up.new.json b/icons-objs/arrow_up.new.json new file mode 100644 index 00000000..e745e420 --- /dev/null +++ b/icons-objs/arrow_up.new.json @@ -0,0 +1,24 @@ +{ + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.059 9.53 9 1.587l7.941 7.941", + "key": "1b07nj" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/arrow_up.obj.json b/icons-objs/arrow_up.obj.json new file mode 100644 index 00000000..628a1c95 --- /dev/null +++ b/icons-objs/arrow_up.obj.json @@ -0,0 +1,28 @@ +{ + "objName": "arrow_up", + "originalAttributes": { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" + }, + "originalSvgChildren": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.059 9.53 9 1.587l7.941 7.941", + "key": "1b07nj" + }, + "children": [] + } + ] +} \ No newline at end of file diff --git a/icons-objs/text.svg b/icons-objs/text.svg new file mode 100644 index 00000000..562c972c --- /dev/null +++ b/icons-objs/text.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/icons/adjust_profile.svg b/icons/adjust_profile.svg new file mode 100644 index 00000000..9706f8c6 --- /dev/null +++ b/icons/adjust_profile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg new file mode 100644 index 00000000..efac32c9 --- /dev/null +++ b/icons/alert-circle.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/icons/alert-red.svg b/icons/alert-red.svg new file mode 100644 index 00000000..fd5edfce --- /dev/null +++ b/icons/alert-red.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + diff --git a/icons/alert-white.svg b/icons/alert-white.svg new file mode 100644 index 00000000..ba038e40 --- /dev/null +++ b/icons/alert-white.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/icons/alert.svg b/icons/alert.svg new file mode 100644 index 00000000..eb675e81 --- /dev/null +++ b/icons/alert.svg @@ -0,0 +1,16 @@ + + + + diff --git a/icons/alertTriangle.svg b/icons/alertTriangle.svg new file mode 100644 index 00000000..8bf5ddba --- /dev/null +++ b/icons/alertTriangle.svg @@ -0,0 +1,13 @@ + + + diff --git a/icons/apple.svg b/icons/apple.svg new file mode 100644 index 00000000..5aa30c14 --- /dev/null +++ b/icons/apple.svg @@ -0,0 +1,12 @@ + + + diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg new file mode 100644 index 00000000..0312dd6f --- /dev/null +++ b/icons/arrow-right.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/arrow_down.svg b/icons/arrow_down.svg new file mode 100644 index 00000000..99b4ee4a --- /dev/null +++ b/icons/arrow_down.svg @@ -0,0 +1,16 @@ + + + diff --git a/icons/arrow_down_variant.svg b/icons/arrow_down_variant.svg new file mode 100644 index 00000000..99b4ee4a --- /dev/null +++ b/icons/arrow_down_variant.svg @@ -0,0 +1,16 @@ + + + diff --git a/icons/arrow_left.svg b/icons/arrow_left.svg new file mode 100644 index 00000000..475620f1 --- /dev/null +++ b/icons/arrow_left.svg @@ -0,0 +1,16 @@ + + + diff --git a/icons/arrow_right_ios.svg b/icons/arrow_right_ios.svg new file mode 100644 index 00000000..d5a0a69b --- /dev/null +++ b/icons/arrow_right_ios.svg @@ -0,0 +1,16 @@ + + + diff --git a/icons/arrow_up.svg b/icons/arrow_up.svg new file mode 100644 index 00000000..3a34e816 --- /dev/null +++ b/icons/arrow_up.svg @@ -0,0 +1,16 @@ + + + diff --git a/package.json b/package.json index 832d451b..5f913d16 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,11 @@ "types": "dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", + "o:svgs": "node ./scripts/optimizeSvgs.mjs", + "gen:svgs": "node ./scripts/generateIcons.mjs", + "gen:nodes": "node ./scripts/writeIconNodes.mjs", + "gen:objs": "node ./scripts/writeSvgObjs.mjs", + "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", @@ -49,6 +54,7 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.7", + "svgo": "^3.3.2", "tailwindcss": "^3.4.1", "typescript": "^4.9.4", "webpack": "^5.75.0" @@ -69,7 +75,9 @@ "@changesets/cli": "^2.27.1", "clsx": "^2.1.0", "concurrently": "^8.2.2", + "minimist": "^1.2.8", "rollup": "^4.9.6", + "svgson": "^5.3.1", "tailwind-merge": "^2.2.1", "tinycolor2": "^1.6.0", "tsup": "^8.0.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4f97a56a..a670337a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,2250 +1,1218 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false -dependencies: - '@changesets/cli': - specifier: ^2.27.1 - version: 2.27.1 - clsx: - specifier: ^2.1.0 - version: 2.1.0 - concurrently: - specifier: ^8.2.2 - version: 8.2.2 - rollup: - specifier: ^4.9.6 - version: 4.9.6 - tailwind-merge: - specifier: ^2.2.1 - version: 2.2.1 - tinycolor2: - specifier: ^1.6.0 - version: 1.6.0 - tsup: - specifier: ^8.0.1 - version: 8.0.1(@swc/core@1.3.103)(postcss@8.4.33)(typescript@4.9.5) - -devDependencies: - '@storybook/addon-essentials': - specifier: ^7.6.7 - version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-interactions': - specifier: ^7.6.7 - version: 7.6.8 - '@storybook/addon-links': - specifier: ^7.6.7 - version: 7.6.8(react@18.2.0) - '@storybook/addon-onboarding': - specifier: ^1.0.10 - version: 1.0.10(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-postcss': - specifier: ^2.0.0 - version: 2.0.0(webpack@5.89.0) - '@storybook/addon-styling-webpack': - specifier: ^0.0.6 - version: 0.0.6(webpack@5.89.0) - '@storybook/blocks': - specifier: ^7.6.7 - version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@storybook/cli': - specifier: ^7.6.7 - version: 7.6.8 - '@storybook/react': - specifier: ^7.6.7 - version: 7.6.8(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@storybook/react-webpack5': - specifier: ^7.6.7 - version: 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@storybook/test': - specifier: ^7.6.7 - version: 7.6.8 - '@types/react': - specifier: ^18.0.26 - version: 18.2.48 - '@types/react-dom': - specifier: ^18.0.10 - version: 18.2.18 - autoprefixer: - specifier: ^10.4.17 - version: 10.4.17(postcss@8.4.33) - babel-loader: - specifier: ^9.1.0 - version: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0) - chromatic: - specifier: ^10.6.1 - version: 10.6.1 - css-loader: - specifier: ^6.7.3 - version: 6.9.0(webpack@5.89.0) - husky: - specifier: ^8.0.2 - version: 8.0.3 - postcss: - specifier: ^8.4.33 - version: 8.4.33 - react: - specifier: ^18.2.0 - version: 18.2.0 - react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) - storybook: - specifier: ^7.6.7 - version: 7.6.8 - tailwindcss: - specifier: ^3.4.1 - version: 3.4.1 - typescript: - specifier: ^4.9.4 - version: 4.9.5 - webpack: - specifier: ^5.75.0 - version: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) +importers: + + .: + dependencies: + '@changesets/cli': + specifier: ^2.27.1 + version: 2.27.1 + clsx: + specifier: ^2.1.0 + version: 2.1.0 + concurrently: + specifier: ^8.2.2 + version: 8.2.2 + rollup: + specifier: ^4.9.6 + version: 4.9.6 + tailwind-merge: + specifier: ^2.2.1 + version: 2.2.1 + tinycolor2: + specifier: ^1.6.0 + version: 1.6.0 + tsup: + specifier: ^8.0.1 + version: 8.0.1(@swc/core@1.3.103)(postcss@8.4.38)(typescript@4.9.5) + devDependencies: + '@storybook/addon-essentials': + specifier: ^7.6.7 + version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-interactions': + specifier: ^7.6.7 + version: 7.6.8 + '@storybook/addon-links': + specifier: ^7.6.7 + version: 7.6.8(react@18.2.0) + '@storybook/addon-onboarding': + specifier: ^1.0.10 + version: 1.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-postcss': + specifier: ^2.0.0 + version: 2.0.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + '@storybook/addon-styling-webpack': + specifier: ^0.0.6 + version: 0.0.6(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + '@storybook/blocks': + specifier: ^7.6.7 + version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/cli': + specifier: ^7.6.7 + version: 7.6.8 + '@storybook/react': + specifier: ^7.6.7 + version: 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) + '@storybook/react-webpack5': + specifier: ^7.6.7 + version: 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0) + '@storybook/test': + specifier: ^7.6.7 + version: 7.6.8 + '@types/react': + specifier: ^18.0.26 + version: 18.2.48 + '@types/react-dom': + specifier: ^18.0.10 + version: 18.2.18 + autoprefixer: + specifier: ^10.4.17 + version: 10.4.17(postcss@8.4.38) + babel-loader: + specifier: ^9.1.0 + version: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + chromatic: + specifier: ^10.6.1 + version: 10.6.1 + css-loader: + specifier: ^6.7.3 + version: 6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + husky: + specifier: ^8.0.2 + version: 8.0.3 + postcss: + specifier: ^8.4.38 + version: 8.4.38 + react: + specifier: ^18.2.0 + version: 18.2.0 + react-dom: + specifier: ^18.2.0 + version: 18.2.0(react@18.2.0) + storybook: + specifier: ^7.6.7 + version: 7.6.8 + svgo: + specifier: ^3.3.2 + version: 3.3.2 + tailwindcss: + specifier: ^3.4.1 + version: 3.4.1 + typescript: + specifier: ^4.9.4 + version: 4.9.5 + webpack: + specifier: ^5.75.0 + version: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) packages: - /@adobe/css-tools@4.3.2: + '@adobe/css-tools@4.3.2': resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==} - dev: true - /@alloc/quick-lru@5.2.0: + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - dev: true - /@ampproject/remapping@2.2.1: + '@ampproject/remapping@2.2.1': resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - dev: true - /@aw-web-design/x-default-browser@1.4.126: + '@aw-web-design/x-default-browser@1.4.126': resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} hasBin: true - dependencies: - default-browser-id: 3.0.0 - dev: true - /@babel/code-frame@7.23.5: + '@babel/code-frame@7.23.5': resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - /@babel/compat-data@7.23.5: + '@babel/compat-data@7.23.5': resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} - dev: true - /@babel/core@7.23.7: + '@babel/core@7.23.7': resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helpers': 7.23.8 - '@babel/parser': 7.23.6 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - convert-source-map: 2.0.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/generator@7.23.6: + '@babel/generator@7.23.6': resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - jsesc: 2.5.2 - dev: true - /@babel/helper-annotate-as-pure@7.22.5: + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-compilation-targets@7.23.6: + '@babel/helper-compilation-targets@7.23.6': resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true - /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7): + '@babel/helper-create-class-features-plugin@7.23.7': resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7): + '@babel/helper-create-regexp-features-plugin@7.22.15': resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - dev: true - /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7): + '@babel/helper-define-polyfill-provider@0.4.4': resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-environment-visitor@7.22.20: + '@babel/helper-environment-visitor@7.22.20': resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-function-name@7.23.0: + '@babel/helper-function-name@7.23.0': resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - dev: true - /@babel/helper-hoist-variables@7.22.5: + '@babel/helper-hoist-variables@7.22.5': resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-member-expression-to-functions@7.23.0: + '@babel/helper-member-expression-to-functions@7.23.0': resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-module-imports@7.22.15: + '@babel/helper-module-imports@7.22.15': resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - dev: true - /@babel/helper-optimise-call-expression@7.22.5: + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-plugin-utils@7.22.5: + '@babel/helper-plugin-utils@7.22.5': resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7): + '@babel/helper-remap-async-to-generator@7.22.20': resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7): + '@babel/helper-replace-supers@7.22.20': resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - dev: true - /@babel/helper-simple-access@7.22.5: + '@babel/helper-simple-access@7.22.5': resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-split-export-declaration@7.22.6: + '@babel/helper-split-export-declaration@7.22.6': resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-string-parser@7.23.4: + '@babel/helper-string-parser@7.23.4': resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-validator-identifier@7.22.20: + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.23.5: + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-wrap-function@7.22.20: + '@babel/helper-wrap-function@7.22.20': resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - dev: true - /@babel/helpers@7.23.8: + '@babel/helpers@7.23.8': resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/highlight@7.23.4: + '@babel/highlight@7.23.4': resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/parser@7.23.6: + '@babel/parser@7.23.6': resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} hasBin: true - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7): + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7): + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) - dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7): + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7': resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7): + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7): + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7): + '@babel/plugin-syntax-class-properties@7.12.13': resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7): + '@babel/plugin-syntax-class-static-block@7.14.5': resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-dynamic-import@7.8.3': resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-export-namespace-from@7.8.3': resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7): + '@babel/plugin-syntax-flow@7.23.3': resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7): + '@babel/plugin-syntax-import-assertions@7.23.3': resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7): + '@babel/plugin-syntax-import-attributes@7.23.3': resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7): + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-json-strings@7.8.3': resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7): + '@babel/plugin-syntax-jsx@7.23.3': resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7): + '@babel/plugin-syntax-numeric-separator@7.10.4': resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-object-rest-spread@7.8.3': resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-optional-catch-binding@7.8.3': resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7): + '@babel/plugin-syntax-optional-chaining@7.8.3': resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7): + '@babel/plugin-syntax-private-property-in-object@7.14.5': resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7): + '@babel/plugin-syntax-top-level-await@7.14.5': resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7): + '@babel/plugin-syntax-typescript@7.23.3': resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7): + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-arrow-functions@7.23.3': resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7): + '@babel/plugin-transform-async-generator-functions@7.23.7': resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-async-to-generator@7.23.3': resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-block-scoped-functions@7.23.3': resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-block-scoping@7.23.4': resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-class-properties@7.23.3': resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-class-static-block@7.23.4': resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7): + '@babel/plugin-transform-classes@7.23.8': resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - dev: true - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-computed-properties@7.23.3': resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - dev: true - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-destructuring@7.23.3': resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-dotall-regex@7.23.3': resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-duplicate-keys@7.23.3': resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-dynamic-import@7.23.4': resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-exponentiation-operator@7.23.3': resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-export-namespace-from@7.23.4': resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-flow-strip-types@7.23.3': resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7): + '@babel/plugin-transform-for-of@7.23.6': resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-function-name@7.23.3': resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-json-strings@7.23.4': resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-literals@7.23.3': resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-logical-assignment-operators@7.23.4': resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-member-expression-literals@7.23.3': resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-modules-amd@7.23.3': resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-modules-commonjs@7.23.3': resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - dev: true - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-modules-systemjs@7.23.3': resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - dev: true - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-modules-umd@7.23.3': resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7): + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-new-target@7.23.3': resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4': resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-numeric-separator@7.23.4': resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-object-rest-spread@7.23.4': resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-object-super@7.23.3': resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-optional-catch-binding@7.23.4': resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-optional-chaining@7.23.4': resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-parameters@7.23.3': resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-private-methods@7.23.3': resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-private-property-in-object@7.23.4': resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-property-literals@7.23.3': resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-react-display-name@7.23.3': resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7): + '@babel/plugin-transform-react-jsx-development@7.22.5': resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7): + '@babel/plugin-transform-react-jsx@7.23.4': resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) - '@babel/types': 7.23.6 - dev: true - /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-react-pure-annotations@7.23.3': resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-regenerator@7.23.3': resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 - dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-reserved-words@7.23.3': resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-shorthand-properties@7.23.3': resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-spread@7.23.3': resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-sticky-regex@7.23.3': resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-template-literals@7.23.3': resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-typeof-symbol@7.23.3': resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7): + '@babel/plugin-transform-typescript@7.23.6': resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) - dev: true - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-unicode-escapes@7.23.3': resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-unicode-property-regex@7.23.3': resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-unicode-regex@7.23.3': resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7): + '@babel/plugin-transform-unicode-sets-regex@7.23.3': resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/preset-env@7.23.8(@babel/core@7.23.7): + '@babel/preset-env@7.23.8': resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7) - babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7) - babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7) - core-js-compat: 3.35.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-flow@7.23.3(@babel/core@7.23.7): + '@babel/preset-flow@7.23.3': resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7) - dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7): + '@babel/preset-modules@0.1.6-no-external-plugins': resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.6 - esutils: 2.0.3 - dev: true - /@babel/preset-react@7.23.3(@babel/core@7.23.7): + '@babel/preset-react@7.23.3': resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7) - '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7) - dev: true - /@babel/preset-typescript@7.23.3(@babel/core@7.23.7): + '@babel/preset-typescript@7.23.3': resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7) - dev: true - /@babel/register@7.23.7(@babel/core@7.23.7): + '@babel/register@7.23.7': resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.7 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.6 - source-map-support: 0.5.21 - dev: true - /@babel/regjsgen@0.8.0: + '@babel/regjsgen@0.8.0': resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - dev: true - /@babel/runtime@7.23.8: + '@babel/runtime@7.23.8': resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.14.1 - /@babel/template@7.22.15: + '@babel/template@7.22.15': resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - dev: true - /@babel/traverse@7.23.7: + '@babel/traverse@7.23.7': resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/types@7.23.6: + '@babel/types@7.23.6': resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - dev: true - /@base2/pretty-print-object@1.0.1: + '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - dev: true - /@changesets/apply-release-plan@7.0.0: + '@changesets/apply-release-plan@7.0.0': resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/config': 3.0.0 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 2.8.8 - resolve-from: 5.0.0 - semver: 7.5.4 - dev: false - /@changesets/assemble-release-plan@6.0.0: + '@changesets/assemble-release-plan@6.0.0': resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - semver: 7.5.4 - dev: false - /@changesets/changelog-git@0.2.0: + '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - dependencies: - '@changesets/types': 6.0.0 - dev: false - /@changesets/cli@2.27.1: + '@changesets/cli@2.27.1': resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} hasBin: true - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/apply-release-plan': 7.0.0 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.0 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/get-release-plan': 4.0.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@changesets/write': 0.3.0 - '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.6 - ansi-colors: 4.1.3 - chalk: 2.4.2 - ci-info: 3.9.0 - enquirer: 2.4.1 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.1.2 - resolve-from: 5.0.0 - semver: 7.5.4 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 4.2.3 - dev: false - /@changesets/config@3.0.0: + '@changesets/config@3.0.0': resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} - dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/logger': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - dev: false - /@changesets/errors@0.2.0: + '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - dependencies: - extendable-error: 0.1.7 - dev: false - /@changesets/get-dependents-graph@2.0.0: + '@changesets/get-dependents-graph@2.0.0': resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} - dependencies: - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.5.4 - dev: false - /@changesets/get-release-plan@4.0.0: + '@changesets/get-release-plan@4.0.0': resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/config': 3.0.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - dev: false - /@changesets/get-version-range-type@0.4.0: + '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - dev: false - /@changesets/git@3.0.0: + '@changesets/git@3.0.0': resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - is-subdir: 1.2.0 - micromatch: 4.0.5 - spawndamnit: 2.0.0 - dev: false - /@changesets/logger@0.1.0: + '@changesets/logger@0.1.0': resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} - dependencies: - chalk: 2.4.2 - dev: false - /@changesets/parse@0.4.0: + '@changesets/parse@0.4.0': resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - dependencies: - '@changesets/types': 6.0.0 - js-yaml: 3.14.1 - dev: false - /@changesets/pre@2.0.0: + '@changesets/pre@2.0.0': resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - dev: false - /@changesets/read@0.6.0: + '@changesets/read@0.6.0': resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/parse': 0.4.0 - '@changesets/types': 6.0.0 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - dev: false - /@changesets/types@4.1.0: + '@changesets/types@4.1.0': resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: false - /@changesets/types@6.0.0: + '@changesets/types@6.0.0': resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - dev: false - /@changesets/write@0.3.0: + '@changesets/write@0.3.0': resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 6.0.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 2.8.8 - dev: false - /@colors/colors@1.5.0: + '@colors/colors@1.5.0': resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - requiresBuild: true - dev: true - optional: true - /@discoveryjs/json-ext@0.5.7: + '@discoveryjs/json-ext@0.5.7': resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} - dev: true - /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): + '@emotion/use-insertion-effect-with-fallbacks@1.0.1': resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: react: '>=16.8.0' - dependencies: - react: 18.2.0 - dev: true - /@esbuild/aix-ppc64@0.19.11: + '@esbuild/aix-ppc64@0.19.11': resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} engines: {node: '>=12'} cpu: [ppc64] os: [aix] - requiresBuild: true - optional: true - /@esbuild/android-arm64@0.18.20: + '@esbuild/android-arm64@0.18.20': resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/android-arm64@0.19.11: + '@esbuild/android-arm64@0.19.11': resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} engines: {node: '>=12'} cpu: [arm64] os: [android] - requiresBuild: true - optional: true - /@esbuild/android-arm@0.18.20: + '@esbuild/android-arm@0.18.20': resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} cpu: [arm] os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/android-arm@0.19.11: + '@esbuild/android-arm@0.19.11': resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} engines: {node: '>=12'} cpu: [arm] os: [android] - requiresBuild: true - optional: true - /@esbuild/android-x64@0.18.20: + '@esbuild/android-x64@0.18.20': resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} cpu: [x64] os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/android-x64@0.19.11: + '@esbuild/android-x64@0.19.11': resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} engines: {node: '>=12'} cpu: [x64] os: [android] - requiresBuild: true - optional: true - /@esbuild/darwin-arm64@0.18.20: + '@esbuild/darwin-arm64@0.18.20': resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] - requiresBuild: true - dev: true - optional: true - /@esbuild/darwin-arm64@0.19.11: + '@esbuild/darwin-arm64@0.19.11': resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] - requiresBuild: true - optional: true - /@esbuild/darwin-x64@0.18.20: + '@esbuild/darwin-x64@0.18.20': resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} cpu: [x64] os: [darwin] - requiresBuild: true - dev: true - optional: true - /@esbuild/darwin-x64@0.19.11: + '@esbuild/darwin-x64@0.19.11': resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} engines: {node: '>=12'} cpu: [x64] os: [darwin] - requiresBuild: true - optional: true - /@esbuild/freebsd-arm64@0.18.20: + '@esbuild/freebsd-arm64@0.18.20': resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/freebsd-arm64@0.19.11: + '@esbuild/freebsd-arm64@0.19.11': resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/freebsd-x64@0.18.20: + '@esbuild/freebsd-x64@0.18.20': resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/freebsd-x64@0.19.11: + '@esbuild/freebsd-x64@0.19.11': resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/linux-arm64@0.18.20: + '@esbuild/linux-arm64@0.18.20': resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} cpu: [arm64] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-arm64@0.19.11: + '@esbuild/linux-arm64@0.19.11': resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} engines: {node: '>=12'} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-arm@0.18.20: + '@esbuild/linux-arm@0.18.20': resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} engines: {node: '>=12'} cpu: [arm] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-arm@0.19.11: + '@esbuild/linux-arm@0.19.11': resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} engines: {node: '>=12'} cpu: [arm] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ia32@0.18.20: + '@esbuild/linux-ia32@0.18.20': resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-ia32@0.19.11: + '@esbuild/linux-ia32@0.19.11': resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-loong64@0.18.20: + '@esbuild/linux-loong64@0.18.20': resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} engines: {node: '>=12'} cpu: [loong64] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-loong64@0.19.11: + '@esbuild/linux-loong64@0.19.11': resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} engines: {node: '>=12'} cpu: [loong64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-mips64el@0.18.20: + '@esbuild/linux-mips64el@0.18.20': resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-mips64el@0.19.11: + '@esbuild/linux-mips64el@0.19.11': resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ppc64@0.18.20: + '@esbuild/linux-ppc64@0.18.20': resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-ppc64@0.19.11: + '@esbuild/linux-ppc64@0.19.11': resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-riscv64@0.18.20: + '@esbuild/linux-riscv64@0.18.20': resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-riscv64@0.19.11: + '@esbuild/linux-riscv64@0.19.11': resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-s390x@0.18.20: + '@esbuild/linux-s390x@0.18.20': resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-s390x@0.19.11: + '@esbuild/linux-s390x@0.19.11': resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} engines: {node: '>=12'} cpu: [s390x] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-x64@0.18.20: + '@esbuild/linux-x64@0.18.20': resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} cpu: [x64] os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-x64@0.19.11: + '@esbuild/linux-x64@0.19.11': resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} engines: {node: '>=12'} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/netbsd-x64@0.18.20: + '@esbuild/netbsd-x64@0.18.20': resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/netbsd-x64@0.19.11: + '@esbuild/netbsd-x64@0.19.11': resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] - requiresBuild: true - optional: true - /@esbuild/openbsd-x64@0.18.20: + '@esbuild/openbsd-x64@0.18.20': resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/openbsd-x64@0.19.11: + '@esbuild/openbsd-x64@0.19.11': resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] - requiresBuild: true - optional: true - /@esbuild/sunos-x64@0.18.20: + '@esbuild/sunos-x64@0.18.20': resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] - requiresBuild: true - dev: true - optional: true - /@esbuild/sunos-x64@0.19.11: + '@esbuild/sunos-x64@0.19.11': resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] - requiresBuild: true - optional: true - /@esbuild/win32-arm64@0.18.20: + '@esbuild/win32-arm64@0.18.20': resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-arm64@0.19.11: + '@esbuild/win32-arm64@0.19.11': resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-ia32@0.18.20: + '@esbuild/win32-ia32@0.18.20': resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} engines: {node: '>=12'} cpu: [ia32] os: [win32] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-ia32@0.19.11: + '@esbuild/win32-ia32@0.19.11': resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} engines: {node: '>=12'} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-x64@0.18.20: + '@esbuild/win32-x64@0.18.20': resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-x64@0.19.11: + '@esbuild/win32-x64@0.19.11': resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} engines: {node: '>=12'} cpu: [x64] os: [win32] - requiresBuild: true - optional: true - /@fal-works/esbuild-plugin-global-externals@2.1.2: + '@fal-works/esbuild-plugin-global-externals@2.1.2': resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - dev: true - /@floating-ui/core@1.5.3: + '@floating-ui/core@1.5.3': resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==} - dependencies: - '@floating-ui/utils': 0.2.1 - dev: true - /@floating-ui/dom@1.5.4: + '@floating-ui/dom@1.5.4': resolution: {integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==} - dependencies: - '@floating-ui/core': 1.5.3 - '@floating-ui/utils': 0.2.1 - dev: true - /@floating-ui/react-dom@2.0.5(react-dom@18.2.0)(react@18.2.0): + '@floating-ui/react-dom@2.0.5': resolution: {integrity: sha512-UsBK30Bg+s6+nsgblXtZmwHhgS2vmbuQK22qgt2pTQM6M3X6H1+cQcLXqgRY3ihVLcZJE6IvqDQozhsnIVqK/Q==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - dependencies: - '@floating-ui/dom': 1.5.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@floating-ui/utils@0.2.1: + '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} - dev: true - /@isaacs/cliui@8.0.2: + '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - dependencies: - string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 - /@istanbuljs/load-nyc-config@1.1.0: + '@istanbuljs/load-nyc-config@1.1.0': resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - dev: true - /@istanbuljs/schema@0.1.3: + '@istanbuljs/schema@0.1.3': resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - dev: true - /@jest/schemas@29.6.3: + '@jest/schemas@29.6.3': resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@sinclair/typebox': 0.27.8 - dev: true - /@jest/transform@29.7.0: + '@jest/transform@29.7.0': resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.23.7 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.21 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/types@27.5.1: + '@jest/types@27.5.1': resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.11.1 - '@types/yargs': 16.0.9 - chalk: 4.1.2 - dev: true - /@jest/types@29.6.3: + '@jest/types@29.6.3': resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.11.1 - '@types/yargs': 17.0.32 - chalk: 4.1.2 - dev: true - /@jridgewell/gen-mapping@0.3.3: + '@jridgewell/gen-mapping@0.3.3': resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.21 - /@jridgewell/resolve-uri@3.1.1: + '@jridgewell/resolve-uri@3.1.1': resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} - /@jridgewell/set-array@1.1.2: + '@jridgewell/set-array@1.1.2': resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - /@jridgewell/source-map@0.3.5: + '@jridgewell/source-map@0.3.5': resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - dev: true - /@jridgewell/sourcemap-codec@1.4.15: + '@jridgewell/sourcemap-codec@1.4.15': resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.21: + '@jridgewell/trace-mapping@0.3.21': resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==} - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - /@juggle/resize-observer@3.4.0: + '@juggle/resize-observer@3.4.0': resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} - dev: true - /@manypkg/find-root@1.1.0: + '@manypkg/find-root@1.1.0': resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - dependencies: - '@babel/runtime': 7.23.8 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - dev: false - /@manypkg/get-packages@1.1.3: + '@manypkg/get-packages@1.1.3': resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - dev: false - /@mdx-js/react@2.3.0(react@18.2.0): + '@mdx-js/react@2.3.0': resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} peerDependencies: react: '>=16' - dependencies: - '@types/mdx': 2.0.10 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@ndelangen/get-tarball@3.0.9: + '@ndelangen/get-tarball@3.0.9': resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - dependencies: - gunzip-maybe: 1.4.2 - pump: 3.0.0 - tar-fs: 2.1.1 - dev: true - /@nodelib/fs.scandir@2.1.5: + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - /@nodelib/fs.stat@2.0.5: + '@nodelib/fs.stat@2.0.5': resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} engines: {node: '>= 8'} - /@nodelib/fs.walk@1.2.8: + '@nodelib/fs.walk@1.2.8': resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.16.0 - /@pkgjs/parseargs@0.11.0: + '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - requiresBuild: true - optional: true - /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.89.0): + '@pmmmwh/react-refresh-webpack-plugin@0.5.11': resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==} engines: {node: '>= 10.13'} peerDependencies: @@ -2269,33 +1237,14 @@ packages: optional: true webpack-plugin-serve: optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.35.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.4.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /@radix-ui/number@1.0.1: + '@radix-ui/number@1.0.1': resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} - dependencies: - '@babel/runtime': 7.23.8 - dev: true - /@radix-ui/primitive@1.0.1: + '@radix-ui/primitive@1.0.1': resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} - dependencies: - '@babel/runtime': 7.23.8 - dev: true - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-arrow@1.0.3': resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: '@types/react': '*' @@ -2307,16 +1256,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-collection@1.0.3': resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: '@types/react': '*' @@ -2328,19 +1269,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-compose-refs@1.0.1': resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' @@ -2348,13 +1278,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-context@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-context@1.0.1': resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' @@ -2362,13 +1287,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-direction@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-direction@1.0.1': resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' @@ -2376,13 +1296,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-dismissable-layer@1.0.4': resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: '@types/react': '*' @@ -2394,20 +1309,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-focus-guards@1.0.1': resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' @@ -2415,13 +1318,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-focus-scope@1.0.3': resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: '@types/react': '*' @@ -2433,18 +1331,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-id@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-id@1.0.1': resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' @@ -2452,14 +1340,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-popper@1.1.2': resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: '@types/react': '*' @@ -2471,25 +1353,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@floating-ui/react-dom': 2.0.5(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-portal@1.0.3': resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: '@types/react': '*' @@ -2501,16 +1366,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-primitive@1.0.3': resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: '@types/react': '*' @@ -2522,16 +1379,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-roving-focus@1.0.4': resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: '@types/react': '*' @@ -2543,24 +1392,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-select@1.2.2': resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} peerDependencies: '@types/react': '*' @@ -2572,36 +1405,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0) - dev: true - /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-separator@1.0.3': resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: '@types/react': '*' @@ -2613,16 +1418,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-slot@1.0.2(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-slot@1.0.2': resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' @@ -2630,14 +1427,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-toggle-group@1.0.4': resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: '@types/react': '*' @@ -2649,22 +1440,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-toggle@1.0.3': resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: '@types/react': '*' @@ -2676,18 +1453,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-toolbar@1.0.4': resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} peerDependencies: '@types/react': '*' @@ -2699,22 +1466,8 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-callback-ref@1.0.1': resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' @@ -2722,13 +1475,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-controllable-state@1.0.1': resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' @@ -2736,14 +1484,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-escape-keydown@1.0.3': resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' @@ -2751,14 +1493,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-layout-effect@1.0.1': resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' @@ -2766,13 +1502,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-previous@1.0.1': resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' @@ -2780,13 +1511,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-rect@1.0.1': resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' @@ -2794,14 +1520,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.48)(react@18.2.0): + '@radix-ui/react-use-size@1.0.1': resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' @@ -2809,14 +1529,8 @@ packages: peerDependenciesMeta: '@types/react': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@types/react': 18.2.48 - react: 18.2.0 - dev: true - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): + '@radix-ui/react-visually-hidden@1.0.3': resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: '@types/react': '*' @@ -2828,131 +1542,5715 @@ packages: optional: true '@types/react-dom': optional: true - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/rect@1.0.1: + '@radix-ui/rect@1.0.1': resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} - dependencies: - '@babel/runtime': 7.23.8 - dev: true - /@rollup/rollup-android-arm-eabi@4.9.6: + '@rollup/rollup-android-arm-eabi@4.9.6': resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==} cpu: [arm] os: [android] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-android-arm64@4.9.6: + '@rollup/rollup-android-arm64@4.9.6': resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==} cpu: [arm64] os: [android] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-darwin-arm64@4.9.6: + '@rollup/rollup-darwin-arm64@4.9.6': resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==} cpu: [arm64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-darwin-x64@4.9.6: + '@rollup/rollup-darwin-x64@4.9.6': resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==} cpu: [x64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.9.6: + '@rollup/rollup-linux-arm-gnueabihf@4.9.6': resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==} cpu: [arm] os: [linux] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-linux-arm64-gnu@4.9.6: + '@rollup/rollup-linux-arm64-gnu@4.9.6': resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==} cpu: [arm64] os: [linux] - requiresBuild: true - dev: false - optional: true - /@rollup/rollup-linux-arm64-musl@4.9.6: + '@rollup/rollup-linux-arm64-musl@4.9.6': resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==} cpu: [arm64] os: [linux] - requiresBuild: true - dev: false + + '@rollup/rollup-linux-riscv64-gnu@4.9.6': + resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.9.6': + resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.9.6': + resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.9.6': + resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.9.6': + resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.9.6': + resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==} + cpu: [x64] + os: [win32] + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@storybook/addon-actions@7.6.8': + resolution: {integrity: sha512-/KQlr/nLsAazJuSVUoMjQdwAeeXkKEtElKdqXrqI1LVOi5a7kMgB+bmn9aKX+7VBQLfQ36Btyty+FaY7bRtehQ==} + + '@storybook/addon-backgrounds@7.6.8': + resolution: {integrity: sha512-b+Oj41z2W/Pv6oCXmcjGdNkOStbVItrlDoIeUGyDKrngzH9Kpv5u2XZTHkZWGWusLhOVq8ENBDqj6ENRL6kDtw==} + + '@storybook/addon-controls@7.6.8': + resolution: {integrity: sha512-vjBwO1KbjB3l74qOVvLvks4LJjAIStr2n4j7Grdhqf2eeQvj122gT51dXstndtMNFqNHD4y3eImwNAbuaYrrnw==} + + '@storybook/addon-docs@7.6.8': + resolution: {integrity: sha512-vl7jNKT8x8Hnwn38l5cUr6TQZFCmx09VxarGUrMEO4mwTOoVRL2ofoh9JKFXhCiCHlMI9R0lnupGB/LAplWgPg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/addon-essentials@7.6.8': + resolution: {integrity: sha512-UoRZWPkDYL/UWsfAJk4q4nn5nayYdOvPApVsF/ZDnGsiv1zB2RpqbkiD1bfxPlGEVCoB+NQIN2s867gEpf+DjA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/addon-highlight@7.6.8': + resolution: {integrity: sha512-3mUfdLxaegCKWSm0i245RhnmEgkE+uLnOkE7h2kiztrWGqYuzGBKjgfZuVrftqsEWWc7LlJ1xdDZsIgs5Z06gA==} + + '@storybook/addon-interactions@7.6.8': + resolution: {integrity: sha512-E1ZMrJ/4larCPW92AFuY71I9s8Ri+DEdwNtVnU/WV55NA+E9oRKt5/qOrJLcjQorViwh9KOHeeuc8kagA2hjnA==} + + '@storybook/addon-links@7.6.8': + resolution: {integrity: sha512-lw+xMvzfhyOR5I5792rGCf31OfVsiNG+uCc6CEewjKdC+e4GZDXzAkLIrLVUvbf6iUvHzERD63Y5nKz2bt5yZA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + react: + optional: true + + '@storybook/addon-measure@7.6.8': + resolution: {integrity: sha512-76ItcwATq3BRPEtGV5Apby3E+7tOn6d5dtNpBYBZOdjUsj6E+uFtdmfHrc1Bt1ersJ7hRDCgsHArqOGXeLuDrw==} + + '@storybook/addon-onboarding@1.0.10': + resolution: {integrity: sha512-tK7JjJYIpOM4LowBoIM/8ymYQ70qVRmu7pGqSOQ82AW15ob5u36HJ753y0hVH/KPj6k7J1aSgAEgVGXLmgwvKw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/addon-outline@7.6.8': + resolution: {integrity: sha512-eTHreyvxYLIPt5AbMyDO3CEgGClQFt+CtA/RgSjpyv9MgYXPsZp/h1ZHpYYhSPRYnRE4//YnPMuk7eLf4udaag==} + + '@storybook/addon-postcss@2.0.0': + resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==} + engines: {node: '>=10', yarn: ^1.17.0} + + '@storybook/addon-styling-webpack@0.0.6': + resolution: {integrity: sha512-JjM2FXFiHpjbJsp7nRUEMhYBRpK6ukBKsbtWzCrAGOfUgoElcGwPY8KhSKSnRknIhebonGK1bxalh3u8bGZ/dw==} + peerDependencies: + webpack: ^5.0.0 + + '@storybook/addon-toolbars@7.6.8': + resolution: {integrity: sha512-Akr9Pfw+AzQBRPVdo8yjcdS4IiOyEIBPVn/OAcbLi6a2zLYBdn99yKi21P0o03TJjNy32A254iAQQ7zyjIwEtA==} + + '@storybook/addon-viewport@7.6.8': + resolution: {integrity: sha512-9fvaTudqTA7HYygOWq8gnlmR5XLLjMgK4RoZqMP8OhzX0Vkkg72knPI8lyrnHwze/yMcR1e2lmbdLm55rPq6QA==} + + '@storybook/blocks@7.6.8': + resolution: {integrity: sha512-9cjwqj+VLmVHD8lU1xIGbZiu2xPQ3A+cAobmam045wvEB/wYhcrF0K0lBwHLqUWTcNdOzZy5uaoaCu/1G5AmDg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/builder-manager@7.6.8': + resolution: {integrity: sha512-4CZo1RHPlDJA7G+lJoVdi+/3/L1ERxVxtvwuGgk8CxVDt6vFNpoc7fEGryNv3GRzKN1/luNYNU1MTnCUSn0B2g==} + + '@storybook/builder-webpack5@7.6.8': + resolution: {integrity: sha512-g4gYcHrrV/8Xve4Q/DJfXk8Bxkq5cxzy7KIBkb8PK5h+MFUiS/xoZc5qXk/WuX256zj2JnZRV//2yf61OhNd6g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/channels@7.6.8': + resolution: {integrity: sha512-aPgQcSjeyZDhAfr/slCphVfYGCihxuFCaCVlZuJA4uTaGEUkn+kPW2jP0yLtlSN33J79wFXsMLPQYwIS3aQ4Ew==} + + '@storybook/cli@7.6.8': + resolution: {integrity: sha512-Is8nkgsbIOu+Jk9Z7x5sgMPgGs9RTVDum3cz9eA4UspPiIBJsf7nGHAWOtc+mCIm6Z3eeNbT1YMOWxz9EuqboA==} + hasBin: true + + '@storybook/client-logger@7.6.8': + resolution: {integrity: sha512-WyK+RNSYk+sy0pxk8np1MnUXSWFdy54WqtT7u64vDFs9Jxfa1oMZ+Vl6XhaFQYR++tKC7VabLcI6vZ0pOoE9Jw==} + + '@storybook/codemod@7.6.8': + resolution: {integrity: sha512-3Gk+ZsD35DUgqbbRNdX547kzZK/ajIbgwynmR0FuPhZhhZuYI4+2eMNzdmI/Oe9Nov4R16senQuAZjw/Dc5LrA==} + + '@storybook/components@7.6.8': + resolution: {integrity: sha512-ghrQkws7F2s9xwdiQq2ezQoOozCiYF9g/vnh+qttd4UgKqXDWoILb8LJGKtS7C0u0vV/Ui59EYUyDIVBT6wHlw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/core-client@7.6.8': + resolution: {integrity: sha512-Avt0R0F9U+PEndPS23LHyIBxbwVCeF/VCIuIfD1eTYwE9nSLzvJXqlxARfFyhYV43LQcC5fIKjxfrsyUjM5vbQ==} + + '@storybook/core-common@7.6.8': + resolution: {integrity: sha512-TRbiv5AF2m88ixyh31yqn6FgWDYZO6e6IxbJolRvEKD4b9opfPJ5e1ocb/QPz9sBUmsrX59ghMjO8R6dDYzdwA==} + + '@storybook/core-events@7.6.8': + resolution: {integrity: sha512-c1onJHG71JKbU4hMZC31rVTSbcfhcXaB0ikGnb7rJzlUZ1YkWnb0wf0/ikQR0seDOpR3HS+WQ0M3FIpqANyETg==} + + '@storybook/core-server@7.6.8': + resolution: {integrity: sha512-/csAFNuAhF11f6D9neYNavmKPFK/ZxTskaktc4iDwBRgBM95kZ6DBFjg9ErRi5Q8Z/i92wk6qORkq4bkN/lI9w==} + + '@storybook/core-webpack@7.6.8': + resolution: {integrity: sha512-UOTW2WhKmB8baCLc1eRssmz11sBv+iDRyS2WFK+WONkiGy3pQrpxfq2OVXXMFYkSHGXqj/jSKfKXSmNQBbkyAQ==} + + '@storybook/csf-plugin@7.6.8': + resolution: {integrity: sha512-KYh7VwTHhXz/V9weuGY3pK9messE56TJHUD+0SO9dF2BVNKsKpAOVcjzrE6masiAFX35Dz/t9ywy8iFcfAo0dg==} + + '@storybook/csf-tools@7.6.8': + resolution: {integrity: sha512-ea6QnQRvhPOpSUbfioLlJYRLpJldNZcocgUJwOJ/e3TM6M67BZBzeDnVOJkuUKejrp++KF22GEIkbGAWErIlnA==} + + '@storybook/csf@0.1.2': + resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==} + + '@storybook/docs-mdx@0.1.0': + resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} + + '@storybook/docs-tools@7.6.8': + resolution: {integrity: sha512-zIbrje4JLFpfK05y3SkDNtIth/vTOEaJVa/zaHuwS1gUX73Pq3jwF2eMGVabeVWi6hvxGeZXhnIsymh/Hpbn5w==} + + '@storybook/global@5.0.0': + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + + '@storybook/instrumenter@7.6.8': + resolution: {integrity: sha512-AZZoMmQJ753uIeNJpjV+qUSREMu1gfucqslo858uPxpWwhWmr6pI9a5V19w5sedGXT/I9WiTt8hQVmkg4lsWbA==} + + '@storybook/manager-api@7.6.8': + resolution: {integrity: sha512-BGVZb0wMTd8Hi8rUYPRzdIhWRw73qXlEupwEYyGtH63sg+aD67wyAo8/pMEpQBH4kVss7VheWY2JGpRJeFVUxw==} + + '@storybook/manager@7.6.8': + resolution: {integrity: sha512-INoXXoHXyw9PPMJAOAhwf9u2GNDDNdv1JAI1fhrbCAECzDabHT9lRVUo6v8I5XMc+YdMHLM1Vz38DbB+w18hFw==} + + '@storybook/mdx2-csf@1.1.0': + resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} + + '@storybook/node-logger@6.5.16': + resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + + '@storybook/node-logger@7.6.8': + resolution: {integrity: sha512-SVvwZAcOLdkstqnAbE5hVYsriXh6OXjLcwFEBpAYi1meQ0R70iNALVSPEfIDK1r7M163Jngsq2hRnHvbLoQNkg==} + + '@storybook/postinstall@7.6.8': + resolution: {integrity: sha512-9ixyNpoT1w3WmSooCzndAWDnw4fENA1WUBcdqrzlcgaSBKiAHad1k/Yct/uBAU95l/uQ13NgXK3mx4+S6unx/g==} + + '@storybook/preset-react-webpack@7.6.8': + resolution: {integrity: sha512-S7z2IKonfZyvaETPwDHaOsw2hnG6Kny6aVnWj1/oAMHLRkAo08v/uxXc3of27HmCng3sKoPtEKypQa6yV863MA==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + + '@storybook/preview-api@7.6.8': + resolution: {integrity: sha512-rtP9Yo8ZV1NWhtA3xCOAb1vU70KCV3D2U4E3rOb2prqJ2CEQ/MQbrB7KUTDRSQdT7VFbjsLQWVCTUcNo29U8JQ==} + + '@storybook/preview@7.6.8': + resolution: {integrity: sha512-f54EXmJcIkc5A7nQmtnCUtNFNfEOoTuPYFK7pDfcK/bVU+g63zzWhBAeIUZ8yioLKGqZPTzFEhXkpa+OqsT0Jg==} + + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': + resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} + peerDependencies: + typescript: '>= 4.x' + webpack: '>= 4' + + '@storybook/react-dom-shim@7.6.8': + resolution: {integrity: sha512-NIvtjdXCTwd0VA/zCaCuCYv7L35nze7qDsFW6JhSHyqB7fKyIEMSbluktO2VISotHOSkgZ2zA+rGpk3O8yh6lg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/react-webpack5@7.6.8': + resolution: {integrity: sha512-wE4dTeqLmahPLJ+QScTp32JDWd/FY/hvZjok9KFoKfLcdpsjQc7nG/MQrq6Sl+Gv5QdqxSxnuWusOzlBFM2XEg==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + + '@storybook/react@7.6.8': + resolution: {integrity: sha512-yMqcCNskCxqoYSGWO1qu6Jdju9zhEEwd8tOC7AgIC8sAB7K8FTxZu0d6+QFpeg9fGq+hyAmRM4GrT9Fq9IKwwQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/router@7.6.8': + resolution: {integrity: sha512-pFoq22w1kEwduqMpGX3FPSSukdWLMX6UQa2Cw4MDW+hzp3vhC7+3MVaBG5ShQAjGv46NNcSgsIUkyarlU5wd/A==} + + '@storybook/telemetry@7.6.8': + resolution: {integrity: sha512-hHUS3fyHjKR3ZdbG+/OVI+pwXXKOmS8L8GMuWKlpUovvCYBLm0/Q0MUQ9XaLuByOCzvAurqB3Owp3ZV7GiY30Q==} + + '@storybook/test@7.6.8': + resolution: {integrity: sha512-8TnWp0r3C/2OJur/VPBkjxFRPbpIgsCNACHbZHEz7+7U/NSj02K9nn6Q84kk6fT9qSSJU24csGKNk3fU8bDPfA==} + + '@storybook/theming@7.6.8': + resolution: {integrity: sha512-0ervBgeYGieifjISlFS7x5QZF9vNgLtHHlYKdkrAsACTK+VfB0JglVwFdLrgzAKxQRlVompaxl3TecFGWlvhtw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/types@7.6.8': + resolution: {integrity: sha512-+mABX20OhwJjqULocG5Betfidwrlk+Kq+grti+LAYwYsdBwxctBNSrqK8P9r8XDFL6PbppZeExGiHKwGu6WsKQ==} + + '@swc/core-darwin-arm64@1.3.103': + resolution: {integrity: sha512-Dqqz48mvdm/3PHPPA6YeAEofkF9H5Krgqd/baPf0dXcarzng6U9Ilv2aCtDjq7dfI9jfkVCW5zuwq98PE2GEdw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.3.103': + resolution: {integrity: sha512-mhUVSCEAyFLqtrDtwr9qPbe891J8cKxq53CD873/ZsUnyasHMPyWXzTvy9qjmbYyfDIArm6fGqjF5YsDKwGGNg==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm-gnueabihf@1.3.103': + resolution: {integrity: sha512-rYLmwxr01ZHOI6AzooqwB0DOkMm0oU8Jznk6uutV1lHgcwyxsNiC1Css8yf77Xr/sYTvKvuTfBjThqa5H716pA==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/core-linux-arm64-gnu@1.3.103': + resolution: {integrity: sha512-w+5XFpUqxiAGUBiyRyYR28Ghddp5uVyo+dHAkCnY1u3V6RsZkY3vRwmoXT7/HxVGV7csodJ1P9Cp9VaRnNvTKA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-arm64-musl@1.3.103': + resolution: {integrity: sha512-lS5p8ewAIar7adX6t0OrkICTcw92PXrn3ZmYyG5hvfjUg4RPQFjMfFMDQSne32ZJhGXHBf0LVm1R8wHwkcpwgA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-x64-gnu@1.3.103': + resolution: {integrity: sha512-Lf2cHDoEPNB6TwexHBEZCsAO2C7beb0YljhtQS+QfjWLLVqCiwt5LRCPuKN2Bav7el9KZXOI5baXedUeFj0oFg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-linux-x64-musl@1.3.103': + resolution: {integrity: sha512-HR1Y9iiLEO3F49P47vjbHczBza9RbdXWRWC8NpcOcGJ4Wnw0c2DLWAh416fGH3VYCF/19EuglLEXhvSj0NXGuA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-win32-arm64-msvc@1.3.103': + resolution: {integrity: sha512-3/GfROD1GPyf2hi6R0l4iZ5nrrKG8IU29hYhZCb7r0ZqhL/58kktVPlkib8X/EAJI8xbhM/NMl76h8ElrnyH5w==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.3.103': + resolution: {integrity: sha512-9ejEFjfgPi0ibNmtuiRbYq9p4RRV6oH1DN9XjkYM8zh2qHlpZHKQZ3n4eHS0VtJO4rEGZxL8ebcnTNs62wqJig==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.3.103': + resolution: {integrity: sha512-/1RvaOmZolXurWAUdnELYynVlFUiT0hj3PyTPoo+YK6+KV7er4EqUalRsoUf3zzGepQuhKFZFDpQn6Xi9kJX1A==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.3.103': + resolution: {integrity: sha512-PYtt8KzRXIFDwxeD7BA9ylmXNQ4hRVcmDVuAmL3yvL9rgx7Tn3qn6T37wiMVZnP1OjqGyhuHRPNycd+ssr+byw==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.2': + resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} + + '@swc/types@0.1.5': + resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/jest-dom@6.2.0': + resolution: {integrity: sha512-+BVQlJ9cmEn5RDMUS8c2+TU6giLvzaHZ8sU/x0Jj7fk+6/46wPdwlgOPcpxS17CjcanBi/3VmGMqVr2rmbUmNw==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' + peerDependenciesMeta: + '@jest/globals': + optional: true + '@types/jest': + optional: true + jest: + optional: true + vitest: + optional: true + + '@testing-library/user-event@14.3.0': + resolution: {integrity: sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.5': + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/chai@4.3.11': + resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/cross-spawn@6.0.6': + resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} + + '@types/detect-port@1.3.5': + resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} + + '@types/doctrine@0.0.3': + resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} + + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + + '@types/ejs@3.1.5': + resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} + + '@types/emscripten@1.39.10': + resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==} + + '@types/escodegen@0.0.6': + resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@8.56.2': + resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} + + '@types/estree@0.0.51': + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/express-serve-static-core@4.17.41': + resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/find-cache-dir@3.2.1': + resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/lodash@4.14.202': + resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} + + '@types/mdx@2.0.10': + resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==} + + '@types/mime-types@2.1.4': + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/mime@3.0.4': + resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/node-fetch@2.6.10': + resolution: {integrity: sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@18.19.7': + resolution: {integrity: sha512-IGRJfoNX10N/PfrReRZ1br/7SQ+2vF/tK3KXNwzXz82D32z5dMQEoOlFew18nLSN+vMNcLY4GrKfzwi/yWI8/w==} + + '@types/node@20.11.1': + resolution: {integrity: sha512-DsXojJUES2M+FE8CpptJTKpg+r54moV9ZEncPstni1WHFmTcCzeFLnMFfyhCVS8XNOy/OQG+8lVxRLRrVHmV5A==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/npmlog@4.1.6': + resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/pretty-hrtime@1.0.3': + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + + '@types/prop-types@15.7.11': + resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} + + '@types/qs@6.9.11': + resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-dom@18.2.18': + resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} + + '@types/react@18.2.48': + resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} + + '@types/resolve@1.20.6': + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + + '@types/scheduler@0.16.8': + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + + '@types/semver@7.5.6': + resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-static@1.15.5': + resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/uuid@9.0.7': + resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@16.0.9': + resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@vitest/expect@0.34.7': + resolution: {integrity: sha512-G9iEtwrD6ZQ4MVHZufif9Iqz3eLtuwBBNx971fNAGPaugM7ftAWjQN+ob2zWhtzURp8RK3zGXOxVb01mFo3zAQ==} + + '@vitest/spy@0.34.7': + resolution: {integrity: sha512-NMMSzOY2d8L0mcOt4XcliDOS1ISyGlAXuQtERWVOoVHnKwmG+kKhinAiGw3dTtMQWybfa89FG8Ucg9tiC/FhTQ==} + + '@vitest/utils@0.34.7': + resolution: {integrity: sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==} + + '@webassemblyjs/ast@1.11.6': + resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.11.6': + resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.11.6': + resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.11.6': + resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + + '@webassemblyjs/wasm-gen@1.11.6': + resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + + '@webassemblyjs/wasm-opt@1.11.6': + resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + + '@webassemblyjs/wasm-parser@1.11.6': + resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + + '@webassemblyjs/wast-printer@1.11.6': + resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': + resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} + engines: {node: '>=14.15.0'} + peerDependencies: + esbuild: '>=0.10.0' + + '@yarnpkg/fslib@2.10.3': + resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + '@yarnpkg/libzip@2.3.0': + resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + + address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} + + agent-base@5.1.1: + resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + engines: {node: '>= 6.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + app-root-dir@1.0.2: + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + + aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + + are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + aria-hidden@1.2.3: + resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} + engines: {node: '>=10'} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + assert@2.1.0: + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + + assertion-error@1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + + ast-types@0.16.1: + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} + + async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + + async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + autoprefixer@10.4.17: + resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-loader@9.1.3: + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + + babel-plugin-add-react-displayname@0.0.5: + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-polyfill-corejs2@0.4.7: + resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.8.7: + resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.5.4: + resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + better-opn@3.0.2: + resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} + engines: {node: '>=12.0.0'} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + body-parser@1.20.1: + resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + bplist-parser@0.2.0: + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} + engines: {node: '>= 5.10.0'} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + + breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + + browser-assert@1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + + browserify-zlib@0.1.4: + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + + browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + bundle-require@4.0.2: + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.17' + + bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001576: + resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} + + caniuse-lite@1.0.30001579: + resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} + + case-sensitive-paths-webpack-plugin@2.4.0: + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} + + chai@4.4.1: + resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} + engines: {node: '>=4'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + check-error@1.0.3: + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + + chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + chromatic@10.6.1: + resolution: {integrity: sha512-bd4C5sEEtN83uUmbc4Fu+x7+lJIPdMUdu4D6HRDQEIDl/Tatc8+By4bZluH1pzg/MbP9vllkL6Ua9vF4EEA7VA==} + hasBin: true + peerDependencies: + chromatic-cypress: ^0.4.0 || ^1.0.0 + chromatic-playwright: ^0.4.0 || ^1.0.0 + peerDependenciesMeta: + chromatic-cypress: + optional: true + chromatic-playwright: + optional: true + + chrome-trace-event@1.0.3: + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + citty@0.1.5: + resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==} + + clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-table3@0.6.3: + resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} + engines: {node: 10.* || >= 12.*} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clsx@2.1.0: + resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} + engines: {node: '>=6'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression@1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + concurrently@8.2.2: + resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==} + engines: {node: ^14.13.0 || >=16.0.0} + hasBin: true + + consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + constants-browserify@1.0.0: + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + + core-js-compat@3.35.0: + resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==} + + core-js-pure@3.35.0: + resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==} + + core-js@3.35.1: + resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + + css-loader@3.6.0: + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + css-loader@6.9.0: + resolution: {integrity: sha512-3I5Nu4ytWlHvOP6zItjiHlefBNtrH+oehq8tnQa2kO305qpVyx9XNIT1CXIj5bgCJs7qICBCkgCYxQLKPANoLA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + + csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + + csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + + csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} + + date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + + deep-eql@4.1.3: + resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} + engines: {node: '>=6'} + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-browser-id@3.0.0: + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} + engines: {node: '>=12'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + del@6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-node-es@1.1.0: + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + + detect-package-manager@2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} + + detect-port@1.5.1: + resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} + hasBin: true + + didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + + dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + + dotenv@16.3.1: + resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} + engines: {node: '>=12'} + + duplexify@3.7.1: + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.9: + resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.4.630: + resolution: {integrity: sha512-osHqhtjojpCsACVnuD11xO5g9xaCyw7Qqn/C2KParkMv42i8jrJJgx3g7mkHfpxwhy9MnOJr8+pKOdZ7qzgizg==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + endent@2.1.0: + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + + enhanced-resolve@5.15.0: + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} + engines: {node: '>=10.13.0'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + envinfo@7.11.0: + resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==} + engines: {node: '>=4'} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-module-lexer@1.4.1: + resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} + + es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + + es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + + esbuild-plugin-alias@0.2.1: + resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} + + esbuild-register@3.5.0: + resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} + peerDependencies: + esbuild: '>=0.12 <1' + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.19.11: + resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + express@4.18.2: + resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} + engines: {node: '>= 0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + extract-zip@1.7.0: + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + hasBin: true + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-parse@1.0.3: + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fetch-retry@5.0.6: + resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} + + file-system-cache@2.3.0: + resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + + find-cache-dir@4.0.0: + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-up@6.3.0: + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + + flow-parser@0.226.0: + resolution: {integrity: sha512-YlH+Y/P/5s0S7Vg14RwXlJMF/JsGfkG7gcKB/zljyoqaPNX9YVsGzx+g6MLTbhZaWbPhs4347aTpmSb9GgiPtw==} + engines: {node: '>=0.4.0'} + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + + fork-ts-checker-webpack-plugin@8.0.0: + resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + webpack: ^5.11.0 + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@11.1.1: + resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} + engines: {node: '>=14.14'} + + fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs-monkey@1.0.5: + resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gauge@3.0.2: + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-func-name@2.0.2: + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + + get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + + get-nonce@1.0.1: + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} + + get-npm-tarball-url@2.1.0: + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} + engines: {node: '>=12.17'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + + giget@1.2.1: + resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==} + hasBin: true + + github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + + gunzip-maybe@1.4.2: + resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} + hasBin: true + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + + has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + html-entities@2.4.0: + resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==} + + html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true + + html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} + + html-webpack-plugin@5.6.0: + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: ^5.20.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + https-proxy-agent@4.0.0: + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} + + human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + icss-utils@4.1.1: + resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} + engines: {node: '>= 6'} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} + engines: {node: '>= 4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ip@2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} + + is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + + is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + + is-deflate@1.0.0: + resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-gzip@1.0.0: + resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} + engines: {node: '>=0.10.0'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-map@2.0.2: + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + + is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + + is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-set@2.0.2: + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + + is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-weakmap@2.0.1: + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + + is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + + is-weakset@2.0.2: + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + + jake@10.8.7: + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + engines: {node: '>=10'} + hasBin: true + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@27.5.1: + resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + jscodeshift@0.15.1: + resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + peerDependenciesMeta: + '@babel/preset-env': + optional: true + + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + + jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + lazy-universal-dotenv@4.0.0: + resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} + engines: {node: '>=14.0.0'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + load-tsconfig@0.2.5: + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.sortby@4.7.0: + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@2.3.7: + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-string@0.30.5: + resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} + engines: {node: '>=12'} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + map-or-similar@1.5.0: + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + + markdown-to-jsx@7.4.0: + resolution: {integrity: sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==} + engines: {node: '>= 10'} + peerDependencies: + react: '>= 0.14.0' + + mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + + mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memoizerific@1.11.3: + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + + meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-fetch-native@1.6.1: + resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + npmlog@5.0.1: + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nypm@0.3.4: + resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + + object-is@1.1.5: + resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + objectorarray@1.0.5: + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + + ohash@1.1.3: + resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathval@1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + + peek-stream@1.1.3: + resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + picocolors@0.2.1: + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + + picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} + + pkg-dir@7.0.0: + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} + + polished@4.2.2: + resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} + engines: {node: '>=10'} + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-loader@4.3.0: + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^4.0.0 || ^5.0.0 + + postcss-modules-extract-imports@2.0.0: + resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} + engines: {node: '>= 6'} + + postcss-modules-extract-imports@3.0.0: + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@3.0.3: + resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} + engines: {node: '>= 6'} + + postcss-modules-local-by-default@4.0.3: + resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@2.2.0: + resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} + engines: {node: '>= 6'} + + postcss-modules-scope@3.1.0: + resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@3.0.0: + resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-nested@6.0.1: + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@7.0.39: + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} + + postcss@8.4.38: + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + engines: {node: ^10 || ^12 || >=14} + + preferred-pm@3.1.2: + resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} + engines: {node: '>=10'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + pump@2.0.1: + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + + pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + + pumpify@1.5.1: + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + puppeteer-core@2.1.1: + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + qs@6.11.2: + resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} + engines: {node: '>=0.6'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + ramda@0.29.0: + resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + + react-colorful@5.6.1: + resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + react-confetti@6.1.0: + resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==} + engines: {node: '>=10.18'} + peerDependencies: + react: ^16.3.0 || ^17.0.1 || ^18.0.0 + + react-docgen-typescript@2.2.2: + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' + + react-docgen@7.0.3: + resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} + engines: {node: '>=16.14.0'} + + react-dom@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + + react-element-to-jsx-string@15.0.0: + resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.1.0: + resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} + + react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + + react-refresh@0.14.0: + resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} + engines: {node: '>=0.10.0'} + + react-remove-scroll-bar@2.3.4: + resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-remove-scroll@2.5.5: + resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-style-singleton@2.2.1: + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + recast@0.23.4: + resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} + engines: {node: '>= 4'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + + regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} + + regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} + + regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + remark-external-links@8.0.0: + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + + remark-slug@6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + + renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + hasBin: true + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + + rollup@4.9.6: + resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + + safe-array-concat@1.1.0: + resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-regex-test@1.0.2: + resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + + schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.0: + resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-update-notifier@2.0.0: + resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + engines: {node: '>=10'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true + + source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + source-map@0.8.0-beta.0: + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + spawn-command@0.0.2: + resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} + + spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + + store2@2.14.2: + resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} + + storybook@7.6.8: + resolution: {integrity: sha512-ugRtDSs2eTgHMOZ3wKXbUEbPnlJ2XImPbnvxNssK14py2mHKwPnhSqLNrjlQMkmkO13GdjalLDyj4lZtoYdo0Q==} + hasBin: true + + stream-shift@1.0.2: + resolution: {integrity: sha512-rV4Bovi9xx0BFzOb/X0B2GqoIjvqPCttZdu0Wgtx2Dxkj7ETyWl9gmqJ4EutWRLvtZWm8dxE+InQZX1IryZn/w==} + + stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + + string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.0.0: + resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-loader@1.3.0: + resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + swc-loader@0.2.3: + resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} + peerDependencies: + '@swc/core': ^1.2.147 + webpack: '>=2' + + synchronous-promise@2.0.17: + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + + tailwind-merge@2.2.1: + resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} + + tailwindcss@3.4.1: + resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} + engines: {node: '>=14.0.0'} + hasBin: true + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar@6.2.0: + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} + engines: {node: '>=10'} + + telejson@7.2.0: + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + + temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + tempy@1.0.1: + resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} + engines: {node: '>=10'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + terser-webpack-plugin@5.3.10: + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@5.26.0: + resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + tiny-invariant@1.3.1: + resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinyspy@2.2.0: + resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} + engines: {node: '>=14.0.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + tocbot@4.25.0: + resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@1.0.1: + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + + tsup@8.0.1: + resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 + postcss: ^8.4.12 + typescript: '>=4.5.0' + peerDependenciesMeta: + '@microsoft/api-extractor': + optional: true + '@swc/core': + optional: true + postcss: + optional: true + typescript: + optional: true + + tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} + hasBin: true + + tween-functions@1.2.0: + resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + + type-fest@0.16.0: + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + ufo@1.3.2: + resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} + + uglify-js@3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + + unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + + unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + + unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unplugin@1.6.0: + resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==} + + untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + + update-browserslist-db@1.0.13: + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + + use-callback-ref@1.3.1: + resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-resize-observer@9.1.0: + resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} + peerDependencies: + react: 16.8.0 - 18 + react-dom: 16.8.0 - 18 + + use-sidecar@1.1.2: + resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util@0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + + utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + hasBin: true + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + watchpack@2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@4.0.2: + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + + webpack-dev-middleware@6.1.1: + resolution: {integrity: sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: ^5.0.0 + peerDependenciesMeta: + webpack: + optional: true + + webpack-hot-middleware@2.26.0: + resolution: {integrity: sha512-okzjec5sAEy4t+7rzdT8eRyxsk0FDSmBPN2KwX4Qd+6+oQCfe5Ve07+u7cJvofgB+B4w5/4dO4Pz0jhhHyyPLQ==} + + webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + + webpack-virtual-modules@0.5.0: + resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} + + webpack-virtual-modules@0.6.1: + resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} + + webpack@5.89.0: + resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + whatwg-url@7.1.0: + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + + which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + + which-collection@1.0.1: + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-pm@2.0.0: + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + engines: {node: '>=8.15'} + + which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ws@6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + +snapshots: + + '@adobe/css-tools@4.3.2': {} + + '@alloc/quick-lru@5.2.0': {} + + '@ampproject/remapping@2.2.1': + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.21 + + '@aw-web-design/x-default-browser@1.4.126': + dependencies: + default-browser-id: 3.0.0 + + '@babel/code-frame@7.23.5': + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 + + '@babel/compat-data@7.23.5': {} + + '@babel/core@7.23.7': + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.8 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.23.6': + dependencies: + '@babel/types': 7.23.6 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.21 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.22.5': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-compilation-targets@7.23.6': + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.22.20': {} + + '@babel/helper-function-name@7.23.0': + dependencies: + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + + '@babel/helper-hoist-variables@7.22.5': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-member-expression-to-functions@7.23.0': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-module-imports@7.22.15': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + + '@babel/helper-optimise-call-expression@7.22.5': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-plugin-utils@7.22.5': {} + + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 + + '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + + '@babel/helper-simple-access@7.22.5': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-split-export-declaration@7.22.6': + dependencies: + '@babel/types': 7.23.6 + + '@babel/helper-string-parser@7.23.4': {} + + '@babel/helper-validator-identifier@7.22.20': {} + + '@babel/helper-validator-option@7.23.5': {} + + '@babel/helper-wrap-function@7.22.20': + dependencies: + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + + '@babel/helpers@7.23.8': + dependencies: + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + transitivePeerDependencies: + - supports-color + + '@babel/highlight@7.23.4': + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + + '@babel/parser@7.23.6': + dependencies: + '@babel/types': 7.23.6 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + + '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) + + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + + '@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 + + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7) + + '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + + '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + + '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + + '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + + '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) + + '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) + + '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) + + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/types': 7.23.6 + + '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + regenerator-transform: 0.15.2 + + '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) + + '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/preset-env@7.23.8(@babel/core@7.23.7)': + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.23.7 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7) + babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7) + babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7) + core-js-compat: 3.35.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-flow@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7) + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.23.6 + esutils: 2.0.3 + + '@babel/preset-react@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7) + '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7) + + '@babel/preset-typescript@7.23.3(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7) + + '@babel/register@7.23.7(@babel/core@7.23.7)': + dependencies: + '@babel/core': 7.23.7 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 + + '@babel/regjsgen@0.8.0': {} + + '@babel/runtime@7.23.8': + dependencies: + regenerator-runtime: 0.14.1 + + '@babel/template@7.22.15': + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + + '@babel/traverse@7.23.7': + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.23.6': + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + + '@base2/pretty-print-object@1.0.1': {} + + '@changesets/apply-release-plan@7.0.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/config': 3.0.0 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 2.8.8 + resolve-from: 5.0.0 + semver: 7.5.4 + + '@changesets/assemble-release-plan@6.0.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + semver: 7.5.4 + + '@changesets/changelog-git@0.2.0': + dependencies: + '@changesets/types': 6.0.0 + + '@changesets/cli@2.27.1': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/apply-release-plan': 7.0.0 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/changelog-git': 0.2.0 + '@changesets/config': 3.0.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/get-release-plan': 4.0.0 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@changesets/write': 0.3.0 + '@manypkg/get-packages': 1.1.3 + '@types/semver': 7.5.6 + ansi-colors: 4.1.3 + chalk: 2.4.2 + ci-info: 3.9.0 + enquirer: 2.4.1 + external-editor: 3.1.0 + fs-extra: 7.0.1 + human-id: 1.0.2 + meow: 6.1.1 + outdent: 0.5.0 + p-limit: 2.3.0 + preferred-pm: 3.1.2 + resolve-from: 5.0.0 + semver: 7.5.4 + spawndamnit: 2.0.0 + term-size: 2.2.1 + tty-table: 4.2.3 + + '@changesets/config@3.0.0': + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/logger': 0.1.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.5 + + '@changesets/errors@0.2.0': + dependencies: + extendable-error: 0.1.7 + + '@changesets/get-dependents-graph@2.0.0': + dependencies: + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + chalk: 2.4.2 + fs-extra: 7.0.1 + semver: 7.5.4 + + '@changesets/get-release-plan@4.0.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/config': 3.0.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + + '@changesets/get-version-range-type@0.4.0': {} + + '@changesets/git@3.0.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + is-subdir: 1.2.0 + micromatch: 4.0.5 + spawndamnit: 2.0.0 + + '@changesets/logger@0.1.0': + dependencies: + chalk: 2.4.2 + + '@changesets/parse@0.4.0': + dependencies: + '@changesets/types': 6.0.0 + js-yaml: 3.14.1 + + '@changesets/pre@2.0.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + + '@changesets/read@0.6.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/parse': 0.4.0 + '@changesets/types': 6.0.0 + chalk: 2.4.2 + fs-extra: 7.0.1 + p-filter: 2.1.0 + + '@changesets/types@4.1.0': {} + + '@changesets/types@6.0.0': {} + + '@changesets/write@0.3.0': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/types': 6.0.0 + fs-extra: 7.0.1 + human-id: 1.0.2 + prettier: 2.8.8 + + '@colors/colors@1.5.0': + optional: true + + '@discoveryjs/json-ext@0.5.7': {} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + dependencies: + react: 18.2.0 + + '@esbuild/aix-ppc64@0.19.11': + optional: true + + '@esbuild/android-arm64@0.18.20': + optional: true + + '@esbuild/android-arm64@0.19.11': + optional: true + + '@esbuild/android-arm@0.18.20': + optional: true + + '@esbuild/android-arm@0.19.11': + optional: true + + '@esbuild/android-x64@0.18.20': + optional: true + + '@esbuild/android-x64@0.19.11': + optional: true + + '@esbuild/darwin-arm64@0.18.20': + optional: true + + '@esbuild/darwin-arm64@0.19.11': + optional: true + + '@esbuild/darwin-x64@0.18.20': + optional: true + + '@esbuild/darwin-x64@0.19.11': + optional: true + + '@esbuild/freebsd-arm64@0.18.20': + optional: true + + '@esbuild/freebsd-arm64@0.19.11': + optional: true + + '@esbuild/freebsd-x64@0.18.20': + optional: true + + '@esbuild/freebsd-x64@0.19.11': + optional: true + + '@esbuild/linux-arm64@0.18.20': + optional: true + + '@esbuild/linux-arm64@0.19.11': + optional: true + + '@esbuild/linux-arm@0.18.20': + optional: true + + '@esbuild/linux-arm@0.19.11': + optional: true + + '@esbuild/linux-ia32@0.18.20': + optional: true + + '@esbuild/linux-ia32@0.19.11': + optional: true + + '@esbuild/linux-loong64@0.18.20': + optional: true + + '@esbuild/linux-loong64@0.19.11': + optional: true + + '@esbuild/linux-mips64el@0.18.20': + optional: true + + '@esbuild/linux-mips64el@0.19.11': + optional: true + + '@esbuild/linux-ppc64@0.18.20': + optional: true + + '@esbuild/linux-ppc64@0.19.11': + optional: true + + '@esbuild/linux-riscv64@0.18.20': + optional: true + + '@esbuild/linux-riscv64@0.19.11': + optional: true + + '@esbuild/linux-s390x@0.18.20': + optional: true + + '@esbuild/linux-s390x@0.19.11': + optional: true + + '@esbuild/linux-x64@0.18.20': + optional: true + + '@esbuild/linux-x64@0.19.11': + optional: true + + '@esbuild/netbsd-x64@0.18.20': + optional: true + + '@esbuild/netbsd-x64@0.19.11': + optional: true + + '@esbuild/openbsd-x64@0.18.20': + optional: true + + '@esbuild/openbsd-x64@0.19.11': + optional: true + + '@esbuild/sunos-x64@0.18.20': + optional: true + + '@esbuild/sunos-x64@0.19.11': + optional: true + + '@esbuild/win32-arm64@0.18.20': + optional: true + + '@esbuild/win32-arm64@0.19.11': + optional: true + + '@esbuild/win32-ia32@0.18.20': + optional: true + + '@esbuild/win32-ia32@0.19.11': + optional: true + + '@esbuild/win32-x64@0.18.20': + optional: true + + '@esbuild/win32-x64@0.19.11': + optional: true + + '@fal-works/esbuild-plugin-global-externals@2.1.2': {} + + '@floating-ui/core@1.5.3': + dependencies: + '@floating-ui/utils': 0.2.1 + + '@floating-ui/dom@1.5.4': + dependencies: + '@floating-ui/core': 1.5.3 + '@floating-ui/utils': 0.2.1 + + '@floating-ui/react-dom@2.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@floating-ui/dom': 1.5.4 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@floating-ui/utils@0.2.1': {} + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/transform@29.7.0': + dependencies: + '@babel/core': 7.23.7 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.21 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@27.5.1': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.11.1 + '@types/yargs': 16.0.9 + chalk: 4.1.2 + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.11.1 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.3': + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.21 + + '@jridgewell/resolve-uri@3.1.1': {} + + '@jridgewell/set-array@1.1.2': {} + + '@jridgewell/source-map@0.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.21 + + '@jridgewell/sourcemap-codec@1.4.15': {} + + '@jridgewell/trace-mapping@0.3.21': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@juggle/resize-observer@3.4.0': {} + + '@manypkg/find-root@1.1.0': + dependencies: + '@babel/runtime': 7.23.8 + '@types/node': 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 + + '@manypkg/get-packages@1.1.3': + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 + + '@mdx-js/react@2.3.0(react@18.2.0)': + dependencies: + '@types/mdx': 2.0.10 + '@types/react': 18.2.48 + react: 18.2.0 + + '@ndelangen/get-tarball@3.0.9': + dependencies: + gunzip-maybe: 1.4.2 + pump: 3.0.0 + tar-fs: 2.1.1 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(type-fest@2.19.0)(webpack-hot-middleware@2.26.0)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.35.0 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.4.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) + optionalDependencies: + type-fest: 2.19.0 + webpack-hot-middleware: 2.26.0 + + '@radix-ui/number@1.0.1': + dependencies: + '@babel/runtime': 7.23.8 + + '@radix-ui/primitive@1.0.1': + dependencies: + '@babel/runtime': 7.23.8 + + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-context@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-direction@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-id@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@floating-ui/react-dom': 2.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/rect': 1.0.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + aria-hidden: 1.2.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-slot@1.0.2(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/rect': 1.0.1 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-use-size@1.0.1(@types/react@18.2.48)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) + react: 18.2.0 + optionalDependencies: + '@types/react': 18.2.48 + + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.8 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.2.48 + '@types/react-dom': 18.2.18 + + '@radix-ui/rect@1.0.1': + dependencies: + '@babel/runtime': 7.23.8 + + '@rollup/rollup-android-arm-eabi@4.9.6': + optional: true + + '@rollup/rollup-android-arm64@4.9.6': + optional: true + + '@rollup/rollup-darwin-arm64@4.9.6': + optional: true + + '@rollup/rollup-darwin-x64@4.9.6': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.9.6': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.9.6': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.9.6': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.9.6: - resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: false + '@rollup/rollup-linux-riscv64-gnu@4.9.6': optional: true - /@rollup/rollup-linux-x64-gnu@4.9.6: - resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@rollup/rollup-linux-x64-gnu@4.9.6': optional: true - /@rollup/rollup-linux-x64-musl@4.9.6: - resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@rollup/rollup-linux-x64-musl@4.9.6': optional: true - /@rollup/rollup-win32-arm64-msvc@4.9.6: - resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false + '@rollup/rollup-win32-arm64-msvc@4.9.6': optional: true - /@rollup/rollup-win32-ia32-msvc@4.9.6: - resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false + '@rollup/rollup-win32-ia32-msvc@4.9.6': optional: true - /@rollup/rollup-win32-x64-msvc@4.9.6: - resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@rollup/rollup-win32-x64-msvc@4.9.6': optional: true - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - dev: true + '@sinclair/typebox@0.27.8': {} - /@storybook/addon-actions@7.6.8: - resolution: {integrity: sha512-/KQlr/nLsAazJuSVUoMjQdwAeeXkKEtElKdqXrqI1LVOi5a7kMgB+bmn9aKX+7VBQLfQ36Btyty+FaY7bRtehQ==} + '@storybook/addon-actions@7.6.8': dependencies: '@storybook/core-events': 7.6.8 '@storybook/global': 5.0.0 @@ -2960,20 +7258,16 @@ packages: dequal: 2.0.3 polished: 4.2.2 uuid: 9.0.1 - dev: true - /@storybook/addon-backgrounds@7.6.8: - resolution: {integrity: sha512-b+Oj41z2W/Pv6oCXmcjGdNkOStbVItrlDoIeUGyDKrngzH9Kpv5u2XZTHkZWGWusLhOVq8ENBDqj6ENRL6kDtw==} + '@storybook/addon-backgrounds@7.6.8': dependencies: '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - dev: true - /@storybook/addon-controls@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-vjBwO1KbjB3l74qOVvLvks4LJjAIStr2n4j7Grdhqf2eeQvj122gT51dXstndtMNFqNHD4y3eImwNAbuaYrrnw==} + '@storybook/addon-controls@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -2983,19 +7277,14 @@ packages: - react - react-dom - supports-color - dev: true - /@storybook/addon-docs@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-vl7jNKT8x8Hnwn38l5cUr6TQZFCmx09VxarGUrMEO4mwTOoVRL2ofoh9JKFXhCiCHlMI9R0lnupGB/LAplWgPg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/addon-docs@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@jest/transform': 29.7.0 '@mdx-js/react': 2.3.0(react@18.2.0) - '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/client-logger': 7.6.8 - '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/csf-plugin': 7.6.8 '@storybook/csf-tools': 7.6.8 '@storybook/global': 5.0.0 @@ -3003,8 +7292,8 @@ packages: '@storybook/node-logger': 7.6.8 '@storybook/postinstall': 7.6.8 '@storybook/preview-api': 7.6.8 - '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/types': 7.6.8 fs-extra: 11.2.0 react: 18.2.0 @@ -3017,25 +7306,20 @@ packages: - '@types/react-dom' - encoding - supports-color - dev: true - /@storybook/addon-essentials@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UoRZWPkDYL/UWsfAJk4q4nn5nayYdOvPApVsF/ZDnGsiv1zB2RpqbkiD1bfxPlGEVCoB+NQIN2s867gEpf+DjA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/addon-essentials@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@storybook/addon-actions': 7.6.8 '@storybook/addon-backgrounds': 7.6.8 - '@storybook/addon-controls': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-docs': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-controls': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-docs': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/addon-highlight': 7.6.8 '@storybook/addon-measure': 7.6.8 '@storybook/addon-outline': 7.6.8 '@storybook/addon-toolbars': 7.6.8 '@storybook/addon-viewport': 7.6.8 '@storybook/core-common': 7.6.8 - '@storybook/manager-api': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/node-logger': 7.6.8 '@storybook/preview-api': 7.6.8 react: 18.2.0 @@ -3046,50 +7330,33 @@ packages: - '@types/react-dom' - encoding - supports-color - dev: true - /@storybook/addon-highlight@7.6.8: - resolution: {integrity: sha512-3mUfdLxaegCKWSm0i245RhnmEgkE+uLnOkE7h2kiztrWGqYuzGBKjgfZuVrftqsEWWc7LlJ1xdDZsIgs5Z06gA==} + '@storybook/addon-highlight@7.6.8': dependencies: '@storybook/global': 5.0.0 - dev: true - /@storybook/addon-interactions@7.6.8: - resolution: {integrity: sha512-E1ZMrJ/4larCPW92AFuY71I9s8Ri+DEdwNtVnU/WV55NA+E9oRKt5/qOrJLcjQorViwh9KOHeeuc8kagA2hjnA==} + '@storybook/addon-interactions@7.6.8': dependencies: '@storybook/global': 5.0.0 '@storybook/types': 7.6.8 jest-mock: 27.5.1 polished: 4.2.2 ts-dedent: 2.2.0 - dev: true - /@storybook/addon-links@7.6.8(react@18.2.0): - resolution: {integrity: sha512-lw+xMvzfhyOR5I5792rGCf31OfVsiNG+uCc6CEewjKdC+e4GZDXzAkLIrLVUvbf6iUvHzERD63Y5nKz2bt5yZA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - react: - optional: true + '@storybook/addon-links@7.6.8(react@18.2.0)': dependencies: '@storybook/csf': 0.1.2 '@storybook/global': 5.0.0 - react: 18.2.0 ts-dedent: 2.2.0 - dev: true + optionalDependencies: + react: 18.2.0 - /@storybook/addon-measure@7.6.8: - resolution: {integrity: sha512-76ItcwATq3BRPEtGV5Apby3E+7tOn6d5dtNpBYBZOdjUsj6E+uFtdmfHrc1Bt1ersJ7hRDCgsHArqOGXeLuDrw==} + '@storybook/addon-measure@7.6.8': dependencies: '@storybook/global': 5.0.0 tiny-invariant: 1.3.1 - dev: true - /@storybook/addon-onboarding@1.0.10(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-tK7JjJYIpOM4LowBoIM/8ymYQ70qVRmu7pGqSOQ82AW15ob5u36HJ753y0hVH/KPj6k7J1aSgAEgVGXLmgwvKw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/addon-onboarding@1.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@storybook/telemetry': 7.6.8 react: 18.2.0 @@ -3098,63 +7365,45 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/addon-outline@7.6.8: - resolution: {integrity: sha512-eTHreyvxYLIPt5AbMyDO3CEgGClQFt+CtA/RgSjpyv9MgYXPsZp/h1ZHpYYhSPRYnRE4//YnPMuk7eLf4udaag==} + '@storybook/addon-outline@7.6.8': dependencies: '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - dev: true - /@storybook/addon-postcss@2.0.0(webpack@5.89.0): - resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==} - engines: {node: '>=10', yarn: ^1.17.0} + '@storybook/addon-postcss@2.0.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': dependencies: '@storybook/node-logger': 6.5.16 - css-loader: 3.6.0(webpack@5.89.0) + css-loader: 3.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) postcss: 7.0.39 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.89.0) - style-loader: 1.3.0(webpack@5.89.0) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + style-loader: 1.3.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) transitivePeerDependencies: - webpack - dev: true - /@storybook/addon-styling-webpack@0.0.6(webpack@5.89.0): - resolution: {integrity: sha512-JjM2FXFiHpjbJsp7nRUEMhYBRpK6ukBKsbtWzCrAGOfUgoElcGwPY8KhSKSnRknIhebonGK1bxalh3u8bGZ/dw==} - peerDependencies: - webpack: ^5.0.0 + '@storybook/addon-styling-webpack@0.0.6(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': dependencies: '@storybook/node-logger': 7.6.8 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /@storybook/addon-toolbars@7.6.8: - resolution: {integrity: sha512-Akr9Pfw+AzQBRPVdo8yjcdS4IiOyEIBPVn/OAcbLi6a2zLYBdn99yKi21P0o03TJjNy32A254iAQQ7zyjIwEtA==} - dev: true + '@storybook/addon-toolbars@7.6.8': {} - /@storybook/addon-viewport@7.6.8: - resolution: {integrity: sha512-9fvaTudqTA7HYygOWq8gnlmR5XLLjMgK4RoZqMP8OhzX0Vkkg72knPI8lyrnHwze/yMcR1e2lmbdLm55rPq6QA==} + '@storybook/addon-viewport@7.6.8': dependencies: memoizerific: 1.11.3 - dev: true - /@storybook/blocks@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-9cjwqj+VLmVHD8lU1xIGbZiu2xPQ3A+cAobmam045wvEB/wYhcrF0K0lBwHLqUWTcNdOzZy5uaoaCu/1G5AmDg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/blocks@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@storybook/channels': 7.6.8 '@storybook/client-logger': 7.6.8 - '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/core-events': 7.6.8 '@storybook/csf': 0.1.2 '@storybook/docs-tools': 7.6.8 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/preview-api': 7.6.8 - '@storybook/theming': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/types': 7.6.8 '@types/lodash': 4.14.202 color-convert: 2.0.1 @@ -3164,7 +7413,7 @@ packages: memoizerific: 1.11.3 polished: 4.2.2 react: 18.2.0 - react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0) + react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-dom: 18.2.0(react@18.2.0) telejson: 7.2.0 tocbot: 4.25.0 @@ -3175,10 +7424,8 @@ packages: - '@types/react-dom' - encoding - supports-color - dev: true - /@storybook/builder-manager@7.6.8: - resolution: {integrity: sha512-4CZo1RHPlDJA7G+lJoVdi+/3/L1ERxVxtvwuGgk8CxVDt6vFNpoc7fEGryNv3GRzKN1/luNYNU1MTnCUSn0B2g==} + '@storybook/builder-manager@7.6.8': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 '@storybook/core-common': 7.6.8 @@ -3199,15 +7446,8 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/builder-webpack5@7.6.8(esbuild@0.19.11)(typescript@4.9.5): - resolution: {integrity: sha512-g4gYcHrrV/8Xve4Q/DJfXk8Bxkq5cxzy7KIBkb8PK5h+MFUiS/xoZc5qXk/WuX256zj2JnZRV//2yf61OhNd6g==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack5@7.6.8(esbuild@0.19.11)(typescript@4.9.5)': dependencies: '@babel/core': 7.23.7 '@storybook/channels': 7.6.8 @@ -3221,32 +7461,33 @@ packages: '@swc/core': 1.3.103 '@types/node': 18.19.7 '@types/semver': 7.5.6 - babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0) + babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 constants-browserify: 1.0.0 - css-loader: 6.9.0(webpack@5.89.0) + css-loader: 6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) es-module-lexer: 1.4.1 express: 4.18.2 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.89.0) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.89.0) + html-webpack-plugin: 5.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) magic-string: 0.30.5 path-browserify: 1.0.1 process: 0.11.10 semver: 7.5.4 - style-loader: 3.3.4(webpack@5.89.0) - swc-loader: 0.2.3(@swc/core@1.3.103)(webpack@5.89.0) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0) + style-loader: 3.3.4(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + swc-loader: 0.2.3(@swc/core@1.3.103)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) ts-dedent: 2.2.0 - typescript: 4.9.5 url: 0.11.3 util: 0.12.5 util-deprecate: 1.0.2 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - webpack-dev-middleware: 6.1.1(webpack@5.89.0) + webpack-dev-middleware: 6.1.1(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) webpack-hot-middleware: 2.26.0 webpack-virtual-modules: 0.5.0 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/helpers' @@ -3255,10 +7496,8 @@ packages: - supports-color - uglify-js - webpack-cli - dev: true - /@storybook/channels@7.6.8: - resolution: {integrity: sha512-aPgQcSjeyZDhAfr/slCphVfYGCihxuFCaCVlZuJA4uTaGEUkn+kPW2jP0yLtlSN33J79wFXsMLPQYwIS3aQ4Ew==} + '@storybook/channels@7.6.8': dependencies: '@storybook/client-logger': 7.6.8 '@storybook/core-events': 7.6.8 @@ -3266,11 +7505,8 @@ packages: qs: 6.11.2 telejson: 7.2.0 tiny-invariant: 1.3.1 - dev: true - /@storybook/cli@7.6.8: - resolution: {integrity: sha512-Is8nkgsbIOu+Jk9Z7x5sgMPgGs9RTVDum3cz9eA4UspPiIBJsf7nGHAWOtc+mCIm6Z3eeNbT1YMOWxz9EuqboA==} - hasBin: true + '@storybook/cli@7.6.8': dependencies: '@babel/core': 7.23.7 '@babel/preset-env': 7.23.8(@babel/core@7.23.7) @@ -3300,7 +7536,7 @@ packages: get-port: 5.1.1 giget: 1.2.1 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.23.8) + jscodeshift: 0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -3318,16 +7554,12 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@storybook/client-logger@7.6.8: - resolution: {integrity: sha512-WyK+RNSYk+sy0pxk8np1MnUXSWFdy54WqtT7u64vDFs9Jxfa1oMZ+Vl6XhaFQYR++tKC7VabLcI6vZ0pOoE9Jw==} + '@storybook/client-logger@7.6.8': dependencies: '@storybook/global': 5.0.0 - dev: true - /@storybook/codemod@7.6.8: - resolution: {integrity: sha512-3Gk+ZsD35DUgqbbRNdX547kzZK/ajIbgwynmR0FuPhZhhZuYI4+2eMNzdmI/Oe9Nov4R16senQuAZjw/Dc5LrA==} + '@storybook/codemod@7.6.8': dependencies: '@babel/core': 7.23.7 '@babel/preset-env': 7.23.8(@babel/core@7.23.7) @@ -3339,46 +7571,37 @@ packages: '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.23.8) + jscodeshift: 0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 transitivePeerDependencies: - supports-color - dev: true - /@storybook/components@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-ghrQkws7F2s9xwdiQq2ezQoOozCiYF9g/vnh+qttd4UgKqXDWoILb8LJGKtS7C0u0vV/Ui59EYUyDIVBT6wHlw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/components@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/client-logger': 7.6.8 '@storybook/csf': 0.1.2 '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/types': 7.6.8 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) + use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - '@types/react-dom' - dev: true - /@storybook/core-client@7.6.8: - resolution: {integrity: sha512-Avt0R0F9U+PEndPS23LHyIBxbwVCeF/VCIuIfD1eTYwE9nSLzvJXqlxARfFyhYV43LQcC5fIKjxfrsyUjM5vbQ==} + '@storybook/core-client@7.6.8': dependencies: '@storybook/client-logger': 7.6.8 '@storybook/preview-api': 7.6.8 - dev: true - /@storybook/core-common@7.6.8: - resolution: {integrity: sha512-TRbiv5AF2m88ixyh31yqn6FgWDYZO6e6IxbJolRvEKD4b9opfPJ5e1ocb/QPz9sBUmsrX59ghMjO8R6dDYzdwA==} + '@storybook/core-common@7.6.8': dependencies: '@storybook/core-events': 7.6.8 '@storybook/node-logger': 7.6.8 @@ -3406,16 +7629,12 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/core-events@7.6.8: - resolution: {integrity: sha512-c1onJHG71JKbU4hMZC31rVTSbcfhcXaB0ikGnb7rJzlUZ1YkWnb0wf0/ikQR0seDOpR3HS+WQ0M3FIpqANyETg==} + '@storybook/core-events@7.6.8': dependencies: ts-dedent: 2.2.0 - dev: true - /@storybook/core-server@7.6.8: - resolution: {integrity: sha512-/csAFNuAhF11f6D9neYNavmKPFK/ZxTskaktc4iDwBRgBM95kZ6DBFjg9ErRi5Q8Z/i92wk6qORkq4bkN/lI9w==} + '@storybook/core-server@7.6.8': dependencies: '@aw-web-design/x-default-browser': 1.4.126 '@discoveryjs/json-ext': 0.5.7 @@ -3463,10 +7682,8 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@storybook/core-webpack@7.6.8: - resolution: {integrity: sha512-UOTW2WhKmB8baCLc1eRssmz11sBv+iDRyS2WFK+WONkiGy3pQrpxfq2OVXXMFYkSHGXqj/jSKfKXSmNQBbkyAQ==} + '@storybook/core-webpack@7.6.8': dependencies: '@storybook/core-common': 7.6.8 '@storybook/node-logger': 7.6.8 @@ -3476,19 +7693,15 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/csf-plugin@7.6.8: - resolution: {integrity: sha512-KYh7VwTHhXz/V9weuGY3pK9messE56TJHUD+0SO9dF2BVNKsKpAOVcjzrE6masiAFX35Dz/t9ywy8iFcfAo0dg==} + '@storybook/csf-plugin@7.6.8': dependencies: '@storybook/csf-tools': 7.6.8 unplugin: 1.6.0 transitivePeerDependencies: - supports-color - dev: true - /@storybook/csf-tools@7.6.8: - resolution: {integrity: sha512-ea6QnQRvhPOpSUbfioLlJYRLpJldNZcocgUJwOJ/e3TM6M67BZBzeDnVOJkuUKejrp++KF22GEIkbGAWErIlnA==} + '@storybook/csf-tools@7.6.8': dependencies: '@babel/generator': 7.23.6 '@babel/parser': 7.23.6 @@ -3501,20 +7714,14 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: true - /@storybook/csf@0.1.2: - resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==} + '@storybook/csf@0.1.2': dependencies: type-fest: 2.19.0 - dev: true - /@storybook/docs-mdx@0.1.0: - resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} - dev: true + '@storybook/docs-mdx@0.1.0': {} - /@storybook/docs-tools@7.6.8: - resolution: {integrity: sha512-zIbrje4JLFpfK05y3SkDNtIth/vTOEaJVa/zaHuwS1gUX73Pq3jwF2eMGVabeVWi6hvxGeZXhnIsymh/Hpbn5w==} + '@storybook/docs-tools@7.6.8': dependencies: '@storybook/core-common': 7.6.8 '@storybook/preview-api': 7.6.8 @@ -3526,14 +7733,10 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/global@5.0.0: - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - dev: true + '@storybook/global@5.0.0': {} - /@storybook/instrumenter@7.6.8: - resolution: {integrity: sha512-AZZoMmQJ753uIeNJpjV+qUSREMu1gfucqslo858uPxpWwhWmr6pI9a5V19w5sedGXT/I9WiTt8hQVmkg4lsWbA==} + '@storybook/instrumenter@7.6.8': dependencies: '@storybook/channels': 7.6.8 '@storybook/client-logger': 7.6.8 @@ -3542,10 +7745,8 @@ packages: '@storybook/preview-api': 7.6.8 '@vitest/utils': 0.34.7 util: 0.12.5 - dev: true - /@storybook/manager-api@7.6.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-BGVZb0wMTd8Hi8rUYPRzdIhWRw73qXlEupwEYyGtH63sg+aD67wyAo8/pMEpQBH4kVss7VheWY2JGpRJeFVUxw==} + '@storybook/manager-api@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@storybook/channels': 7.6.8 '@storybook/client-logger': 7.6.8 @@ -3553,7 +7754,7 @@ packages: '@storybook/csf': 0.1.2 '@storybook/global': 5.0.0 '@storybook/router': 7.6.8 - '@storybook/theming': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/types': 7.6.8 dequal: 2.0.3 lodash: 4.17.21 @@ -3564,57 +7765,33 @@ packages: transitivePeerDependencies: - react - react-dom - dev: true - /@storybook/manager@7.6.8: - resolution: {integrity: sha512-INoXXoHXyw9PPMJAOAhwf9u2GNDDNdv1JAI1fhrbCAECzDabHT9lRVUo6v8I5XMc+YdMHLM1Vz38DbB+w18hFw==} - dev: true + '@storybook/manager@7.6.8': {} - /@storybook/mdx2-csf@1.1.0: - resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} - dev: true + '@storybook/mdx2-csf@1.1.0': {} - /@storybook/node-logger@6.5.16: - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + '@storybook/node-logger@6.5.16': dependencies: '@types/npmlog': 4.1.6 chalk: 4.1.2 core-js: 3.35.1 npmlog: 5.0.1 pretty-hrtime: 1.0.3 - dev: true - /@storybook/node-logger@7.6.8: - resolution: {integrity: sha512-SVvwZAcOLdkstqnAbE5hVYsriXh6OXjLcwFEBpAYi1meQ0R70iNALVSPEfIDK1r7M163Jngsq2hRnHvbLoQNkg==} - dev: true + '@storybook/node-logger@7.6.8': {} - /@storybook/postinstall@7.6.8: - resolution: {integrity: sha512-9ixyNpoT1w3WmSooCzndAWDnw4fENA1WUBcdqrzlcgaSBKiAHad1k/Yct/uBAU95l/uQ13NgXK3mx4+S6unx/g==} - dev: true + '@storybook/postinstall@7.6.8': {} - /@storybook/preset-react-webpack@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): - resolution: {integrity: sha512-S7z2IKonfZyvaETPwDHaOsw2hnG6Kny6aVnWj1/oAMHLRkAo08v/uxXc3of27HmCng3sKoPtEKypQa6yV863MA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true + '@storybook/preset-react-webpack@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0)': dependencies: - '@babel/core': 7.23.7 '@babel/preset-flow': 7.23.3(@babel/core@7.23.7) '@babel/preset-react': 7.23.3(@babel/core@7.23.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(type-fest@2.19.0)(webpack-hot-middleware@2.26.0)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) '@storybook/core-webpack': 7.6.8 '@storybook/docs-tools': 7.6.8 '@storybook/node-logger': 7.6.8 - '@storybook/react': 7.6.8(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0) + '@storybook/react': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) '@types/node': 18.19.7 '@types/semver': 7.5.6 babel-plugin-add-react-displayname: 0.0.5 @@ -3625,8 +7802,10 @@ packages: react-dom: 18.2.0(react@18.2.0) react-refresh: 0.14.0 semver: 7.5.4 - typescript: 4.9.5 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) + optionalDependencies: + '@babel/core': 7.23.7 + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -3640,10 +7819,8 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/preview-api@7.6.8: - resolution: {integrity: sha512-rtP9Yo8ZV1NWhtA3xCOAb1vU70KCV3D2U4E3rOb2prqJ2CEQ/MQbrB7KUTDRSQdT7VFbjsLQWVCTUcNo29U8JQ==} + '@storybook/preview-api@7.6.8': dependencies: '@storybook/channels': 7.6.8 '@storybook/client-logger': 7.6.8 @@ -3659,17 +7836,10 @@ packages: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: true - /@storybook/preview@7.6.8: - resolution: {integrity: sha512-f54EXmJcIkc5A7nQmtnCUtNFNfEOoTuPYFK7pDfcK/bVU+g63zzWhBAeIUZ8yioLKGqZPTzFEhXkpa+OqsT0Jg==} - dev: true + '@storybook/preview@7.6.8': {} - /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0): - resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} - peerDependencies: - typescript: '>= 4.x' - webpack: '>= 4' + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': dependencies: debug: 4.3.4 endent: 2.1.0 @@ -3682,39 +7852,22 @@ packages: webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) transitivePeerDependencies: - supports-color - dev: true - /@storybook/react-dom-shim@7.6.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-NIvtjdXCTwd0VA/zCaCuCYv7L35nze7qDsFW6JhSHyqB7fKyIEMSbluktO2VISotHOSkgZ2zA+rGpk3O8yh6lg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/react-dom-shim@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: true - /@storybook/react-webpack5@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): - resolution: {integrity: sha512-wE4dTeqLmahPLJ+QScTp32JDWd/FY/hvZjok9KFoKfLcdpsjQc7nG/MQrq6Sl+Gv5QdqxSxnuWusOzlBFM2XEg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true + '@storybook/react-webpack5@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0)': dependencies: - '@babel/core': 7.23.7 '@storybook/builder-webpack5': 7.6.8(esbuild@0.19.11)(typescript@4.9.5) - '@storybook/preset-react-webpack': 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@storybook/react': 7.6.8(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + '@storybook/preset-react-webpack': 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0) + '@storybook/react': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) '@types/node': 18.19.7 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + optionalDependencies: + '@babel/core': 7.23.7 typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' @@ -3731,25 +7884,15 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/react@7.6.8(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): - resolution: {integrity: sha512-yMqcCNskCxqoYSGWO1qu6Jdju9zhEEwd8tOC7AgIC8sAB7K8FTxZu0d6+QFpeg9fGq+hyAmRM4GrT9Fq9IKwwQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/react@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5)': dependencies: '@storybook/client-logger': 7.6.8 '@storybook/core-client': 7.6.8 '@storybook/docs-tools': 7.6.8 '@storybook/global': 5.0.0 '@storybook/preview-api': 7.6.8 - '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0)(react@18.2.0) + '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/types': 7.6.8 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 @@ -3763,26 +7906,23 @@ packages: prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0) + react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) ts-dedent: 2.2.0 type-fest: 2.19.0 - typescript: 4.9.5 util-deprecate: 1.0.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/router@7.6.8: - resolution: {integrity: sha512-pFoq22w1kEwduqMpGX3FPSSukdWLMX6UQa2Cw4MDW+hzp3vhC7+3MVaBG5ShQAjGv46NNcSgsIUkyarlU5wd/A==} + '@storybook/router@7.6.8': dependencies: '@storybook/client-logger': 7.6.8 memoizerific: 1.11.3 qs: 6.11.2 - dev: true - /@storybook/telemetry@7.6.8: - resolution: {integrity: sha512-hHUS3fyHjKR3ZdbG+/OVI+pwXXKOmS8L8GMuWKlpUovvCYBLm0/Q0MUQ9XaLuByOCzvAurqB3Owp3ZV7GiY30Q==} + '@storybook/telemetry@7.6.8': dependencies: '@storybook/client-logger': 7.6.8 '@storybook/core-common': 7.6.8 @@ -3795,10 +7935,8 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/test@7.6.8: - resolution: {integrity: sha512-8TnWp0r3C/2OJur/VPBkjxFRPbpIgsCNACHbZHEz7+7U/NSj02K9nn6Q84kk6fT9qSSJU24csGKNk3fU8bDPfA==} + '@storybook/test@7.6.8': dependencies: '@storybook/client-logger': 7.6.8 '@storybook/core-events': 7.6.8 @@ -3817,13 +7955,8 @@ packages: - '@types/jest' - jest - vitest - dev: true - /@storybook/theming@7.6.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-0ervBgeYGieifjISlFS7x5QZF9vNgLtHHlYKdkrAsACTK+VfB0JglVwFdLrgzAKxQRlVompaxl3TecFGWlvhtw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/theming@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@storybook/client-logger': 7.6.8 @@ -3831,106 +7964,45 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: true - /@storybook/types@7.6.8: - resolution: {integrity: sha512-+mABX20OhwJjqULocG5Betfidwrlk+Kq+grti+LAYwYsdBwxctBNSrqK8P9r8XDFL6PbppZeExGiHKwGu6WsKQ==} + '@storybook/types@7.6.8': dependencies: '@storybook/channels': 7.6.8 '@types/babel__core': 7.20.5 '@types/express': 4.17.21 file-system-cache: 2.3.0 - dev: true - /@swc/core-darwin-arm64@1.3.103: - resolution: {integrity: sha512-Dqqz48mvdm/3PHPPA6YeAEofkF9H5Krgqd/baPf0dXcarzng6U9Ilv2aCtDjq7dfI9jfkVCW5zuwq98PE2GEdw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-arm64@1.3.103': optional: true - /@swc/core-darwin-x64@1.3.103: - resolution: {integrity: sha512-mhUVSCEAyFLqtrDtwr9qPbe891J8cKxq53CD873/ZsUnyasHMPyWXzTvy9qjmbYyfDIArm6fGqjF5YsDKwGGNg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-x64@1.3.103': optional: true - /@swc/core-linux-arm-gnueabihf@1.3.103: - resolution: {integrity: sha512-rYLmwxr01ZHOI6AzooqwB0DOkMm0oU8Jznk6uutV1lHgcwyxsNiC1Css8yf77Xr/sYTvKvuTfBjThqa5H716pA==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm-gnueabihf@1.3.103': optional: true - /@swc/core-linux-arm64-gnu@1.3.103: - resolution: {integrity: sha512-w+5XFpUqxiAGUBiyRyYR28Ghddp5uVyo+dHAkCnY1u3V6RsZkY3vRwmoXT7/HxVGV7csodJ1P9Cp9VaRnNvTKA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-gnu@1.3.103': optional: true - /@swc/core-linux-arm64-musl@1.3.103: - resolution: {integrity: sha512-lS5p8ewAIar7adX6t0OrkICTcw92PXrn3ZmYyG5hvfjUg4RPQFjMfFMDQSne32ZJhGXHBf0LVm1R8wHwkcpwgA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-musl@1.3.103': optional: true - /@swc/core-linux-x64-gnu@1.3.103: - resolution: {integrity: sha512-Lf2cHDoEPNB6TwexHBEZCsAO2C7beb0YljhtQS+QfjWLLVqCiwt5LRCPuKN2Bav7el9KZXOI5baXedUeFj0oFg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-gnu@1.3.103': optional: true - /@swc/core-linux-x64-musl@1.3.103: - resolution: {integrity: sha512-HR1Y9iiLEO3F49P47vjbHczBza9RbdXWRWC8NpcOcGJ4Wnw0c2DLWAh416fGH3VYCF/19EuglLEXhvSj0NXGuA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-musl@1.3.103': optional: true - /@swc/core-win32-arm64-msvc@1.3.103: - resolution: {integrity: sha512-3/GfROD1GPyf2hi6R0l4iZ5nrrKG8IU29hYhZCb7r0ZqhL/58kktVPlkib8X/EAJI8xbhM/NMl76h8ElrnyH5w==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@swc/core-win32-arm64-msvc@1.3.103': optional: true - /@swc/core-win32-ia32-msvc@1.3.103: - resolution: {integrity: sha512-9ejEFjfgPi0ibNmtuiRbYq9p4RRV6oH1DN9XjkYM8zh2qHlpZHKQZ3n4eHS0VtJO4rEGZxL8ebcnTNs62wqJig==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@swc/core-win32-ia32-msvc@1.3.103': optional: true - /@swc/core-win32-x64-msvc@1.3.103: - resolution: {integrity: sha512-/1RvaOmZolXurWAUdnELYynVlFUiT0hj3PyTPoo+YK6+KV7er4EqUalRsoUf3zzGepQuhKFZFDpQn6Xi9kJX1A==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@swc/core-win32-x64-msvc@1.3.103': optional: true - /@swc/core@1.3.103: - resolution: {integrity: sha512-PYtt8KzRXIFDwxeD7BA9ylmXNQ4hRVcmDVuAmL3yvL9rgx7Tn3qn6T37wiMVZnP1OjqGyhuHRPNycd+ssr+byw==} - engines: {node: '>=10'} - requiresBuild: true - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true + '@swc/core@1.3.103': dependencies: '@swc/counter': 0.1.2 '@swc/types': 0.1.5 @@ -3946,15 +8018,11 @@ packages: '@swc/core-win32-ia32-msvc': 1.3.103 '@swc/core-win32-x64-msvc': 1.3.103 - /@swc/counter@0.1.2: - resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} + '@swc/counter@0.1.2': {} - /@swc/types@0.1.5: - resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} + '@swc/types@0.1.5': {} - /@testing-library/dom@9.3.4: - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.23.5 '@babel/runtime': 7.23.8 @@ -3964,25 +8032,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/jest-dom@6.2.0: - resolution: {integrity: sha512-+BVQlJ9cmEn5RDMUS8c2+TU6giLvzaHZ8sU/x0Jj7fk+6/46wPdwlgOPcpxS17CjcanBi/3VmGMqVr2rmbUmNw==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true + '@testing-library/jest-dom@6.2.0': dependencies: '@adobe/css-tools': 4.3.2 '@babel/runtime': 7.23.8 @@ -3992,394 +8043,250 @@ packages: dom-accessibility-api: 0.6.3 lodash: 4.17.21 redent: 3.0.0 - dev: true - /@testing-library/user-event@14.3.0(@testing-library/dom@9.3.4): - resolution: {integrity: sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' + '@testing-library/user-event@14.3.0(@testing-library/dom@9.3.4)': dependencies: '@testing-library/dom': 9.3.4 - dev: true - /@types/aria-query@5.0.4: - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - dev: true + '@trysound/sax@0.2.0': {} - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@types/aria-query@5.0.4': {} + + '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.23.6 '@babel/types': 7.23.6 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.5 - dev: true - /@types/babel__generator@7.6.8: - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + '@types/babel__generator@7.6.8': dependencies: '@babel/types': 7.23.6 - dev: true - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.23.6 '@babel/types': 7.23.6 - dev: true - /@types/babel__traverse@7.20.5: - resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + '@types/babel__traverse@7.20.5': dependencies: '@babel/types': 7.23.6 - dev: true - /@types/body-parser@1.19.5: - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 '@types/node': 20.11.1 - dev: true - /@types/chai@4.3.11: - resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==} - dev: true + '@types/chai@4.3.11': {} - /@types/connect@3.4.38: - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@types/connect@3.4.38': dependencies: '@types/node': 20.11.1 - dev: true - /@types/cross-spawn@6.0.6: - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} + '@types/cross-spawn@6.0.6': dependencies: '@types/node': 20.11.1 - dev: true - /@types/detect-port@1.3.5: - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - dev: true + '@types/detect-port@1.3.5': {} - /@types/doctrine@0.0.3: - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - dev: true + '@types/doctrine@0.0.3': {} - /@types/doctrine@0.0.9: - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - dev: true + '@types/doctrine@0.0.9': {} - /@types/ejs@3.1.5: - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - dev: true + '@types/ejs@3.1.5': {} - /@types/emscripten@1.39.10: - resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==} - dev: true + '@types/emscripten@1.39.10': {} - /@types/escodegen@0.0.6: - resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} - dev: true + '@types/escodegen@0.0.6': {} - /@types/eslint-scope@3.7.7: - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 8.56.2 '@types/estree': 1.0.5 - dev: true - /@types/eslint@8.56.2: - resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} + '@types/eslint@8.56.2': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - dev: true - /@types/estree@0.0.51: - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - dev: true + '@types/estree@0.0.51': {} - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@1.0.5': {} - /@types/express-serve-static-core@4.17.41: - resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} + '@types/express-serve-static-core@4.17.41': dependencies: '@types/node': 20.11.1 '@types/qs': 6.9.11 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 - dev: true - /@types/express@4.17.21: - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.17.41 '@types/qs': 6.9.11 '@types/serve-static': 1.15.5 - dev: true - /@types/find-cache-dir@3.2.1: - resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - dev: true + '@types/find-cache-dir@3.2.1': {} - /@types/graceful-fs@4.1.9: - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 20.11.1 - dev: true - /@types/html-minifier-terser@6.1.0: - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - dev: true + '@types/html-minifier-terser@6.1.0': {} - /@types/http-errors@2.0.4: - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - dev: true + '@types/http-errors@2.0.4': {} - /@types/istanbul-lib-coverage@2.0.6: - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - dev: true + '@types/istanbul-lib-coverage@2.0.6': {} - /@types/istanbul-lib-report@3.0.3: - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - dev: true - /@types/istanbul-reports@3.0.4: - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 - dev: true - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - dev: true + '@types/json-schema@7.0.15': {} - /@types/lodash@4.14.202: - resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} - dev: true + '@types/lodash@4.14.202': {} - /@types/mdx@2.0.10: - resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==} - dev: true + '@types/mdx@2.0.10': {} - /@types/mime-types@2.1.4: - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - dev: true + '@types/mime-types@2.1.4': {} - /@types/mime@1.3.5: - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - dev: true + '@types/mime@1.3.5': {} - /@types/mime@3.0.4: - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - dev: true + '@types/mime@3.0.4': {} - /@types/minimist@1.2.5: - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - dev: false + '@types/minimist@1.2.5': {} - /@types/node-fetch@2.6.10: - resolution: {integrity: sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA==} + '@types/node-fetch@2.6.10': dependencies: '@types/node': 18.19.7 form-data: 4.0.0 - dev: true - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: false + '@types/node@12.20.55': {} - /@types/node@18.19.7: - resolution: {integrity: sha512-IGRJfoNX10N/PfrReRZ1br/7SQ+2vF/tK3KXNwzXz82D32z5dMQEoOlFew18nLSN+vMNcLY4GrKfzwi/yWI8/w==} + '@types/node@18.19.7': dependencies: undici-types: 5.26.5 - dev: true - /@types/node@20.11.1: - resolution: {integrity: sha512-DsXojJUES2M+FE8CpptJTKpg+r54moV9ZEncPstni1WHFmTcCzeFLnMFfyhCVS8XNOy/OQG+8lVxRLRrVHmV5A==} + '@types/node@20.11.1': dependencies: undici-types: 5.26.5 - dev: true - /@types/normalize-package-data@2.4.4: - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/normalize-package-data@2.4.4': {} - /@types/npmlog@4.1.6: - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + '@types/npmlog@4.1.6': dependencies: '@types/node': 20.11.1 - dev: true - /@types/parse-json@4.0.2: - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - dev: true + '@types/parse-json@4.0.2': {} - /@types/pretty-hrtime@1.0.3: - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - dev: true + '@types/pretty-hrtime@1.0.3': {} - /@types/prop-types@15.7.11: - resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} - dev: true + '@types/prop-types@15.7.11': {} - /@types/qs@6.9.11: - resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==} - dev: true + '@types/qs@6.9.11': {} - /@types/range-parser@1.2.7: - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - dev: true + '@types/range-parser@1.2.7': {} - /@types/react-dom@18.2.18: - resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} + '@types/react-dom@18.2.18': dependencies: '@types/react': 18.2.48 - dev: true - /@types/react@18.2.48: - resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} + '@types/react@18.2.48': dependencies: '@types/prop-types': 15.7.11 '@types/scheduler': 0.16.8 csstype: 3.1.3 - dev: true - /@types/resolve@1.20.6: - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - dev: true + '@types/resolve@1.20.6': {} - /@types/scheduler@0.16.8: - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} - dev: true + '@types/scheduler@0.16.8': {} - /@types/semver@7.5.6: - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + '@types/semver@7.5.6': {} - /@types/send@0.17.4: - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 '@types/node': 20.11.1 - dev: true - /@types/serve-static@1.15.5: - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} + '@types/serve-static@1.15.5': dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 '@types/node': 20.11.1 - dev: true - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - dev: true + '@types/unist@2.0.10': {} - /@types/uuid@9.0.7: - resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==} - dev: true + '@types/uuid@9.0.7': {} - /@types/yargs-parser@21.0.3: - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - dev: true + '@types/yargs-parser@21.0.3': {} - /@types/yargs@16.0.9: - resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} + '@types/yargs@16.0.9': dependencies: '@types/yargs-parser': 21.0.3 - dev: true - /@types/yargs@17.0.32: - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + '@types/yargs@17.0.32': dependencies: '@types/yargs-parser': 21.0.3 - dev: true - /@vitest/expect@0.34.7: - resolution: {integrity: sha512-G9iEtwrD6ZQ4MVHZufif9Iqz3eLtuwBBNx971fNAGPaugM7ftAWjQN+ob2zWhtzURp8RK3zGXOxVb01mFo3zAQ==} + '@vitest/expect@0.34.7': dependencies: '@vitest/spy': 0.34.7 '@vitest/utils': 0.34.7 chai: 4.4.1 - dev: true - /@vitest/spy@0.34.7: - resolution: {integrity: sha512-NMMSzOY2d8L0mcOt4XcliDOS1ISyGlAXuQtERWVOoVHnKwmG+kKhinAiGw3dTtMQWybfa89FG8Ucg9tiC/FhTQ==} + '@vitest/spy@0.34.7': dependencies: tinyspy: 2.2.0 - dev: true - /@vitest/utils@0.34.7: - resolution: {integrity: sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==} + '@vitest/utils@0.34.7': dependencies: diff-sequences: 29.6.3 loupe: 2.3.7 pretty-format: 29.7.0 - dev: true - /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + '@webassemblyjs/ast@1.11.6': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - dev: true - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - dev: true + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - dev: true + '@webassemblyjs/helper-api-error@1.11.6': {} - /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - dev: true + '@webassemblyjs/helper-buffer@1.11.6': {} - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + '@webassemblyjs/helper-numbers@1.11.6': dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - dev: true - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - dev: true + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + '@webassemblyjs/helper-wasm-section@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.11.6 - dev: true - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + '@webassemblyjs/ieee754@1.11.6': dependencies: '@xtuc/ieee754': 1.2.0 - dev: true - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + '@webassemblyjs/leb128@1.11.6': dependencies: '@xtuc/long': 4.2.2 - dev: true - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - dev: true + '@webassemblyjs/utf8@1.11.6': {} - /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + '@webassemblyjs/wasm-edit@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -4389,29 +8296,23 @@ packages: '@webassemblyjs/wasm-opt': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 '@webassemblyjs/wast-printer': 1.11.6 - dev: true - /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + '@webassemblyjs/wasm-gen@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/ieee754': 1.11.6 '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - dev: true - /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + '@webassemblyjs/wasm-opt@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 '@webassemblyjs/wasm-gen': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 - dev: true - /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + '@webassemblyjs/wasm-parser@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 @@ -4419,275 +8320,157 @@ packages: '@webassemblyjs/ieee754': 1.11.6 '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - dev: true - /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + '@webassemblyjs/wast-printer@1.11.6': dependencies: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 - dev: true - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - dev: true + '@xtuc/ieee754@1.2.0': {} - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - dev: true + '@xtuc/long@4.2.2': {} - /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': dependencies: esbuild: 0.18.20 tslib: 2.6.2 - dev: true - /@yarnpkg/fslib@2.10.3: - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + '@yarnpkg/fslib@2.10.3': dependencies: '@yarnpkg/libzip': 2.3.0 tslib: 1.14.1 - dev: true - /@yarnpkg/libzip@2.3.0: - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + '@yarnpkg/libzip@2.3.0': dependencies: '@types/emscripten': 1.39.10 tslib: 1.14.1 - dev: true - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - dev: true - /acorn-import-assertions@1.9.0(acorn@8.11.3): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 + acorn-import-assertions@1.9.0(acorn@8.11.3): dependencies: acorn: 8.11.3 - dev: true - /acorn-jsx@5.3.2(acorn@7.4.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@7.4.1): dependencies: acorn: 7.4.1 - dev: true - /acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - dev: true + acorn-walk@7.2.0: {} - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true + acorn@7.4.1: {} - /acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true + acorn@8.11.3: {} - /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - dev: true + address@1.2.2: {} - /agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} - dev: true + agent-base@5.1.1: {} - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - dev: true - /ajv-formats@2.1.1(ajv@8.12.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: + ajv-formats@2.1.1(ajv@8.12.0): + optionalDependencies: ajv: 8.12.0 - dev: true - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 - dev: true - /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 + ajv-keywords@5.1.0(ajv@8.12.0): dependencies: ajv: 8.12.0 fast-deep-equal: 3.1.3 - dev: true - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - dev: true - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + ajv@8.12.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - dev: true - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - dev: false + ansi-colors@4.1.3: {} - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true - dev: true + ansi-html-community@0.0.8: {} - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + ansi-regex@6.0.1: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - dev: true + ansi-styles@5.2.0: {} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + ansi-styles@6.2.1: {} - /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + any-promise@1.3.0: {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - dev: true + app-root-dir@1.0.2: {} - /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - dev: true + aproba@2.0.0: {} - /are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} + are-we-there-yet@2.0.0: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - dev: true - /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - dev: true + arg@5.0.2: {} - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - /aria-hidden@1.2.3: - resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} - engines: {node: '>=10'} + aria-hidden@1.2.3: dependencies: tslib: 2.6.2 - dev: true - /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + aria-query@5.1.3: dependencies: deep-equal: 2.2.3 - dev: true - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.0: dependencies: dequal: 2.0.3 - dev: true - /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + array-buffer-byte-length@1.0.0: dependencies: call-bind: 1.0.5 is-array-buffer: 3.0.2 - /array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - dev: true + array-flatten@1.1.1: {} - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + array-union@2.1.0: {} - /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 - dev: false - /arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.2: dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.5 @@ -4696,94 +8479,55 @@ packages: get-intrinsic: 1.2.2 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 - dev: false - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: false + arrify@1.0.1: {} - /assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + assert@2.1.0: dependencies: call-bind: 1.0.5 is-nan: 1.3.2 object-is: 1.1.5 object.assign: 4.1.5 util: 0.12.5 - dev: true - /assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - dev: true + assertion-error@1.1.0: {} - /ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} + ast-types@0.16.1: dependencies: tslib: 2.6.2 - dev: true - /async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - dev: true + async-limiter@1.0.1: {} - /async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - dev: true + async@3.2.5: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - dev: true + asynckit@0.4.0: {} - /autoprefixer@10.4.17(postcss@8.4.33): - resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + autoprefixer@10.4.17(postcss@8.4.38): dependencies: browserslist: 4.22.2 caniuse-lite: 1.0.30001579 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} + available-typed-arrays@1.0.5: {} - /babel-core@7.0.0-bridge.0(@babel/core@7.23.7): - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-core@7.0.0-bridge.0(@babel/core@7.23.7): dependencies: '@babel/core': 7.23.7 - dev: true - /babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0): - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' + babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@babel/core': 7.23.7 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - dev: true + babel-plugin-add-react-displayname@0.0.5: {} - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + babel-plugin-istanbul@6.1.1: dependencies: '@babel/helper-plugin-utils': 7.22.5 '@istanbuljs/load-nyc-config': 1.1.0 @@ -4792,12 +8536,8 @@ packages: test-exclude: 6.0.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7): - resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7): dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.23.7 @@ -4805,76 +8545,47 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7): - resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7): dependencies: '@babel/core': 7.23.7 '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) core-js-compat: 3.35.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7): - resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7): dependencies: '@babel/core': 7.23.7 '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) transitivePeerDependencies: - supports-color - dev: true - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@1.0.2: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - dev: true + base64-js@1.5.1: {} - /better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} + better-opn@3.0.2: dependencies: open: 8.4.2 - dev: true - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - dev: false - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - dev: true + big-integer@1.6.52: {} - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - dev: true + big.js@5.2.2: {} - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + binary-extensions@2.2.0: {} - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + body-parser@1.20.1: dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -4890,163 +8601,97 @@ packages: unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: true + boolbase@1.0.0: {} - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} + bplist-parser@0.2.0: dependencies: big-integer: 1.6.52 - dev: true - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - dev: true - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + braces@3.0.2: dependencies: fill-range: 7.0.1 - /breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + breakword@1.0.6: dependencies: wcwidth: 1.0.1 - dev: false - /browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - dev: true + browser-assert@1.2.1: {} - /browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + browserify-zlib@0.1.4: dependencies: pako: 0.2.9 - dev: true - /browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.22.2: dependencies: caniuse-lite: 1.0.30001576 electron-to-chromium: 1.4.630 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.22.2) - dev: true - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + bser@2.1.1: dependencies: node-int64: 0.4.0 - dev: true - /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - dev: true + buffer-crc32@0.2.13: {} - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - dev: true + buffer-from@1.1.2: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: true - /bundle-require@4.0.2(esbuild@0.19.11): - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - esbuild: '>=0.17' + bundle-require@4.0.2(esbuild@0.19.11): dependencies: esbuild: 0.19.11 load-tsconfig: 0.2.5 - dev: false - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} - dev: true + bytes@3.0.0: {} - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - dev: true + bytes@3.1.2: {} - /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - dev: false + cac@6.7.14: {} - /call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + call-bind@1.0.5: dependencies: function-bind: 1.1.2 get-intrinsic: 1.2.2 set-function-length: 1.2.0 - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - dev: true + callsites@3.1.0: {} - /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + camel-case@4.1.2: dependencies: pascal-case: 3.1.2 tslib: 2.6.2 - dev: true - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - dev: true + camelcase-css@2.0.1: {} - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + camelcase-keys@6.2.2: dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 - dev: false - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + camelcase@5.3.1: {} - /caniuse-lite@1.0.30001576: - resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} - dev: true + caniuse-lite@1.0.30001576: {} - /caniuse-lite@1.0.30001579: - resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} - dev: true + caniuse-lite@1.0.30001579: {} - /case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} - dev: true + case-sensitive-paths-webpack-plugin@2.4.0: {} - /chai@4.4.1: - resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} - engines: {node: '>=4'} + chai@4.4.1: dependencies: assertion-error: 1.1.0 check-error: 1.0.3 @@ -5055,44 +8700,30 @@ packages: loupe: 2.3.7 pathval: 1.1.1 type-detect: 4.0.8 - dev: true - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + chalk@3.0.0: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: false + chardet@0.7.0: {} - /check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + check-error@1.0.3: dependencies: get-func-name: 2.0.2 - dev: true - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + chokidar@3.5.3: dependencies: anymatch: 3.1.3 braces: 3.0.2 @@ -5101,183 +8732,102 @@ packages: is-glob: 4.0.3 normalize-path: 3.0.0 readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - - /chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - dev: true - - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - dev: true - - /chromatic@10.6.1: - resolution: {integrity: sha512-bd4C5sEEtN83uUmbc4Fu+x7+lJIPdMUdu4D6HRDQEIDl/Tatc8+By4bZluH1pzg/MbP9vllkL6Ua9vF4EEA7VA==} - hasBin: true - peerDependencies: - chromatic-cypress: ^0.4.0 || ^1.0.0 - chromatic-playwright: ^0.4.0 || ^1.0.0 - peerDependenciesMeta: - chromatic-cypress: - optional: true - chromatic-playwright: - optional: true - dev: true + optionalDependencies: + fsevents: 2.3.3 - /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} - dev: true + chownr@1.1.4: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + chownr@2.0.0: {} - /citty@0.1.5: - resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==} + chromatic@10.6.1: {} + + chrome-trace-event@1.0.3: {} + + ci-info@3.9.0: {} + + citty@0.1.5: dependencies: consola: 3.2.3 - dev: true - /clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} + clean-css@5.3.3: dependencies: source-map: 0.6.1 - dev: true - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - dev: true + clean-stack@2.2.0: {} - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 - dev: true - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.9.2: {} - /cli-table3@0.6.3: - resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} - engines: {node: 10.* || >= 12.*} + cli-table3@0.6.3: dependencies: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 - dev: true - /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@6.0.0: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: false - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: false - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + clone@1.0.4: {} - /clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} - engines: {node: '>=6'} - dev: false + clsx@2.1.0: {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - dev: true + color-support@1.1.3: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - dev: true + colorette@2.0.20: {} - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - dev: true - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - dev: true + commander@2.20.3: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + commander@4.1.1: {} - /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - dev: true + commander@6.2.1: {} - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - dev: true + commander@7.2.0: {} - /common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - dev: true + commander@8.3.0: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - dev: true + common-path-prefix@3.0.0: {} - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + commondir@1.0.1: {} + + compressible@2.0.18: dependencies: mime-db: 1.52.0 - dev: true - /compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + compression@1.7.4: dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -5288,26 +8838,17 @@ packages: vary: 1.1.2 transitivePeerDependencies: - supports-color - dev: true - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - dev: true + concat-map@0.0.1: {} - /concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} + concat-stream@1.6.2: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.8 typedarray: 0.0.6 - dev: true - /concurrently@8.2.2: - resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==} - engines: {node: ^14.13.0 || >=16.0.0} - hasBin: true + concurrently@8.2.2: dependencies: chalk: 4.1.2 date-fns: 2.30.0 @@ -5318,103 +8859,58 @@ packages: supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 - dev: false - /consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} - dev: true + consola@3.2.3: {} - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - dev: true + console-control-strings@1.1.0: {} - /constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - dev: true + constants-browserify@1.0.0: {} - /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 - dev: true - /content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} - dev: true + content-type@1.0.5: {} - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true + convert-source-map@2.0.0: {} - /cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - dev: true + cookie-signature@1.0.6: {} - /cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} - dev: true + cookie@0.5.0: {} - /core-js-compat@3.35.0: - resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==} + core-js-compat@3.35.0: dependencies: browserslist: 4.22.2 - dev: true - /core-js-pure@3.35.0: - resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==} - requiresBuild: true - dev: true + core-js-pure@3.35.0: {} - /core-js@3.35.1: - resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==} - requiresBuild: true - dev: true + core-js@3.35.1: {} - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - dev: true + core-util-is@1.0.3: {} - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 - dev: true - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 - dev: false - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cross-spawn@7.0.3: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - dev: true + crypto-random-string@2.0.0: {} - /css-loader@3.6.0(webpack@5.89.0): - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 + css-loader@3.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: camelcase: 5.3.1 cssesc: 3.0.0 @@ -5430,132 +8926,96 @@ packages: schema-utils: 2.7.1 semver: 6.3.1 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /css-loader@6.9.0(webpack@5.89.0): - resolution: {integrity: sha512-3I5Nu4ytWlHvOP6zItjiHlefBNtrH+oehq8tnQa2kO305qpVyx9XNIT1CXIj5bgCJs7qICBCkgCYxQLKPANoLA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + css-loader@6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: - icss-utils: 5.1.0(postcss@8.4.33) - postcss: 8.4.33 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.33) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.33) - postcss-modules-scope: 3.1.0(postcss@8.4.33) - postcss-modules-values: 4.0.0(postcss@8.4.33) + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.38) + postcss-modules-scope: 3.1.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + css-select@4.3.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 4.3.1 domutils: 2.8.0 nth-check: 2.1.1 - dev: true - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - dev: true + css-select@5.1.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.1.0 + nth-check: 2.1.1 - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - dev: true + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.0.2 - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - dev: true + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - dev: true + css-what@6.1.0: {} - /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - dev: false + css.escape@1.5.1: {} - /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - dev: false + cssesc@3.0.0: {} - /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - dev: false + csso@5.0.5: + dependencies: + css-tree: 2.2.1 - /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} + csstype@3.1.3: {} + + csv-generate@3.4.3: {} + + csv-parse@4.16.3: {} + + csv-stringify@5.6.5: {} + + csv@5.5.3: dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 csv-stringify: 5.6.5 stream-transform: 2.1.3 - dev: false - /date-fns@2.30.0: - resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} - engines: {node: '>=0.11'} + date-fns@2.30.0: dependencies: '@babel/runtime': 7.23.8 - dev: false - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@2.6.9: dependencies: ms: 2.0.0 - dev: true - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.4: dependencies: ms: 2.1.2 - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 - dev: false - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - dev: false + decamelize@1.2.0: {} - /dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - dev: true + dedent@0.7.0: {} - /deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} + deep-eql@4.1.3: dependencies: type-detect: 4.0.8 - dev: true - /deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.5 @@ -5575,54 +9035,35 @@ packages: which-boxed-primitive: 1.0.2 which-collection: 1.0.1 which-typed-array: 1.1.13 - dev: true - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - dev: true + deepmerge@4.3.1: {} - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} + default-browser-id@3.0.0: dependencies: bplist-parser: 0.2.0 untildify: 4.0.0 - dev: true - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defaults@1.0.4: dependencies: clone: 1.0.4 - /define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} + define-data-property@1.1.1: dependencies: get-intrinsic: 1.2.2 gopd: 1.0.1 has-property-descriptors: 1.0.1 - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - dev: true + define-lazy-prop@2.0.0: {} - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: define-data-property: 1.1.1 has-property-descriptors: 1.0.1 object-keys: 1.1.1 - /defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - dev: true + defu@6.1.4: {} - /del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} + del@6.1.1: dependencies: globby: 11.1.0 graceful-fs: 4.2.11 @@ -5632,239 +9073,157 @@ packages: p-map: 4.0.0 rimraf: 3.0.2 slash: 3.0.0 - dev: true - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - dev: true + delayed-stream@1.0.0: {} - /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - dev: true + delegates@1.0.0: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - dev: true + depd@2.0.0: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + dequal@2.0.3: {} - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: true + destroy@1.2.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + detect-indent@6.1.0: {} - /detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - dev: true + detect-node-es@1.1.0: {} - /detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} + detect-package-manager@2.0.1: dependencies: execa: 5.1.1 - dev: true - /detect-port@1.5.1: - resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} - hasBin: true + detect-port@1.5.1: dependencies: address: 1.2.2 debug: 4.3.4 transitivePeerDependencies: - supports-color - dev: true - /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - dev: true + didyoumean@1.2.2: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + diff-sequences@29.6.3: {} - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - dev: true + dlv@1.1.3: {} - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + doctrine@3.0.0: dependencies: esutils: 2.0.3 - dev: true - /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - dev: true + dom-accessibility-api@0.5.16: {} - /dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dev: true + dom-accessibility-api@0.6.3: {} - /dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + dom-converter@0.2.0: dependencies: utila: 0.4.0 - dev: true - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dev: true - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: true + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + domelementtype@2.3.0: {} + + domhandler@4.3.1: dependencies: domelementtype: 2.3.0 - dev: true - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - dev: true - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + domutils@3.1.0: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dot-case@3.0.4: dependencies: no-case: 3.0.4 tslib: 2.6.2 - dev: true - /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - dev: true + dotenv-expand@10.0.0: {} - /dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} - dev: true + dotenv@16.3.1: {} - /duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + duplexify@3.7.1: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 2.3.8 stream-shift: 1.0.2 - dev: true - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + eastasianwidth@0.2.0: {} - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - dev: true + ee-first@1.1.1: {} - /ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} - hasBin: true + ejs@3.1.9: dependencies: jake: 10.8.7 - dev: true - /electron-to-chromium@1.4.630: - resolution: {integrity: sha512-osHqhtjojpCsACVnuD11xO5g9xaCyw7Qqn/C2KParkMv42i8jrJJgx3g7mkHfpxwhy9MnOJr8+pKOdZ7qzgizg==} - dev: true + electron-to-chromium@1.4.630: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emoji-regex@9.2.2: {} - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - dev: true + emojis-list@3.0.0: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - dev: true + encodeurl@1.0.2: {} - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - dev: true - /endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + endent@2.1.0: dependencies: dedent: 0.7.0 fast-json-parse: 1.0.3 objectorarray: 1.0.5 - dev: true - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} + enhanced-resolve@5.15.0: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - dev: true - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - dev: false - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true + entities@2.2.0: {} - /envinfo@7.11.0: - resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==} - engines: {node: '>=4'} - hasBin: true - dev: true + entities@4.5.0: {} - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + envinfo@7.11.0: {} + + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + error-stack-parser@2.1.4: dependencies: stackframe: 1.3.4 - dev: true - /es-abstract@1.22.3: - resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} - engines: {node: '>= 0.4'} + es-abstract@1.22.3: dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.2 @@ -5905,10 +9264,8 @@ packages: typed-array-length: 1.0.4 unbox-primitive: 1.0.2 which-typed-array: 1.1.13 - dev: false - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-get-iterator@1.1.3: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 @@ -5919,56 +9276,35 @@ packages: is-string: 1.0.7 isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - dev: true - /es-module-lexer@1.4.1: - resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} - dev: true + es-module-lexer@1.4.1: {} - /es-set-tostringtag@2.0.2: - resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} - engines: {node: '>= 0.4'} + es-set-tostringtag@2.0.2: dependencies: get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 hasown: 2.0.0 - dev: false - /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.0.2: dependencies: hasown: 2.0.0 - dev: false - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - dev: false - /esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} - dev: true + esbuild-plugin-alias@0.2.1: {} - /esbuild-register@3.5.0(esbuild@0.18.20): - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} - peerDependencies: - esbuild: '>=0.12 <1' + esbuild-register@3.5.0(esbuild@0.18.20): dependencies: debug: 4.3.4 esbuild: 0.18.20 transitivePeerDependencies: - supports-color - dev: true - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.18.20: optionalDependencies: '@esbuild/android-arm': 0.18.20 '@esbuild/android-arm64': 0.18.20 @@ -5992,13 +9328,8 @@ packages: '@esbuild/win32-arm64': 0.18.20 '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - dev: true - /esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.19.11: optionalDependencies: '@esbuild/aix-ppc64': 0.19.11 '@esbuild/android-arm': 0.19.11 @@ -6024,78 +9355,42 @@ packages: '@esbuild/win32-ia32': 0.19.11 '@esbuild/win32-x64': 0.19.11 - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + escalade@3.1.1: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - dev: true + escape-html@1.0.3: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + escape-string-regexp@1.0.5: {} - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 esutils: 2.0.3 optionalDependencies: source-map: 0.6.1 - dev: true - - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + + eslint-scope@5.1.1: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - dev: true - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + esprima@4.0.1: {} - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - dev: true - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - dev: true + estraverse@4.3.0: {} - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - dev: true + estraverse@5.3.0: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - dev: true + esutils@2.0.3: {} - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - dev: true + etag@1.8.1: {} - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - dev: true + events@3.3.0: {} - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@5.1.1: dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -6107,9 +9402,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + execa@8.0.1: dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -6120,11 +9413,8 @@ packages: onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 - dev: true - /express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: '>= 0.10.0'} + express@4.18.2: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -6159,28 +9449,18 @@ packages: vary: 1.1.2 transitivePeerDependencies: - supports-color - dev: true - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - dev: true + extend@3.0.2: {} - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: false + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: false - /extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true + extract-zip@1.7.0: dependencies: concat-stream: 1.6.2 debug: 2.6.9 @@ -6188,15 +9468,10 @@ packages: yauzl: 2.10.0 transitivePeerDependencies: - supports-color - dev: true - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - dev: true + fast-deep-equal@3.1.3: {} - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -6204,57 +9479,38 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - dev: true + fast-json-parse@1.0.3: {} - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - dev: true + fast-json-stable-stringify@2.1.0: {} - /fastq@1.16.0: - resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + fastq@1.16.0: dependencies: reusify: 1.0.4 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 - dev: true - /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fd-slicer@1.1.0: dependencies: pend: 1.2.0 - dev: true - /fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - dev: true + fetch-retry@5.0.6: {} - /file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} + file-system-cache@2.3.0: dependencies: fs-extra: 11.1.1 ramda: 0.29.0 - dev: true - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: minimatch: 5.1.6 - dev: true - /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 - /finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + finalhandler@1.2.0: dependencies: debug: 2.6.9 encodeurl: 1.0.2 @@ -6265,106 +9521,68 @@ packages: unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - dev: true - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + find-cache-dir@3.3.2: dependencies: commondir: 1.0.1 make-dir: 3.1.0 pkg-dir: 4.2.0 - dev: true - /find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} + find-cache-dir@4.0.0: dependencies: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 - dev: true - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - dev: true - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + find-up@6.3.0: dependencies: locate-path: 7.2.0 path-exists: 5.0.0 - dev: true - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + find-yarn-workspace-root2@1.2.16: dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 - dev: false - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@3.2.0: dependencies: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 - dev: true - /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} - dev: true + flatted@3.2.9: {} - /flow-parser@0.226.0: - resolution: {integrity: sha512-YlH+Y/P/5s0S7Vg14RwXlJMF/JsGfkG7gcKB/zljyoqaPNX9YVsGzx+g6MLTbhZaWbPhs4347aTpmSb9GgiPtw==} - engines: {node: '>=0.4.0'} - dev: true + flow-parser@0.226.0: {} - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.3: dependencies: is-callable: 1.2.7 - /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + foreground-child@3.1.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.89.0): - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - webpack: ^5.11.0 + fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@babel/code-frame': 7.23.5 chalk: 4.1.2 @@ -6380,121 +9598,74 @@ packages: tapable: 2.2.1 typescript: 4.9.5 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - dev: true + forwarded@0.2.0: {} - /fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - dev: true + fraction.js@4.3.7: {} - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - dev: true + fresh@0.5.2: {} - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - dev: true + fs-constants@1.0.0: {} - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} + fs-extra@11.1.1: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} + fs-extra@11.2.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: false - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: false - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@2.1.0: dependencies: minipass: 3.3.6 - dev: true - /fs-monkey@1.0.5: - resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} - dev: true + fs-monkey@1.0.5: {} - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - dev: true + fs.realpath@1.0.0: {} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + function-bind@1.1.2: {} - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.6: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 functions-have-names: 1.2.3 - dev: false - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + functions-have-names@1.2.3: {} - /gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} + gauge@3.0.2: dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -6505,70 +9676,38 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 - dev: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - dev: true + gensync@1.0.0-beta.2: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: false + get-caller-file@2.0.5: {} - /get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - dev: true + get-func-name@2.0.2: {} - /get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + get-intrinsic@1.2.2: dependencies: function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 hasown: 2.0.0 - /get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} - dev: true + get-nonce@1.0.1: {} - /get-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} - dev: true + get-npm-tarball-url@2.1.0: {} - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - dev: true + get-package-type@0.1.0: {} - /get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - dev: true + get-port@5.1.1: {} - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + get-stream@6.0.1: {} - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - dev: true + get-stream@8.0.1: {} - /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} + get-symbol-description@1.0.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 - dev: false - /giget@1.2.1: - resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==} - hasBin: true + giget@1.2.1: dependencies: citty: 0.1.5 consola: 3.2.3 @@ -6578,33 +9717,20 @@ packages: ohash: 1.1.3 pathe: 1.1.2 tar: 6.2.0 - dev: true - /github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - dev: true + github-slugger@1.5.0: {} - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - dev: true - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: true + glob-to-regexp@0.4.1: {} - /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + glob@10.3.10: dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 @@ -6612,8 +9738,7 @@ packages: minipass: 7.0.4 path-scurry: 1.10.1 - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6621,23 +9746,14 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - dev: true + globals@11.12.0: {} - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + globalthis@1.0.3: dependencies: define-properties: 1.2.1 - dev: false - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -6646,21 +9762,15 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + gopd@1.0.1: dependencies: get-intrinsic: 1.2.2 - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graceful-fs@4.2.11: {} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - dev: false + grapheme-splitter@1.0.4: {} - /gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true + gunzip-maybe@1.4.2: dependencies: browserify-zlib: 0.1.4 is-deflate: 1.0.0 @@ -6668,12 +9778,8 @@ packages: peek-stream: 1.1.3 pumpify: 1.5.1 through2: 2.0.5 - dev: true - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + handlebars@4.7.8: dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -6681,69 +9787,40 @@ packages: wordwrap: 1.0.0 optionalDependencies: uglify-js: 3.17.4 - dev: true - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: false + hard-rejection@2.1.0: {} - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + has-bigints@1.0.2: {} - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + has-flag@3.0.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + has-flag@4.0.0: {} - /has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + has-property-descriptors@1.0.1: dependencies: get-intrinsic: 1.2.2 - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} + has-proto@1.0.1: {} - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + has-symbols@1.0.3: {} - /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + has-tostringtag@1.0.0: dependencies: has-symbols: 1.0.3 - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - dev: true + has-unicode@2.0.1: {} - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} + hasown@2.0.0: dependencies: function-bind: 1.1.2 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - dev: true + he@1.2.0: {} - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + hosted-git-info@2.8.9: {} - /html-entities@2.4.0: - resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==} - dev: true + html-entities@2.4.0: {} - /html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true + html-minifier-terser@6.1.0: dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -6752,421 +9829,241 @@ packages: param-case: 3.0.4 relateurl: 0.2.7 terser: 5.26.0 - dev: true - /html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - dev: true + html-tags@3.3.1: {} - /html-webpack-plugin@5.6.0(webpack@5.89.0): - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: ^5.20.0 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + html-webpack-plugin@5.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 + optionalDependencies: webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + htmlparser2@6.1.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - dev: true - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 setprototypeof: 1.2.0 statuses: 2.0.1 toidentifier: 1.0.1 - dev: true - /https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} + https-proxy-agent@4.0.0: dependencies: agent-base: 5.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color - dev: true - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: false + human-id@1.0.2: {} - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + human-signals@2.1.0: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - dev: true + human-signals@5.0.0: {} - /husky@8.0.3: - resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} - engines: {node: '>=14'} - hasBin: true - dev: true + husky@8.0.3: {} - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - /icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} + icss-utils@4.1.1: dependencies: postcss: 7.0.39 - dev: true - /icss-utils@5.1.0(postcss@8.4.33): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + icss-utils@5.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - dev: true + postcss: 8.4.38 - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - dev: true + ieee754@1.2.1: {} - /ignore@5.3.0: - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} - engines: {node: '>= 4'} + ignore@5.3.0: {} - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - dev: true - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - dev: true + imurmurhash@0.1.4: {} - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + indent-string@4.0.0: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - dev: true - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: true + inherits@2.0.4: {} - /internal-slot@1.0.6: - resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} - engines: {node: '>= 0.4'} + internal-slot@1.0.6: dependencies: get-intrinsic: 1.2.2 hasown: 2.0.0 side-channel: 1.0.4 - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + invariant@2.2.4: dependencies: loose-envify: 1.4.0 - dev: true - /ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} - dev: true + ip@2.0.0: {} - /ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - dev: true + ipaddr.js@1.9.1: {} - /is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} - dev: true + is-absolute-url@3.0.3: {} - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + is-arguments@1.1.1: dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 - dev: true - /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + is-array-buffer@3.0.2: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.2.1: {} - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.2.0 - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + is-boolean-object@1.1.2: dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + is-callable@1.2.7: {} - /is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + is-core-module@2.13.1: dependencies: hasown: 2.0.0 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + is-date-object@1.0.5: dependencies: has-tostringtag: 1.0.0 - /is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} - dev: true + is-deflate@1.0.0: {} - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - dev: true + is-docker@2.2.1: {} - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + is-extglob@2.1.1: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + is-fullwidth-code-point@3.0.0: {} - /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + is-generator-function@1.0.10: dependencies: has-tostringtag: 1.0.0 - dev: true - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} - dev: true - - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - dev: true + is-gzip@1.0.0: {} - /is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} - dev: true + is-interactive@1.0.0: {} - /is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + is-map@2.0.2: {} + + is-nan@1.3.2: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 - dev: true - /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - dev: false + is-negative-zero@2.0.2: {} - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + is-number-object@1.0.7: dependencies: has-tostringtag: 1.0.0 - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + is-number@7.0.0: {} - /is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} - dev: true + is-path-cwd@2.2.0: {} - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true + is-path-inside@3.0.3: {} - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: false + is-plain-obj@1.1.0: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - dev: true - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - dev: true + is-plain-object@5.0.0: {} - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + is-regex@1.1.4: dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 - /is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} - dev: true + is-set@2.0.2: {} - /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + is-shared-array-buffer@1.0.2: dependencies: call-bind: 1.0.5 - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + is-stream@2.0.1: {} - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + is-stream@3.0.0: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + is-string@1.0.7: dependencies: has-tostringtag: 1.0.0 - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: false - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 - /is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.12: dependencies: which-typed-array: 1.1.13 - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true + is-unicode-supported@0.1.0: {} - /is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} - dev: true + is-weakmap@2.0.1: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.0.2: dependencies: call-bind: 1.0.5 - dev: false - /is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + is-weakset@2.0.2: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 - dev: true - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: false + is-windows@1.0.2: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - dev: true - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - dev: true + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + isexe@2.0.0: {} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: true + isobject@3.0.1: {} - /istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} - dev: true + istanbul-lib-coverage@3.2.2: {} - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.23.7 '@babel/parser': 7.23.6 @@ -7175,30 +10072,21 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + jackspeak@2.3.6: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true + jake@10.8.7: dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 - dev: true - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-haste-map@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 @@ -7213,24 +10101,15 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - dev: true - /jest-mock@27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + jest-mock@27.5.1: dependencies: '@jest/types': 27.5.1 '@types/node': 20.11.1 - dev: true - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + jest-regex-util@29.6.3: {} - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 20.11.1 @@ -7238,55 +10117,32 @@ packages: ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + jest-worker@27.5.1: dependencies: '@types/node': 20.11.1 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.7.0: dependencies: '@types/node': 20.11.1 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true - dev: true + jiti@1.21.0: {} - /joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} - dev: false + joycon@3.1.1: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /jscodeshift@0.15.1(@babel/preset-env@7.23.8): - resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - peerDependenciesMeta: - '@babel/preset-env': - optional: true + jscodeshift@0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)): dependencies: '@babel/core': 7.23.7 '@babel/parser': 7.23.6 @@ -7295,7 +10151,6 @@ packages: '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) - '@babel/preset-env': 7.23.8(@babel/core@7.23.7) '@babel/preset-flow': 7.23.3(@babel/core@7.23.7) '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7) '@babel/register': 7.23.7(@babel/core@7.23.7) @@ -7309,331 +10164,195 @@ packages: recast: 0.23.4 temp: 0.8.4 write-file-atomic: 2.4.3 + optionalDependencies: + '@babel/preset-env': 7.23.8(@babel/core@7.23.7) transitivePeerDependencies: - supports-color - dev: true - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - dev: true + jsesc@0.5.0: {} - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - dev: true + jsesc@2.5.2: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: true + json-buffer@3.0.1: {} - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + json-parse-even-better-errors@2.3.1: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - dev: true + json-schema-traverse@0.4.1: {} - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: true + json-schema-traverse@1.0.0: {} - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true + json5@1.0.2: dependencies: minimist: 1.2.8 - dev: true - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - dev: true + json5@2.2.3: {} - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: false - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - dev: true - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - dev: true - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - dev: true + kleur@3.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: false + kleur@4.1.5: {} - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} - dev: true + klona@2.0.6: {} - /lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} + lazy-universal-dotenv@4.0.0: dependencies: app-root-dir: 1.0.2 dotenv: 16.3.1 dotenv-expand: 10.0.0 - dev: true - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - dev: true + leven@3.1.0: {} - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - dev: true + lilconfig@2.1.0: {} - /lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} + lilconfig@3.0.0: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@1.2.4: {} - /load-tsconfig@0.2.5: - resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: false + load-tsconfig@0.2.5: {} - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: false - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - dev: true + loader-runner@4.3.0: {} - /loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} + loader-utils@1.4.2: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 1.0.2 - dev: true - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + loader-utils@2.0.4: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - dev: true - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - dev: true - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + locate-path@7.2.0: dependencies: p-locate: 6.0.0 - dev: true - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: true + lodash.debounce@4.0.8: {} - /lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - dev: false + lodash.sortby@4.7.0: {} - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: false + lodash.startcase@4.4.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lodash@4.17.21: {} - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: true - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - dev: true - /loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + loupe@2.3.7: dependencies: get-func-name: 2.0.2 - dev: true - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lower-case@2.0.2: dependencies: tslib: 2.6.2 - dev: true - /lru-cache@10.1.0: - resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} - engines: {node: 14 || >=16.14} + lru-cache@10.1.0: {} - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - dev: false - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - dev: true - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - dev: true + lz-string@1.5.0: {} - /magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} + magic-string@0.30.5: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 - dev: true - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + make-dir@3.1.0: dependencies: semver: 6.3.1 - dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + makeerror@1.0.12: dependencies: tmpl: 1.0.5 - dev: true - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - dev: false + map-obj@1.0.1: {} - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: false + map-obj@4.3.0: {} - /map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - dev: true + map-or-similar@1.5.0: {} - /markdown-to-jsx@7.4.0(react@18.2.0): - resolution: {integrity: sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' + markdown-to-jsx@7.4.0(react@18.2.0): dependencies: react: 18.2.0 - dev: true - /mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + mdast-util-definitions@4.0.0: dependencies: unist-util-visit: 2.0.3 - dev: true - /mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - dev: true + mdast-util-to-string@1.1.0: {} - /media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} - dev: true + mdn-data@2.0.28: {} - /memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + mdn-data@2.0.30: {} + + media-typer@0.3.0: {} + + memfs@3.5.3: dependencies: fs-monkey: 1.0.5 - dev: true - /memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + memoizerific@1.11.3: dependencies: map-or-similar: 1.5.0 - dev: true - /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} + meow@6.1.1: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -7646,360 +10365,204 @@ packages: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 - dev: false - /merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - dev: true + merge-descriptors@1.0.1: {} - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge2@1.4.1: {} - /methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - dev: true + methods@1.1.2: {} - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + micromatch@4.0.5: dependencies: braces: 3.0.2 picomatch: 2.3.1 - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - dev: true + mime-db@1.52.0: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - dev: true - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: true + mime@1.6.0: {} - /mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - dev: true + mime@2.6.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mimic-fn@2.1.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - dev: true + mimic-fn@4.0.0: {} - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + min-indent@1.0.1: {} - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - dev: true - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.3: dependencies: brace-expansion: 2.0.1 - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + minimist-options@4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: false - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true + minimist@1.2.8: {} - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - dev: true - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - dev: true + minipass@5.0.0: {} - /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} + minipass@7.0.4: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - dev: true - /mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - dev: false + mixme@0.5.10: {} - /mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - dev: true + mkdirp-classic@0.5.3: {} - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mkdirp@0.5.6: dependencies: minimist: 1.2.8 - dev: true - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - dev: true + mkdirp@1.0.4: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - dev: true + ms@2.0.0: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.1.2: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - dev: true + ms@2.1.3: {} - /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.7: {} - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - dev: true + negotiator@0.6.3: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - dev: true + neo-async@2.6.2: {} - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.6.2 - dev: true - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: true + node-abort-controller@3.1.1: {} - /node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - dev: true - /node-fetch-native@1.6.1: - resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} - dev: true + node-fetch-native@1.6.1: {} - /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 - dev: true - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - dev: true + node-int64@0.4.0: {} - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - dev: true + node-releases@2.0.14: {} - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - dev: true + normalize-range@0.1.2: {} - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /npm-run-path@5.2.0: - resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.2.0: dependencies: path-key: 4.0.0 - dev: true - /npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + npmlog@5.0.1: dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 - dev: true - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - dev: true - /nypm@0.3.4: - resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==} - engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true + nypm@0.3.4: dependencies: citty: 0.1.5 execa: 8.0.1 pathe: 1.1.2 ufo: 1.3.2 - dev: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + object-assign@4.1.1: {} - /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} - dev: true + object-hash@3.0.0: {} - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + object-inspect@1.13.1: {} - /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} + object-is@1.1.5: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 - dev: true - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + object-keys@1.1.1: {} - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + object.assign@4.1.5: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - dev: true + objectorarray@1.0.5: {} - /ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} - dev: true + ohash@1.1.3: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - dev: true - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - dev: true + on-headers@1.0.2: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - dev: true - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - dev: true - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -8010,296 +10573,165 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: false + os-tmpdir@1.0.2: {} - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: false + outdent@0.5.0: {} - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - dev: false - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-limit@4.0.0: dependencies: yocto-queue: 1.0.0 - dev: true - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - dev: true - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-locate@6.0.0: dependencies: p-limit: 4.0.0 - dev: true - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - dev: false + p-map@2.1.0: {} - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - dev: true - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + p-try@2.2.0: {} - /pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} - dev: true + pako@0.2.9: {} - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + param-case@3.0.4: dependencies: dot-case: 3.0.4 tslib: 2.6.2 - dev: true - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - dev: true - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - dev: true + parseurl@1.3.3: {} - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + pascal-case@3.1.2: dependencies: no-case: 3.0.4 tslib: 2.6.2 - dev: true - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - dev: true + path-browserify@1.0.1: {} - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - dev: true + path-exists@3.0.0: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + path-exists@4.0.0: {} - /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + path-exists@5.0.0: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - dev: true + path-is-absolute@1.0.1: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-key@3.1.1: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - dev: true + path-key@4.0.0: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-parse@1.0.7: {} - /path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.10.1: dependencies: lru-cache: 10.1.0 minipass: 7.0.4 - /path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - dev: true + path-to-regexp@0.1.7: {} - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + path-type@4.0.0: {} - /pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - dev: true + pathe@1.1.2: {} - /pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - dev: true + pathval@1.1.1: {} - /peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + peek-stream@1.1.3: dependencies: buffer-from: 1.1.2 duplexify: 3.7.1 through2: 2.0.5 - dev: true - /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - dev: true + pend@1.2.0: {} - /picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - dev: true + picocolors@0.2.1: {} - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.0.0: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picomatch@2.3.1: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - dev: true + pify@2.3.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + pify@4.0.1: {} - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + pirates@4.0.6: {} - /pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - dev: true - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - /pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} + pkg-dir@5.0.0: dependencies: find-up: 5.0.0 - dev: true - /pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} + pkg-dir@7.0.0: dependencies: find-up: 6.3.0 - dev: true - /polished@4.2.2: - resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} - engines: {node: '>=10'} + polished@4.2.2: dependencies: '@babel/runtime': 7.23.8 - dev: true - /postcss-import@15.1.0(postcss@8.4.33): - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-import@15.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - dev: true - /postcss-js@4.0.1(postcss@8.4.33): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 + postcss-js@4.0.1(postcss@8.4.38): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.33 - dev: true + postcss: 8.4.38 - /postcss-load-config@4.0.2(postcss@8.4.33): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@4.0.2(postcss@8.4.38): dependencies: lilconfig: 3.0.0 - postcss: 8.4.33 yaml: 2.3.4 + optionalDependencies: + postcss: 8.4.38 - /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.89.0): - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^4.0.0 || ^5.0.0 + postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 @@ -8308,243 +10740,147 @@ packages: schema-utils: 3.3.0 semver: 7.5.4 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} + postcss-modules-extract-imports@2.0.0: dependencies: postcss: 7.0.39 - dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.33): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-extract-imports@3.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - dev: true + postcss: 8.4.38 - /postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} + postcss-modules-local-by-default@3.0.3: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 - dev: true - /postcss-modules-local-by-default@4.0.3(postcss@8.4.33): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-local-by-default@4.0.3(postcss@8.4.38): dependencies: - icss-utils: 5.1.0(postcss@8.4.33) - postcss: 8.4.33 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 postcss-selector-parser: 6.0.15 postcss-value-parser: 4.2.0 - dev: true - /postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} + postcss-modules-scope@2.2.0: dependencies: postcss: 7.0.39 postcss-selector-parser: 6.0.15 - dev: true - /postcss-modules-scope@3.1.0(postcss@8.4.33): - resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-scope@3.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-selector-parser: 6.0.15 - dev: true - /postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + postcss-modules-values@3.0.0: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 - dev: true - /postcss-modules-values@4.0.0(postcss@8.4.33): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-values@4.0.0(postcss@8.4.38): dependencies: - icss-utils: 5.1.0(postcss@8.4.33) - postcss: 8.4.33 - dev: true + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 - /postcss-nested@6.0.1(postcss@8.4.33): - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 + postcss-nested@6.0.1(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-selector-parser: 6.0.15 - dev: true - /postcss-selector-parser@6.0.15: - resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} - engines: {node: '>=4'} + postcss-selector-parser@6.0.15: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - dev: true - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - dev: true + postcss-value-parser@4.2.0: {} - /postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} + postcss@7.0.39: dependencies: picocolors: 0.2.1 source-map: 0.6.1 - dev: true - /postcss@8.4.33: - resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.38: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 - /preferred-pm@3.1.2: - resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} - engines: {node: '>=10'} + preferred-pm@3.1.2: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.0.0 - dev: false - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true + prettier@2.8.8: {} - /pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 renderkid: 3.0.0 - dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 - dev: true - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 - dev: true - /pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} - dev: true + pretty-hrtime@1.0.3: {} - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - dev: true + process-nextick-args@2.0.1: {} - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - dev: true + process@0.11.10: {} - /progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - dev: true + progress@2.0.3: {} - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - dev: true - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - dev: true - /proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + proxy-addr@2.0.7: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - dev: true - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - dev: true + proxy-from-env@1.1.0: {} - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: false + pseudomap@1.0.2: {} - /pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + pump@2.0.1: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: true - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: true - /pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + pumpify@1.5.1: dependencies: duplexify: 3.7.1 inherits: 2.0.4 pump: 2.0.1 - dev: true - /punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - dev: true + punycode@1.4.1: {} - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + punycode@2.3.1: {} - /puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} + puppeteer-core@2.1.1: dependencies: '@types/mime-types': 2.1.4 debug: 4.3.4 @@ -8560,86 +10896,49 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + qs@6.11.0: dependencies: side-channel: 1.0.4 - dev: true - /qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} - engines: {node: '>=0.6'} + qs@6.11.2: dependencies: side-channel: 1.0.4 - dev: true - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: false + quick-lru@4.0.1: {} - /ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} - dev: true + ramda@0.29.0: {} - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - dev: true - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - dev: true + range-parser@1.2.1: {} - /raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} + raw-body@2.5.1: dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - dev: true - /react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: true - /react-confetti@6.1.0(react@18.2.0): - resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==} - engines: {node: '>=10.18'} - peerDependencies: - react: ^16.3.0 || ^17.0.1 || ^18.0.0 + react-confetti@6.1.0(react@18.2.0): dependencies: react: 18.2.0 tween-functions: 1.2.0 - dev: true - /react-docgen-typescript@2.2.2(typescript@4.9.5): - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' + react-docgen-typescript@2.2.2(typescript@4.9.5): dependencies: typescript: 4.9.5 - dev: true - /react-docgen@7.0.3: - resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} - engines: {node: '>=16.14.0'} + react-docgen@7.0.3: dependencies: '@babel/core': 7.23.7 '@babel/traverse': 7.23.7 @@ -8653,146 +10952,88 @@ packages: strip-indent: 4.0.0 transitivePeerDependencies: - supports-color - dev: true - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: ^18.2.0 + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 react: 18.2.0 scheduler: 0.23.0 - dev: true - /react-element-to-jsx-string@15.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-is: 18.1.0 - dev: true - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: true + react-is@16.13.1: {} - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - dev: true + react-is@17.0.2: {} - /react-is@18.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} - dev: true + react-is@18.1.0: {} - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - dev: true + react-is@18.2.0: {} - /react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.14.0: {} - /react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0): - resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0): dependencies: - '@types/react': 18.2.48 react: 18.2.0 react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) tslib: 2.6.2 - dev: true + optionalDependencies: + '@types/react': 18.2.48 - /react-remove-scroll@2.5.5(@types/react@18.2.48)(react@18.2.0): - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-remove-scroll@2.5.5(@types/react@18.2.48)(react@18.2.0): dependencies: - '@types/react': 18.2.48 react: 18.2.0 react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) tslib: 2.6.2 use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0) - dev: true + optionalDependencies: + '@types/react': 18.2.48 - /react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0): - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0): dependencies: - '@types/react': 18.2.48 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 tslib: 2.6.2 - dev: true + optionalDependencies: + '@types/react': 18.2.48 - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + react@18.2.0: dependencies: loose-envify: 1.4.0 - dev: true - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.0: dependencies: pify: 2.3.0 - dev: true - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + read-pkg-up@7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + read-pkg@5.2.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: false - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -8801,72 +11042,49 @@ packages: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 - dev: true - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - dev: true - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /recast@0.23.4: - resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} - engines: {node: '>= 4'} + recast@0.23.4: dependencies: assert: 2.1.0 ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.6.2 - dev: true - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.1.1: dependencies: regenerate: 1.4.2 - dev: true - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: true + regenerate@1.4.2: {} - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-runtime@0.14.1: {} - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + regenerator-transform@0.15.2: dependencies: '@babel/runtime': 7.23.8 - dev: true - /regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.1: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 set-function-name: 2.0.1 - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + regexpu-core@5.3.2: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -8874,116 +11092,71 @@ packages: regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - dev: true - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 - dev: true - /relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - dev: true + relateurl@0.2.7: {} - /remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + remark-external-links@8.0.0: dependencies: extend: 3.0.2 is-absolute-url: 3.0.3 mdast-util-definitions: 4.0.0 space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 - dev: true - /remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + remark-slug@6.1.0: dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 - dev: true - /renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + renderkid@3.0.0: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 htmlparser2: 6.1.0 lodash: 4.17.21 strip-ansi: 6.0.1 - dev: true - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - dev: false + require-directory@2.1.1: {} - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - dev: true + require-from-string@2.0.2: {} - /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - dev: false + require-main-filename@2.0.0: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - dev: true + resolve-from@4.0.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolve-from@5.0.0: {} - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.8: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + reusify@1.0.4: {} - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.3 - dev: true - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - hasBin: true + rimraf@2.7.1: dependencies: glob: 7.2.3 - dev: true - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - dev: true - /rollup@4.9.6: - resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.9.6: dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -9001,102 +11174,66 @@ packages: '@rollup/rollup-win32-ia32-msvc': 4.9.6 '@rollup/rollup-win32-x64-msvc': 4.9.6 fsevents: 2.3.3 - dev: false - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.1: dependencies: tslib: 2.6.2 - dev: false - /safe-array-concat@1.1.0: - resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 - dev: false - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - dev: true + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: true + safe-buffer@5.2.1: {} - /safe-regex-test@1.0.2: - resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} - engines: {node: '>= 0.4'} + safe-regex-test@1.0.2: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-regex: 1.1.4 - dev: false - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + safer-buffer@2.1.2: {} - /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + scheduler@0.23.0: dependencies: loose-envify: 1.4.0 - dev: true - /schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} + schema-utils@2.7.1: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + schema-utils@3.3.0: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + schema-utils@4.2.0: dependencies: '@types/json-schema': 7.0.15 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) - dev: true - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true + semver@5.7.2: {} - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - dev: true + semver@6.3.1: {} - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true + semver@7.5.4: dependencies: lru-cache: 6.0.0 - /send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@0.18.0: dependencies: debug: 2.6.9 depd: 2.0.0 @@ -9113,17 +11250,12 @@ packages: statuses: 2.0.1 transitivePeerDependencies: - supports-color - dev: true - /serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 - dev: true - /serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + serve-static@1.15.0: dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -9131,14 +11263,10 @@ packages: send: 0.18.0 transitivePeerDependencies: - supports-color - dev: true - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + set-blocking@2.0.0: {} - /set-function-length@1.2.0: - resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} - engines: {node: '>= 0.4'} + set-function-length@1.2.0: dependencies: define-data-property: 1.1.1 function-bind: 1.1.2 @@ -9146,84 +11274,51 @@ packages: gopd: 1.0.1 has-property-descriptors: 1.0.1 - /set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: '>= 0.4'} + set-function-name@2.0.1: dependencies: define-data-property: 1.1.1 functions-have-names: 1.2.3 has-property-descriptors: 1.0.1 - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - dev: true + setprototypeof@1.2.0: {} - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - dev: true - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - dev: false - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: false + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: false + shell-quote@1.8.1: {} - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + side-channel@1.0.4: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 object-inspect: 1.13.1 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + signal-exit@4.1.0: {} - /simple-update-notifier@2.0.0: - resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} - engines: {node: '>=10'} + simple-update-notifier@2.0.0: dependencies: semver: 7.5.4 - dev: true - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - dev: true + sisteransi@1.0.5: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + slash@3.0.0: {} - /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true + smartwrap@2.0.2: dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -9231,95 +11326,60 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 - dev: false - /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + source-map-js@1.0.2: {} - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-js@1.2.0: {} + + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - dev: true + source-map@0.6.1: {} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - dev: true + source-map@0.7.4: {} - /source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} + source-map@0.8.0-beta.0: dependencies: whatwg-url: 7.1.0 - dev: false - /space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - dev: true + space-separated-tokens@1.1.5: {} - /spawn-command@0.0.2: - resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} - dev: false + spawn-command@0.0.2: {} - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@2.0.0: dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 - dev: false - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.16 - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + spdx-exceptions@2.3.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.16 - /spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + spdx-license-ids@3.0.16: {} - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.0.3: {} - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - dev: true + stackframe@1.3.4: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - dev: true + statuses@2.0.1: {} - /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + stop-iteration-iterator@1.0.0: dependencies: internal-slot: 1.0.6 - dev: true - /store2@2.14.2: - resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} - dev: true + store2@2.14.2: {} - /storybook@7.6.8: - resolution: {integrity: sha512-ugRtDSs2eTgHMOZ3wKXbUEbPnlJ2XImPbnvxNssK14py2mHKwPnhSqLNrjlQMkmkO13GdjalLDyj4lZtoYdo0Q==} - hasBin: true + storybook@7.6.8: dependencies: '@storybook/cli': 7.6.8 transitivePeerDependencies: @@ -9327,139 +11387,86 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /stream-shift@1.0.2: - resolution: {integrity: sha512-rV4Bovi9xx0BFzOb/X0B2GqoIjvqPCttZdu0Wgtx2Dxkj7ETyWl9gmqJ4EutWRLvtZWm8dxE+InQZX1IryZn/w==} - dev: true + stream-shift@1.0.2: {} - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + stream-transform@2.1.3: dependencies: mixme: 0.5.10 - dev: false - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: '>= 0.4'} + string.prototype.trim@1.2.8: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: false - /string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + string.prototype.trimend@1.0.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: false - /string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + string.prototype.trimstart@1.0.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: false - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - dev: true - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - dev: true - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: ansi-regex: 6.0.1 - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - dev: false + strip-bom@3.0.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - dev: true + strip-final-newline@3.0.0: {} - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - /strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} + strip-indent@4.0.0: dependencies: min-indent: 1.0.1 - dev: true - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - dev: true + strip-json-comments@3.1.1: {} - /style-loader@1.3.0(webpack@5.89.0): - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 + style-loader@1.3.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /style-loader@3.3.4(webpack@5.89.0): - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + style-loader@3.3.4(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + sucrase@3.35.0: dependencies: '@jridgewell/gen-mapping': 0.3.3 commander: 4.1.1 @@ -9469,52 +11476,42 @@ packages: pirates: 4.0.6 ts-interface-checker: 0.1.13 - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /swc-loader@0.2.3(@swc/core@1.3.103)(webpack@5.89.0): - resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} - peerDependencies: - '@swc/core': ^1.2.147 - webpack: '>=2' + svgo@3.3.2: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.1.0 + css-tree: 2.3.1 + css-what: 6.1.0 + csso: 5.0.5 + picocolors: 1.0.0 + + swc-loader@0.2.3(@swc/core@1.3.103)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@swc/core': 1.3.103 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - dev: true + synchronous-promise@2.0.17: {} - /tailwind-merge@2.2.1: - resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} + tailwind-merge@2.2.1: dependencies: '@babel/runtime': 7.23.8 - dev: false - /tailwindcss@3.4.1: - resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} - engines: {node: '>=14.0.0'} - hasBin: true + tailwindcss@3.4.1: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -9530,46 +11527,35 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.33 - postcss-import: 15.1.0(postcss@8.4.33) - postcss-js: 4.0.1(postcss@8.4.33) - postcss-load-config: 4.0.2(postcss@8.4.33) - postcss-nested: 6.0.1(postcss@8.4.33) + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38) + postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.15 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: - ts-node - dev: true - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - dev: true + tapable@2.2.1: {} - /tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + tar-fs@2.1.1: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 pump: 3.0.0 tar-stream: 2.2.0 - dev: true - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + tar-stream@2.2.0: dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: '>=10'} + tar@6.2.0: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -9577,205 +11563,107 @@ packages: minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 - dev: true - /telejson@7.2.0: - resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + telejson@7.2.0: dependencies: memoizerific: 1.11.3 - dev: true - /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - dev: true + temp-dir@2.0.0: {} - /temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + temp@0.8.4: dependencies: rimraf: 2.6.3 - dev: true - /tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} + tempy@1.0.1: dependencies: del: 6.1.1 is-stream: 2.0.1 temp-dir: 2.0.0 type-fest: 0.16.0 unique-string: 2.0.0 - dev: true - - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: false - /terser-webpack-plugin@5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0): - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true + term-size@2.2.1: {} + + terser-webpack-plugin@5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@jridgewell/trace-mapping': 0.3.21 - '@swc/core': 1.3.103 - esbuild: 0.19.11 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.26.0 webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true + optionalDependencies: + '@swc/core': 1.3.103 + esbuild: 0.19.11 - /terser@5.26.0: - resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} - engines: {node: '>=10'} - hasBin: true + terser@5.26.0: dependencies: '@jridgewell/source-map': 0.3.5 acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 - dev: true - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - dev: true - /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 - /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + thenify@3.3.1: dependencies: any-promise: 1.3.0 - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + through2@2.0.5: dependencies: readable-stream: 2.3.8 xtend: 4.0.2 - dev: true - /tiny-invariant@1.3.1: - resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} - dev: true + tiny-invariant@1.3.1: {} - /tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - dev: false + tinycolor2@1.6.0: {} - /tinyspy@2.2.0: - resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} - engines: {node: '>=14.0.0'} - dev: true + tinyspy@2.2.0: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: false - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - dev: true + tmpl@1.0.5: {} - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - dev: true + to-fast-properties@2.0.0: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /tocbot@4.25.0: - resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==} - dev: true + tocbot@4.25.0: {} - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - dev: true + toidentifier@1.0.1: {} - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true + tr46@0.0.3: {} - /tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + tr46@1.0.1: dependencies: punycode: 2.3.1 - dev: false - /tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - dev: false + tree-kill@1.2.2: {} - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: false + trim-newlines@3.0.1: {} - /ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} - dev: true + ts-dedent@2.2.0: {} - /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + ts-interface-checker@0.1.13: {} - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true + tslib@1.14.1: {} - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.6.2: {} - /tsup@8.0.1(@swc/core@1.3.103)(postcss@8.4.33)(typescript@4.9.5): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - '@microsoft/api-extractor': ^7.36.0 - '@swc/core': ^1 - postcss: ^8.4.12 - typescript: '>=4.5.0' - peerDependenciesMeta: - '@microsoft/api-extractor': - optional: true - '@swc/core': - optional: true - postcss: - optional: true - typescript: - optional: true + tsup@8.0.1(@swc/core@1.3.103)(postcss@8.4.38)(typescript@4.9.5): dependencies: - '@swc/core': 1.3.103 bundle-require: 4.0.2(esbuild@0.19.11) cac: 6.7.14 chokidar: 3.5.3 @@ -9784,23 +11672,21 @@ packages: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss: 8.4.33 - postcss-load-config: 4.0.2(postcss@8.4.33) + postcss-load-config: 4.0.2(postcss@8.4.38) resolve-from: 5.0.0 rollup: 4.9.6 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 + optionalDependencies: + '@swc/core': 1.3.103 + postcss: 8.4.38 typescript: 4.9.5 transitivePeerDependencies: - supports-color - ts-node - dev: false - /tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true + tty-table@4.2.3: dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -9809,377 +11695,213 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 17.7.2 - dev: false - /tween-functions@1.2.0: - resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} - dev: true + tween-functions@1.2.0: {} - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - dev: true + type-detect@4.0.8: {} - /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: false + type-fest@0.13.1: {} - /type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - dev: true + type-fest@0.16.0: {} - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + type-fest@0.6.0: {} - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + type-fest@0.8.1: {} - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - dev: true + type-fest@2.19.0: {} - /type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - dev: true - /typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 - dev: false - /typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.0: dependencies: call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 - dev: false - /typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.0: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 - dev: false - /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + typed-array-length@1.0.4: dependencies: call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 - dev: false - /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - dev: true + typedarray@0.0.6: {} - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true + typescript@4.9.5: {} - /ufo@1.3.2: - resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} - dev: true + ufo@1.3.2: {} - /uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true - dev: true + uglify-js@3.17.4: optional: true - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.0.2: dependencies: call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - dev: false - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - dev: true + undici-types@5.26.5: {} - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - dev: true + unicode-canonical-property-names-ecmascript@2.0.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - dev: true - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - dev: true + unicode-match-property-value-ecmascript@2.1.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - dev: true + unicode-property-aliases-ecmascript@2.1.0: {} - /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + unique-string@2.0.0: dependencies: crypto-random-string: 2.0.0 - dev: true - /unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - dev: true + unist-util-is@4.1.0: {} - /unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + unist-util-visit-parents@3.1.1: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 - dev: true - /unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + unist-util-visit@2.0.3: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - dev: true - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: false + universalify@0.1.2: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - dev: true + universalify@2.0.1: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - dev: true + unpipe@1.0.0: {} - /unplugin@1.6.0: - resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==} + unplugin@1.6.0: dependencies: acorn: 8.11.3 chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.1 - dev: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true + untildify@4.0.0: {} - /update-browserslist-db@1.0.13(browserslist@4.22.2): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.0.13(browserslist@4.22.2): dependencies: browserslist: 4.22.2 escalade: 3.1.1 picocolors: 1.0.0 - dev: true - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: punycode: 2.3.1 - dev: true - /url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + url@0.11.3: dependencies: punycode: 1.4.1 qs: 6.11.2 - dev: true - /use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0): - resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0): dependencies: - '@types/react': 18.2.48 react: 18.2.0 tslib: 2.6.2 - dev: true + optionalDependencies: + '@types/react': 18.2.48 - /use-resize-observer@9.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} - peerDependencies: - react: 16.8.0 - 18 - react-dom: 16.8.0 - 18 + use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@juggle/resize-observer': 3.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - dev: true - /use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0): - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0): dependencies: - '@types/react': 18.2.48 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 - dev: true + optionalDependencies: + '@types/react': 18.2.48 - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - dev: true + util-deprecate@1.0.2: {} - /util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + util@0.12.5: dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.12 which-typed-array: 1.1.13 - dev: true - /utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - dev: true + utila@0.4.0: {} - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - dev: true + utils-merge@1.0.1: {} - /uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true - dev: true + uuid@9.0.1: {} - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - dev: true + vary@1.1.2: {} - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + walker@1.0.8: dependencies: makeerror: 1.0.12 - dev: true - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + watchpack@2.4.0: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - dev: true - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true + webidl-conversions@3.0.1: {} - /webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - dev: false + webidl-conversions@4.0.2: {} - /webpack-dev-middleware@6.1.1(webpack@5.89.0): - resolution: {integrity: sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.0.0 - peerDependenciesMeta: - webpack: - optional: true + webpack-dev-middleware@6.1.1(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 + optionalDependencies: webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - dev: true - /webpack-hot-middleware@2.26.0: - resolution: {integrity: sha512-okzjec5sAEy4t+7rzdT8eRyxsk0FDSmBPN2KwX4Qd+6+oQCfe5Ve07+u7cJvofgB+B4w5/4dO4Pz0jhhHyyPLQ==} + webpack-hot-middleware@2.26.0: dependencies: ansi-html-community: 0.0.8 html-entities: 2.4.0 strip-ansi: 6.0.1 - dev: true - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - dev: true + webpack-sources@3.2.3: {} - /webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - dev: true + webpack-virtual-modules@0.5.0: {} - /webpack-virtual-modules@0.6.1: - resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} - dev: true + webpack-virtual-modules@0.6.1: {} - /webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11): - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -10202,32 +11924,26 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - dev: true - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true - /whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + whatwg-url@7.1.0: dependencies: lodash.sortby: 4.7.0 tr46: 1.0.1 webidl-conversions: 4.0.2 - dev: false - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -10235,30 +11951,21 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + which-collection@1.0.1: dependencies: is-map: 2.0.2 is-set: 2.0.2 is-weakmap: 2.0.1 is-weakset: 2.0.2 - dev: true - /which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - dev: false + which-module@2.0.1: {} - /which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} + which-pm@2.0.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - dev: false - /which-typed-array@1.1.13: - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} - engines: {node: '>= 0.4'} + which-typed-array@1.1.13: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 @@ -10266,152 +11973,81 @@ packages: gopd: 1.0.1 has-tostringtag: 1.0.0 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - dev: false - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + wide-align@1.1.5: dependencies: string-width: 4.2.3 - dev: true - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - dev: true + wordwrap@1.0.0: {} - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: false - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: true - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: true - /ws@6.2.2: - resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@6.2.2: dependencies: async-limiter: 1.0.1 - dev: true - /ws@8.16.0: - resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true + ws@8.16.0: {} - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: true + xtend@4.0.2: {} - /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - dev: false + y18n@4.0.3: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: false + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: false + yallist@2.1.2: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true + yallist@3.1.1: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + yallist@4.0.0: {} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - dev: true + yaml@1.10.2: {} - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} + yaml@2.3.4: {} - /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: false - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - dev: false + yargs-parser@21.1.1: {} - /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -10424,11 +12060,8 @@ packages: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: false - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -10437,20 +12070,12 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: false - /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - dev: true - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + yocto-queue@0.1.0: {} - /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - dev: true + yocto-queue@1.0.0: {} diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs new file mode 100644 index 00000000..ddcb74ee --- /dev/null +++ b/scripts/buildIcons.mjs @@ -0,0 +1,69 @@ +import fs from 'fs' +import getArgumentOptions from 'minimist' +import path from 'path' + +import generateIconFiles from './generateIconFiles.mjs' +import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' +import renderIconsObject from './renderIconsObject.mjs' +import renderSvgChildrenObj from './renderSvgChildrenObj.mjs' +import writeSvgChildren from './writeSvgChildren.mjs' + +// import generateExportsFile from './generateExportsFile.mjs' +// import generateStories from './generateStories.mjs' + +const cliArguments = getArgumentOptions(process.argv.slice(2)) + +const currentDir = getCurrentDirPath(import.meta.url) + +const ICONS_DIR = path.resolve(currentDir, '../icons') + +const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') + +const SVG_CHILDREN_PATH = path.resolve(currentDir, '../') + +const SVG_CHILDREN_DIR = path.resolve(SVG_CHILDREN_PATH, 'svg-children') + +if (!fs.existsSync(OUTPUT_DIR)) { + fs.mkdirSync(OUTPUT_DIR) +} + +const { renderUniqueKey = false, templateSrc, silent = false, iconFileExtension = '.ts', exportFileName = 'index.js', pretty = true } = cliArguments + +async function buildIcons() { + if (templateSrc == null) { + throw new Error('No `templateSrc` argument given.') + } + + const svgFiles = readSvgDirectory(ICONS_DIR) + + const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) + + const { default: iconFileTemplate } = await import(path.resolve(process.cwd(), templateSrc)) + + // create svg children = to be inserted later while making Icon component + await writeSvgChildren({ svgObjs, outputDirectory: SVG_CHILDREN_PATH }) + + const svgChildren = readSvgDirectory(SVG_CHILDREN_DIR) + + renderSvgChildrenObj(svgChildren, SVG_CHILDREN_DIR) + + generateIconFiles({ + svgObjs: svgObjs, + outputDirectory: OUTPUT_DIR, + iconsDir: ICONS_DIR, + template: iconFileTemplate, + iconFileExtension, + // iconMetaData, + }) + + // Generates entry files for the compiler filled with icons exports + // generateExportsFile(path.join(OUTPUT_DIR, 'icons', exportFileName), path.join(OUTPUT_DIR, 'icons'), icons) + + // generateStories({ iconNodes: icons }) +} + +try { + buildIcons() +} catch (error) { + console.error(error) +} diff --git a/scripts/default-attrs.json b/scripts/default-attrs.json new file mode 100644 index 00000000..e57e91b7 --- /dev/null +++ b/scripts/default-attrs.json @@ -0,0 +1,11 @@ +{ + "xmlns": "http://www.w3.org/2000/svg", + "width": 24, + "height": 24, + "viewBox": "0 0 24 24", + "fill": "none", + "stroke": "currentColor", + "stroke-width": 2, + "stroke-linecap": "round", + "stroke-linejoin": "round" +} diff --git a/scripts/exportIconTemplate.mjs b/scripts/exportIconTemplate.mjs new file mode 100644 index 00000000..ad07bf8e --- /dev/null +++ b/scripts/exportIconTemplate.mjs @@ -0,0 +1,22 @@ +/* eslint-disable import/no-extraneous-dependencies */ + +export default ({ componentName, originalAttributes, groupSvgChildrenObj }) => { + return ` +import createASIcon from '../createASIcon'; + +/** + * @component @name ${componentName} + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ${componentName} = createASIcon('${componentName}', ${JSON.stringify(originalAttributes, null, 2)}, ${JSON.stringify( + groupSvgChildrenObj, + null, + 2 + )} ); + +export default ${componentName}; +` +} diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs new file mode 100644 index 00000000..67ca083d --- /dev/null +++ b/scripts/generateIconFiles.mjs @@ -0,0 +1,47 @@ +import fs from 'fs' +import path from 'path' +import { toPascalCase } from './helpers.mjs' + +export default ({ svgObjs, outputDirectory, template, iconFileExtension = '.js', iconsDir }) => { + const svgs = Object.keys(svgObjs) + + const iconsDistDirectory = path.join(outputDirectory, `icons-neo`) + + if (!fs.existsSync(iconsDistDirectory)) { + fs.mkdirSync(iconsDistDirectory) + } + + const writeIconFiles = svgs.map(async (svgName) => { + const location = path.join(iconsDistDirectory, `${svgName}${iconFileExtension}`) + const componentName = toPascalCase(svgName) + + let { attributes: originalAttributes, children } = svgObjs[svgName] + + const groupSvgChildrenObj = { + name: 'g', + type: 'element', + value: '', + parent: null, + children: children, + } + // children = children.map(({ name, attributes }) => [name, attributes]) + + // const getSvg = () => readSvg(`${svgName}.svg`, iconsDir) + + const elementTemplate = template({ + componentName, + originalAttributes, + groupSvgChildrenObj, + }) + + await fs.promises.writeFile(location, elementTemplate, 'utf-8') + }) + + Promise.all(writeIconFiles) + .then(() => { + console.log('Successfully built', svgs.length, 'icons.') + }) + .catch((error) => { + throw new Error(`Something went wrong generating icon files,\n ${error}`) + }) +} diff --git a/scripts/generateIcons.mjs b/scripts/generateIcons.mjs new file mode 100644 index 00000000..0101f596 --- /dev/null +++ b/scripts/generateIcons.mjs @@ -0,0 +1,22 @@ +import fs from 'fs' +import getArgumentOptions from 'minimist' +import path from 'path' + +import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' + +const cliArguments = getArgumentOptions(process.argv.slice(2)) + +const currentDir = getCurrentDirPath(import.meta.url) + +const ICONS_DIR = path.resolve(currentDir, '../icons') + +const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') + +if (!fs.existsSync(OUTPUT_DIR)) { + fs.mkdirSync(OUTPUT_DIR) +} + +const svgFiles = readSvgDirectory(ICONS_DIR) + +console.log('------>', svgFiles) +// diff --git a/scripts/helpers.mjs b/scripts/helpers.mjs new file mode 100644 index 00000000..f5382288 --- /dev/null +++ b/scripts/helpers.mjs @@ -0,0 +1,215 @@ +import fs from 'fs' +import path from 'path' +import { fileURLToPath } from 'url' + +/** + * Converts string to CamelCase + * + * @param {string} string + * @returns {string} A camelized string + */ +export const toCamelCase = (string) => string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => (p2 ? p2.toUpperCase() : p1.toLowerCase())) + +/** + * Converts string to PascalCase + * + * @param {string} string + * @returns {string} A pascalized string + */ +export const toPascalCase = (string) => { + const camelCase = toCamelCase(string) + + return camelCase.charAt(0).toUpperCase() + camelCase.slice(1) +} + +/** + * Converts string to KebabCase + * + * @param {string} string + * @returns {string} A kebabized string + */ +export const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase() + +/** + * Resets the file contents. + * + * @param {string} fileName + * @param {string} outputDirectory + */ +export const resetFile = (fileName, outputDirectory) => fs.writeFileSync(path.join(outputDirectory, fileName), '', 'utf-8') + +/** + * Reads the file contents. + * + * @param {string} path + * @returns {string} The contents of a file + */ +export const readFile = (path) => fs.readFileSync(path.resolve(__dirname, '../', path), 'utf-8') + +/** + * append content to a file + * + * @param {string} content + * @param {string} fileName + * @param {string} outputDirectory + */ +export const appendFile = (content, fileName, outputDirectory) => fs.appendFileSync(path.join(outputDirectory, fileName), content, 'utf-8') + +/** + * writes content to a file + * + * @param {string} content + * @param {string} fileName + * @param {string} outputDirectory + */ +export const writeFile = (content, fileName, outputDirectory) => fs.writeFileSync(path.join(outputDirectory, fileName), content, 'utf-8') + +/** + * writes content to a file if it does not exist + * + * @param {string} content + * @param {string} fileName + * @param {string} outputDirectory + */ +export const writeFileIfNotExists = (content, fileName, outputDirectory) => { + if (!fs.existsSync(path.join(outputDirectory, fileName))) { + writeFile(content, fileName, outputDirectory) + } +} + +/** + * Reads metadata from the icons/categories directories + * + * @param {string} directory + * @returns {object} A map of icon or category metadata + */ +export const readAllMetadata = (directory) => + fs + .readdirSync(directory) + .filter((file) => path.extname(file) === '.json') + .reduce((acc, fileName) => { + acc[path.basename(fileName, '.json')] = readMetadata(fileName, directory) + return acc + }, {}) + +/** + * Reads metadata for an icon or category + * + * @param {string} fileName + * @param {string} directory + * @returns {object} The metadata for the icon or category + */ +export const readMetadata = (fileName, directory) => JSON.parse(fs.readFileSync(path.join(directory, fileName), 'utf-8')) + +/** + * reads the icon directory + * + * @param {string} directory + * @param {string} fileExtension + * @returns {array} An array of file paths containing svgs + */ +export const readSvgDirectory = (directory, fileExtension = '.svg') => + fs.readdirSync(directory).filter((file) => path.extname(file) === fileExtension) + +/** + * Read svg from directory + * + * @param {string} fileName + * @param {string} directory + */ +export const readSvg = (fileName, directory) => fs.readFileSync(path.join(directory, fileName), 'utf-8') + +/** + * writes content to a file + * + * @param {string} fileName + * @param {string} outputDirectory + * @param {string} content + */ +export const writeSvgFile = (fileName, outputDirectory, content) => fs.writeFileSync(path.join(outputDirectory, fileName), content, 'utf-8') + +/** + * djb2 hashing function + * + * @param {string} string + * @param {number} seed + * @returns {string} A hashed string of 6 characters + */ +export const hash = (string, seed = 5381) => { + let i = string.length + + while (i) { + // eslint-disable-next-line no-bitwise, no-plusplus + seed = (seed * 33) ^ string.charCodeAt(--i) + } + + // eslint-disable-next-line no-bitwise + return (seed >>> 0).toString(36).substr(0, 6) +} + +/** + * Generate Hashed string based on name and attributes + * + * @param {object} seed + * @param {string} seed.name A name, for example an icon name + * @param {object} seed.attributes An object of SVGElement Attrbutes + * @returns {string} A hashed string of 6 characters + */ +export const generateHashedKey = ({ name, attributes }) => hash(JSON.stringify([name, attributes])) + +/** + * Checks if array of items contains duplicated items + * + * @param {array} children an array of items + * @returns {Boolean} if items contains duplicated items. + */ +export const hasDuplicatedChildren = (children) => { + const hashedKeys = children.map(generateHashedKey) + + return !hashedKeys.every((key, index) => index === hashedKeys.findIndex((childKey) => childKey === key)) +} + +/** + * @param {array} a + * @param {array} b + * @returns {array} + */ +export const mergeArrays = (a, b) => { + a = a.concat(b) + a = a.filter((i, p) => a.indexOf(i) === p) + return a +} + +/** + * @param {string} currentPath + * @returns {string} + */ +export const getCurrentDirPath = (currentPath) => path.dirname(fileURLToPath(currentPath)) + +/** + * @param {array} array + * @returns {array} + */ +export const shuffle = (array) => { + // eslint-disable-next-line no-plusplus + for (let i = array.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)) + ;[array[i], array[j]] = [array[j], array[i]] + } + return array +} + +/** + * Minifies SVG + * + * @param {string} string + * @returns string + */ +export function minifySvg(string) { + return string + ? string + .replace(/>[\r\n ]+<') + .replace(/(<.*?>)|\s+/g, (m, $1) => $1 || ' ') + .trim() + : '' +} diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs new file mode 100644 index 00000000..0855b381 --- /dev/null +++ b/scripts/optimizeSvgs.mjs @@ -0,0 +1,19 @@ +import fs from 'fs' +import path from 'path' +import { readSvgDirectory, writeSvgFile } from './helpers.mjs' +import processSvg from './processSvg.mjs' + +const ICONS_DIR = path.resolve(process.cwd(), 'icons') + +if (!fs.existsSync(ICONS_DIR)) { + fs.mkdirSync(ICONS_DIR, { recursive: true }) +} + +console.log(`Optimizing SVGs...`) + +const svgFiles = readSvgDirectory(ICONS_DIR) + +svgFiles.forEach((svgFile) => { + const content = fs.readFileSync(path.join(ICONS_DIR, svgFile)) + processSvg(content, svgFile).then((svg) => writeSvgFile(svgFile, ICONS_DIR, svg)) +}) diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs new file mode 100644 index 00000000..8e68d029 --- /dev/null +++ b/scripts/processSvg.mjs @@ -0,0 +1,83 @@ +import * as prettier from 'prettier' +import { optimize } from 'svgo' +import { parseSync } from 'svgson' + +/** + * Optimize SVG with `svgo`. + * @param {string} svg - An SVG string. + * @returns {Promise} An optimized svg + */ +async function optimizeSvg(svg, path) { + const result = optimize(svg, { + path, + plugins: [ + { + name: 'preset-default', + params: { + overrides: { + convertShapeToPath: false, + mergePaths: false, + removeViewBox: false, + }, + }, + }, + // { + // name: 'removeAttrs', + // params: { + // attrs: '(fill|stroke.*)', + // }, + // }, + // custom plugin + { + name: 'replaceStroke', + type: 'visitor', + fn: (ast) => { + const visit = (node) => { + if (node.attributes && node.attributes.stroke) { + node.attributes.stroke = 'currentColor' + } + if (node.children) { + for (const child of node.children) { + visit(child) + } + } + } + visit(ast) + }, + }, + ], + }) + + return result.data +} + +/** + * Set default attibutes on SVG. + * @param {string} svg - An SVG string. + * @returns {string} An SVG string, included with the default attributes. + */ +function setAttrs(svg) { + const contents = parseSync(svg) + console.log('----------->', contents) + // contents.attributes = DEFAULT_ATTRS + // return stringify(contents) +} + +/** + * Process SVG string. + * @param {string} svg An SVG string. + * @returns {Promise} An optimized svg + */ +function processSvg(svg, path) { + setAttrs(svg) + return ( + optimizeSvg(svg, path) + // .then(setAttrs) + .then((optimizedSvg) => prettier.format(optimizedSvg, { parser: 'babel' })) + // remove semicolon inserted by prettier + // because prettier thinks it's formatting JSX not HTML + .then((svg) => svg.replace(/;/g, '')) + ) +} + +export default processSvg diff --git a/scripts/renderIconsObject.mjs b/scripts/renderIconsObject.mjs new file mode 100644 index 00000000..6078366b --- /dev/null +++ b/scripts/renderIconsObject.mjs @@ -0,0 +1,39 @@ +import { basename } from 'path' +import { parseSync } from 'svgson' +import { generateHashedKey, hasDuplicatedChildren, readSvg } from './helpers.mjs' + +/** + * Build an object in the format: `{ : }`. + * @param {string[]} svgFiles - A list of filenames. + * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. + * @returns {Object} + */ +export default (svgFiles, iconsDirectory, renderUniqueKey = false) => + svgFiles + .map((svgFile) => { + const name = basename(svgFile, '.svg') + const svg = readSvg(svgFile, iconsDirectory) + const contents = parseSync(svg) + + if (!(contents.children && contents.children.length)) { + throw new Error(`${name}.svg has no children!`) + } + + if (hasDuplicatedChildren(contents.children)) { + throw new Error(`Duplicated children in ${name}.svg`) + } + + if (renderUniqueKey) { + contents.children = contents.children.map((child) => { + child.attributes.key = generateHashedKey(child) + + return child + }) + } + + return { name, contents } + }) + .reduce((icons, icon) => { + icons[icon.name] = icon.contents + return icons + }, {}) diff --git a/scripts/renderSvgChildrenObj.mjs b/scripts/renderSvgChildrenObj.mjs new file mode 100644 index 00000000..533406a9 --- /dev/null +++ b/scripts/renderSvgChildrenObj.mjs @@ -0,0 +1,38 @@ +import { basename } from 'path' +import { readSvg } from './helpers.mjs' +/** + * Build an object in the format: `{ : }`. + * @param {string[]} svgFiles - A list of filenames. + * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. + * @returns {Object} + */ + +export default (svgChildren, svgChildrenDirectory, renderUniqueKey) => + svgChildren.map((svgFile) => { + const name = basename(svgFile, '.svg').split('.')[0] + const svg = readSvg(svgFile, svgChildrenDirectory) + // const contents = parseSync(svg) + console.log('============', svgChildrenDirectory) + + // if (!(contents.children && contents.children.length)) { + // throw new Error(`${name}.svg has no children!`) + // } + + // if (hasDuplicatedChildren(contents.children)) { + // throw new Error(`Duplicated children in ${name}.svg`) + // } + + // if (renderUniqueKey) { + // contents.children = contents.children.map((child) => { + // child.attributes.key = generateHashedKey(child) + + // return child + // }) + // } + + // return { name, svg } + }) +// .reduce((icons, icon) => { +// icons[icon.name] = icon.contents +// return icons +// }, {}) diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs new file mode 100644 index 00000000..48e62d43 --- /dev/null +++ b/scripts/writeSvgChildren.mjs @@ -0,0 +1,38 @@ +import fs from 'fs' +import path from 'path' +import { stringify } from 'svgson' + +export default async ({ svgObjs, outputDirectory }) => { + const svgs = Object.keys(svgObjs) + + const svgChildrenDirectory = path.join(outputDirectory, `svg-children`) + + if (!fs.existsSync(svgChildrenDirectory)) { + fs.mkdirSync(svgChildrenDirectory) + } + + const writeSvgChildren = svgs.map(async (svgName) => { + const location = path.resolve(svgChildrenDirectory, `${svgName}.children.svg`) + + let { children } = svgObjs[svgName] + + const childrenSvgGroup = { + name: 'g', + type: 'element', + value: '', + parent: null, + children: children, + } + + const output = stringify(childrenSvgGroup) + + await fs.promises.writeFile(location, output, 'utf-8') + + try { + await Promise.all(writeSvgChildren) + console.log('Successfully write', icons.length, 'svg objs.') + } catch (error) { + throw new Error(`Something went wrong generating iconNode files,\n ${error}`) + } + }) +} diff --git a/scripts/writeSvgObjs.mjs b/scripts/writeSvgObjs.mjs new file mode 100644 index 00000000..53063b74 --- /dev/null +++ b/scripts/writeSvgObjs.mjs @@ -0,0 +1,51 @@ +import fs from 'fs' +import path from 'path' +import { readSvgDirectory } from './helpers.mjs' +import renderIconsObject from './renderIconsObject.mjs' + +const currentDir = process.cwd() +const ICONS_DIR = path.resolve(currentDir, './icons') +const svgFiles = readSvgDirectory(ICONS_DIR) +const icons = renderIconsObject(svgFiles, ICONS_DIR, true) + +const iconObjDirectory = path.resolve(currentDir, 'icons-objs') + +if (fs.existsSync(iconObjDirectory)) { + fs.rmSync(iconObjDirectory, { recursive: true, force: true }) +} + +if (!fs.existsSync(iconObjDirectory)) { + fs.mkdirSync(iconObjDirectory, { recursive: true }) +} + +const writeObjFiles = Object.entries(icons).map(async ([iconName, { attributes, children }]) => { + const location = path.resolve(iconObjDirectory, `${iconName}.obj.json`) + const svgLocation = path.resolve(iconObjDirectory, `${iconName}.new.json`) + + const svgObj = { + objName: iconName, + originalAttributes: attributes, + originalSvgChildren: children, + } + + const childrenSvg = { + name: 'g', + type: 'element', + value: '', + parent: null, + children: children, + } + + const output = JSON.stringify(svgObj, null, 2) + const childrenContent = JSON.stringify(childrenSvg, null, 2) + + await fs.promises.writeFile(location, output, 'utf-8') + await fs.promises.writeFile(svgLocation, childrenContent, 'utf-8') +}) + +try { + await Promise.all(writeObjFiles) + console.log('Successfully write', icons.length, 'svg objs.') +} catch (error) { + throw new Error(`Something went wrong generating iconNode files,\n ${error}`) +} diff --git a/src/Icon.ts b/src/Icon.ts new file mode 100644 index 00000000..32c2ed30 --- /dev/null +++ b/src/Icon.ts @@ -0,0 +1,65 @@ +import { createElement, forwardRef } from 'react' +import { stringify } from 'svgson' +import { ASIProps, IconNode } from './types' +import { mergeClasses } from './utils' + +interface IconComponentProps extends ASIProps { + originalAttributes: any + groupSvgChildrenObj: any +} + +/** + * Lucide icon component + * + * @component Icon + * @param {object} props + * @param {string} props.color - The color of the icon + * @param {number} props.size - The size of the icon + * @param {number} props.strokeWidth - The stroke width of the icon + * @param {boolean} props.absoluteStrokeWidth - Whether to use absolute stroke width + * @param {string} props.className - The class name of the icon + * @param {IconNode} props.children - The children of the icon + * @param {IconNode} props.iconNode - The icon node of the icon + * + * @returns {ForwardRefExoticComponent} LucideIcon + */ +const Icon = forwardRef( + ( + { + color = 'currentColor', + size = 24, + strokeWidth = 2, + inActive = false, + fillColor = 'none', + absoluteStrokeWidth, + className = '', + children, + originalAttributes, + groupSvgChildrenObj, + ...rest + }, + ref + ) => { + const groupSvgChildrenTemplate = stringify(groupSvgChildrenObj).replace(/"/g, '') + console.log('groupSvgChildrenTemplate', groupSvgChildrenTemplate.replace(/"/g, '')) + + return createElement( + 'svg', + { + ref, + ...originalAttributes, + // width: size, + // height: size, + stroke: inActive ? '#777777' : color, + fill: fillColor, + strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, + className: mergeClasses('asi w-[24px] h-auto shrink-0', className), + ...rest, + } + // groupSvgChildrenTemplate + // [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...(Array.isArray(children) ? children : [children])] + ) + } +) + +export default Icon diff --git a/src/Icons/culling/BorderSquareIcon.tsx b/src/Icons/culling/BorderSquareIcon.tsx index bc210490..6cbeb3c5 100644 --- a/src/Icons/culling/BorderSquareIcon.tsx +++ b/src/Icons/culling/BorderSquareIcon.tsx @@ -25,11 +25,11 @@ export const BorderSquareIcon = React.forwardRef((props, f {...(size ? { style: { width: size } } : {})} {...restProps} ref={forwardedRef} - className={cn('w-6', className && className)} + className={cn('w-6 text-white', inActive && 'text-[#777777]', className && className)} > { + const Component = forwardRef(({ className, ...props }, ref) => + createElement(Icon, { + ref, + originalAttributes, + groupSvgChildrenObj, + className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className), + ...props, + }) + ) + + Component.displayName = `${iconName}` + + return Component +} + +export default createASIcon diff --git a/src/defaultAttributes.ts b/src/defaultAttributes.ts new file mode 100644 index 00000000..511db334 --- /dev/null +++ b/src/defaultAttributes.ts @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + // width: 24, + // height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + strokeWidth: 2, + strokeLinecap: 'round', + strokeLinejoin: 'round', +} diff --git a/src/defaultBgStyles.ts b/src/defaultBgStyles.ts new file mode 100644 index 00000000..1006fe19 --- /dev/null +++ b/src/defaultBgStyles.ts @@ -0,0 +1,5 @@ +export default { + display: 'inline-flex', + justifyContent: 'center', + alignItems: 'center', +} diff --git a/src/icons-neo/adjust_profile.ts b/src/icons-neo/adjust_profile.ts new file mode 100644 index 00000000..140ac44a --- /dev/null +++ b/src/icons-neo/adjust_profile.ts @@ -0,0 +1,162 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name AdjustProfile + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const AdjustProfile = createASIcon('AdjustProfile', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "none", + "viewBox": "0 0 21 20" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M12.167 6.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 5h6.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.834 5h3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M7.167 11.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 10h1.667" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M8.834 10h8.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M14.667 16.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M3.834 15h9.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M16.334 15h.833" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": {}, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} ); + +export default AdjustProfile; diff --git a/src/icons-neo/alert-circle.ts b/src/icons-neo/alert-circle.ts new file mode 100644 index 00000000..cbb62c66 --- /dev/null +++ b/src/icons-neo/alert-circle.ts @@ -0,0 +1,106 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name AlertCircle + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const AlertCircle = createASIcon('AlertCircle', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "red", + "viewBox": "0 0 21 20" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M10.5 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 6.667V10" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "d": "M10.5 13.333h.008" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": {}, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "20", + "height": "20", + "fill": "#fff", + "transform": "translate(.5)" + }, + "children": [] + } + ] + } + ] + } + ] +} ); + +export default AlertCircle; diff --git a/src/icons-neo/alert-red.ts b/src/icons-neo/alert-red.ts new file mode 100644 index 00000000..1116a988 --- /dev/null +++ b/src/icons-neo/alert-red.ts @@ -0,0 +1,94 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name AlertRed + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const AlertRed = createASIcon('AlertRed', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "64", + "height": "64", + "fill": "none", + "viewBox": "0 0 64 64" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "3", + "clip-path": "url(#a)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M13.334 50.667h37.333a5.334 5.334 0 0 0 4.907-7.334L36.64 10.667a5.333 5.333 0 0 0-9.333 0L8.374 43.333a5.333 5.333 0 0 0 4.666 7.334" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M32 40v.027M32 24v5.333z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": {}, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "64", + "height": "64", + "fill": "#fff", + "rx": "32" + }, + "children": [] + } + ] + } + ] + } + ] +} ); + +export default AlertRed; diff --git a/src/icons-neo/alert-white.ts b/src/icons-neo/alert-white.ts new file mode 100644 index 00000000..6a2492c9 --- /dev/null +++ b/src/icons-neo/alert-white.ts @@ -0,0 +1,92 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name AlertWhite + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const AlertWhite = createASIcon('AlertWhite', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "12", + "height": "12", + "fill": "none", + "viewBox": "0 0 12 12" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "clip-path": "url(#a)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M2.5 9.5h7a1 1 0 0 0 .92-1.375L6.87 2a1 1 0 0 0-1.75 0L1.57 8.125A1 1 0 0 0 2.445 9.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M6 7.5v.005M6 4.5v1z" + }, + "children": [] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": {}, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "12", + "height": "12", + "fill": "#fff" + }, + "children": [] + } + ] + } + ] + } + ] +} ); + +export default AlertWhite; diff --git a/src/icons-neo/alert.ts b/src/icons-neo/alert.ts new file mode 100644 index 00000000..d6c84ebc --- /dev/null +++ b/src/icons-neo/alert.ts @@ -0,0 +1,50 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name Alert + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const Alert = createASIcon('Alert', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "54", + "height": "46", + "fill": "red", + "viewBox": "0 0 54 46" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M22.204 2.446.68 38.376A5.082 5.082 0 0 0 5.026 46h43.046a5.083 5.083 0 0 0 4.345-7.623L30.894 2.447a5.08 5.08 0 0 0-8.69 0Z" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "5", + "d": "M26.552 15.507V25.67m0 10.165h.025" + }, + "children": [] + } + ] +} ); + +export default Alert; diff --git a/src/icons-neo/alertTriangle.ts b/src/icons-neo/alertTriangle.ts new file mode 100644 index 00000000..9f94ebfe --- /dev/null +++ b/src/icons-neo/alertTriangle.ts @@ -0,0 +1,38 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name AlertTriangle + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const AlertTriangle = createASIcon('AlertTriangle', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "19", + "height": "18", + "fill": "none", + "viewBox": "0 0 19 18" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-width": "1.3", + "d": "M14.97 10.178h-.919l.46-.46zm0 0v.65h-.65zm3.38-1.182v-.003a.7.7 0 0 0-.036-.225.4.4 0 0 0-.1-.146l-.001-.001-7.82-7.82a.5.5 0 0 0-.376-.15.46.46 0 0 0-.365.15l-.01.01-.01.009a.46.46 0 0 0-.16.357.45.45 0 0 0 .149.362l.002.001 5.807 5.808 1.11 1.11H1.726a.5.5 0 0 0-.386.15c-.1.1-.15.213-.15.383v.002c0 .172.052.286.151.386.098.098.21.15.383.149H16.54l-1.11 1.11-5.807 5.807c-.09.089-.146.203-.152.39-.004.155.04.246.13.33l.022.019.02.021a.43.43 0 0 0 .35.145c.163 0 .284-.05.4-.165l7.821-7.822a.4.4 0 0 0 .1-.146.6.6 0 0 0 .036-.221ZM.54 8.993q0 .503.34.845.342.34.846.34z" + }, + "children": [] + } + ] +} ); + +export default AlertTriangle; diff --git a/src/icons-neo/apple.ts b/src/icons-neo/apple.ts new file mode 100644 index 00000000..03eb9f62 --- /dev/null +++ b/src/icons-neo/apple.ts @@ -0,0 +1,37 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name Apple + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const Apple = createASIcon('Apple', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "17", + "height": "20", + "fill": "none", + "viewBox": "0 0 17 20" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "fill": "#fff", + "d": "M13.934 10.57c-.01-1.64.727-2.876 2.215-3.787-.832-1.201-2.09-1.863-3.75-1.99-1.572-.125-3.29.923-3.92.923-.665 0-2.187-.88-3.384-.88C2.625 4.875 0 6.822 0 10.783q0 1.756.637 3.625c.567 1.64 2.613 5.656 4.747 5.591 1.116-.026 1.905-.798 3.357-.798 1.41 0 2.139.798 3.383.798 2.153-.031 4.004-3.682 4.543-5.326-2.888-1.373-2.733-4.02-2.733-4.104Zm-2.506-7.332C12.638 1.79 12.528.474 12.492 0c-1.069.062-2.304.733-3.007 1.558-.775.884-1.23 1.978-1.133 3.211 1.154.089 2.208-.51 3.076-1.531" + }, + "children": [] + } + ] +} ); + +export default Apple; diff --git a/src/icons-neo/arrow-right.ts b/src/icons-neo/arrow-right.ts new file mode 100644 index 00000000..bfc3ef78 --- /dev/null +++ b/src/icons-neo/arrow-right.ts @@ -0,0 +1,138 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowRight + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowRight = createASIcon('ArrowRight', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "18", + "fill": "none", + "viewBox": "0 0 18 18" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "clip-path": "url(#a)" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-width": "2.25", + "clip-path": "url(#b)" + }, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "M1.417 9h15.167" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 15.5 6.5-6.5" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "d": "m10.083 2.5 6.5 6.5" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "defs", + "type": "element", + "value": "", + "parent": null, + "attributes": {}, + "children": [ + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "a" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "18", + "height": "18", + "fill": "#fff" + }, + "children": [] + } + ] + }, + { + "name": "clipPath", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "id": "b" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "width": "26", + "height": "26", + "fill": "#fff", + "transform": "translate(-4 -4)" + }, + "children": [] + } + ] + } + ] + } + ] +} ); + +export default ArrowRight; diff --git a/src/icons-neo/arrow_down.ts b/src/icons-neo/arrow_down.ts new file mode 100644 index 00000000..623af858 --- /dev/null +++ b/src/icons-neo/arrow_down.ts @@ -0,0 +1,41 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowDown + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowDown = createASIcon('ArrowDown', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412" + }, + "children": [] + } + ] +} ); + +export default ArrowDown; diff --git a/src/icons-neo/arrow_down_variant.ts b/src/icons-neo/arrow_down_variant.ts new file mode 100644 index 00000000..e0ca51ab --- /dev/null +++ b/src/icons-neo/arrow_down_variant.ts @@ -0,0 +1,41 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowDownVariant + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowDownVariant = createASIcon('ArrowDownVariant', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M16.94 1.412 9 9.354 1.059 1.412" + }, + "children": [] + } + ] +} ); + +export default ArrowDownVariant; diff --git a/src/icons-neo/arrow_left.ts b/src/icons-neo/arrow_left.ts new file mode 100644 index 00000000..d29b84a1 --- /dev/null +++ b/src/icons-neo/arrow_left.ts @@ -0,0 +1,41 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowLeft + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowLeft = createASIcon('ArrowLeft', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "10", + "height": "18", + "fill": "none", + "viewBox": "0 0 10 18" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M8.706 16.94.765 9l7.94-7.941" + }, + "children": [] + } + ] +} ); + +export default ArrowLeft; diff --git a/src/icons-neo/arrow_right_ios.ts b/src/icons-neo/arrow_right_ios.ts new file mode 100644 index 00000000..6b0c5138 --- /dev/null +++ b/src/icons-neo/arrow_right_ios.ts @@ -0,0 +1,41 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowRightIos + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowRightIos = createASIcon('ArrowRightIos', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "11", + "height": "18", + "fill": "none", + "viewBox": "0 0 11 18" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.53 1.059 9.47 9l-7.94 7.941" + }, + "children": [] + } + ] +} ); + +export default ArrowRightIos; diff --git a/src/icons-neo/arrow_up.ts b/src/icons-neo/arrow_up.ts new file mode 100644 index 00000000..6101de66 --- /dev/null +++ b/src/icons-neo/arrow_up.ts @@ -0,0 +1,41 @@ + +import createASIcon from '../createASIcon'; + +/** + * @component @name ArrowUp + * @description ASI component, renders SVG Element with children. + * @param {Object} props - any valid SVG attribute + * @param {Object} props - objectivy SVG children array - use sringify from svgson + * @returns {JSX.Element} JSX Element + */ +const ArrowUp = createASIcon('ArrowUp', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, { + "name": "g", + "type": "element", + "value": "", + "parent": null, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "parent": null, + "attributes": { + "stroke": "currentColor", + "stroke-linecap": "round", + "stroke-linejoin": "round", + "stroke-opacity": ".8", + "stroke-width": "1.5", + "d": "M1.059 9.53 9 1.587l7.941 7.941" + }, + "children": [] + } + ] +} ); + +export default ArrowUp; diff --git a/src/stories/BorderColorIcon.stories.tsx b/src/stories/BorderColorIcon.stories.tsx index d7d44e77..2c2fd82c 100644 --- a/src/stories/BorderColorIcon.stories.tsx +++ b/src/stories/BorderColorIcon.stories.tsx @@ -37,3 +37,9 @@ export const Large: Story = { size: 30, }, } + +export const className: Story = { + args: { + className: 'text-green-500 w-10', + }, +} diff --git a/src/stories/sample.stories.tsx b/src/stories/sample.stories.tsx new file mode 100644 index 00000000..5740b437 --- /dev/null +++ b/src/stories/sample.stories.tsx @@ -0,0 +1,39 @@ +import type { Meta, StoryObj } from '@storybook/react' +import React from 'react' + +import AdjustProfile from '../icons-neo/adjust_profile' + +const meta: Meta = { + component: AdjustProfile, + title: 'neo/AdjustProfile', + decorators: [ + (Story) => ( +
+ +
+ ), + ], +} + +export default meta +type Story = StoryObj + +export const Default: Story = {} + +export const Red: Story = { + args: { + color: 'red', + }, +} + +export const inActive: Story = { + args: { + inActive: true, + }, +} + +export const Large: Story = { + args: { + size: 30, + }, +} diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 88db6373..c8d67bb8 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1,5 +1,5 @@ /* -! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com */ /* @@ -211,8 +211,6 @@ textarea { /* 1 */ line-height: inherit; /* 1 */ - letter-spacing: inherit; - /* 1 */ color: inherit; /* 1 */ margin: 0; @@ -236,9 +234,9 @@ select { */ button, -input:where([type='button']), -input:where([type='reset']), -input:where([type='submit']) { +[type='button'], +[type='reset'], +[type='submit'] { -webkit-appearance: button; /* 1 */ background-color: transparent; @@ -494,10 +492,6 @@ video { --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; - --tw-contain-size: ; - --tw-contain-layout: ; - --tw-contain-paint: ; - --tw-contain-style: ; } ::backdrop { @@ -548,10 +542,22 @@ video { --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; - --tw-contain-size: ; - --tw-contain-layout: ; - --tw-contain-paint: ; - --tw-contain-style: ; +} + +.absolute { + position: absolute; +} + +.inline-flex { + display: inline-flex; +} + +.h-auto { + height: auto; +} + +.w-10 { + width: 2.5rem; } .w-6 { @@ -562,6 +568,14 @@ video { width: 10px; } +.w-\[24px\] { + width: 24px; +} + +.shrink-0 { + flex-shrink: 0; +} + .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } @@ -570,11 +584,26 @@ video { stroke: #fff; } +.text-\[\#777777\] { + --tw-text-opacity: 1; + color: rgb(119 119 119 / var(--tw-text-opacity)); +} + .text-\[\#fff\] { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} + +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + .outline { outline-style: solid; } diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 00000000..fb0bd3df --- /dev/null +++ b/src/types.ts @@ -0,0 +1,17 @@ +export type CamelToPascal = T extends `${infer FirstChar}${infer Rest}` ? `${Capitalize}${Rest}` : never + +import { ForwardRefExoticComponent, ReactSVG, RefAttributes, SVGProps } from 'react' + +export type IconNode = [elementName: keyof ReactSVG, attrs: Record][] + +export type SVGAttributes = Partial> +type ElementAttributes = RefAttributes & SVGAttributes + +export interface ASIProps extends ElementAttributes { + size?: string | number + inActive: boolean + fillColor?: string + absoluteStrokeWidth?: boolean +} + +export type LucideIcon = ForwardRefExoticComponent & RefAttributes> diff --git a/src/utils.ts b/src/utils.ts new file mode 100644 index 00000000..89fb58ea --- /dev/null +++ b/src/utils.ts @@ -0,0 +1,43 @@ +import { CamelToPascal } from './types' + +/** + * Converts string to kebab case + * + * @param {string} string + * @returns {string} A kebabized string + */ +export const toKebabCase = (string: string) => string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase() + +/** + * Converts string to pascal case + * + * @param {string} string + * @returns {string} A pascalized string + */ +export const toPascalCase = (string: T): CamelToPascal => { + const camelCase = string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => (p2 ? p2.toUpperCase() : p1.toLowerCase())) + + return (camelCase.charAt(0).toUpperCase() + camelCase.slice(1)) as CamelToPascal +} + +/** + * Merges classes into a single string + * + * @param {array} classes + * @returns {string} A string of classes + */ +export const mergeClasses = (...classes: ClassType[]) => + classes + .filter((className, index, array) => { + return Boolean(className) && array.indexOf(className) === index + }) + .join(' ') + +export const removeOuterQuotes = (svgString: string) => { + // Check if the string starts and ends with double quotes + if (svgString.startsWith('"') && svgString.endsWith('"')) { + // Remove the outer double quotes + svgString = svgString.slice(1, -1) + } + return svgString +} diff --git a/svg-children/adjust_profile.children.svg b/svg-children/adjust_profile.children.svg new file mode 100644 index 00000000..0086b782 --- /dev/null +++ b/svg-children/adjust_profile.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert-circle.children.svg b/svg-children/alert-circle.children.svg new file mode 100644 index 00000000..11f9e99d --- /dev/null +++ b/svg-children/alert-circle.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert-red.children.svg b/svg-children/alert-red.children.svg new file mode 100644 index 00000000..618f2596 --- /dev/null +++ b/svg-children/alert-red.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert-white.children.svg b/svg-children/alert-white.children.svg new file mode 100644 index 00000000..41d020e6 --- /dev/null +++ b/svg-children/alert-white.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert.children.svg b/svg-children/alert.children.svg new file mode 100644 index 00000000..2ac40403 --- /dev/null +++ b/svg-children/alert.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alertTriangle.children.svg b/svg-children/alertTriangle.children.svg new file mode 100644 index 00000000..ea726c39 --- /dev/null +++ b/svg-children/alertTriangle.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/apple.children.svg b/svg-children/apple.children.svg new file mode 100644 index 00000000..e51b921a --- /dev/null +++ b/svg-children/apple.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow-right.children.svg b/svg-children/arrow-right.children.svg new file mode 100644 index 00000000..07788a78 --- /dev/null +++ b/svg-children/arrow-right.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow_down.children.svg b/svg-children/arrow_down.children.svg new file mode 100644 index 00000000..b2f419c2 --- /dev/null +++ b/svg-children/arrow_down.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow_down_variant.children.svg b/svg-children/arrow_down_variant.children.svg new file mode 100644 index 00000000..b2f419c2 --- /dev/null +++ b/svg-children/arrow_down_variant.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow_left.children.svg b/svg-children/arrow_left.children.svg new file mode 100644 index 00000000..cc4a9064 --- /dev/null +++ b/svg-children/arrow_left.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow_right_ios.children.svg b/svg-children/arrow_right_ios.children.svg new file mode 100644 index 00000000..94a20508 --- /dev/null +++ b/svg-children/arrow_right_ios.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/arrow_up.children.svg b/svg-children/arrow_up.children.svg new file mode 100644 index 00000000..92d9d69d --- /dev/null +++ b/svg-children/arrow_up.children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yarn-error.log b/yarn-error.log index 5ef9fb2f..7bf52cde 100644 --- a/yarn-error.log +++ b/yarn-error.log @@ -1,5 +1,5 @@ Arguments: - /opt/homebrew/Cellar/node/21.7.1/bin/node /Users/aftershoot/.yarn/releases/yarn-1.22.19.cjs + /opt/homebrew/Cellar/node/22.1.0/bin/node /Users/aftershoot/.yarn/releases/yarn-1.22.19.cjs add svgson PATH: /opt/homebrew/opt/postgresql@16/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/homebrew/opt/postgresql@16/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/aftershoot/.cargo/bin @@ -8,13 +8,13 @@ Yarn version: 1.22.19 Node version: - 21.7.1 + 22.1.0 Platform: darwin arm64 Trace: - Error: EINVAL: invalid argument, mkdir '/Users/aftershoot/Booi/dev/work/Unicons/node_modules/tsup/node_modules/@esbuild' + Error: ENOENT: no such file or directory, copyfile '/Users/aftershoot/Library/Caches/Yarn/v6/npm-color-convert-1.9.3-bb71850690e1f136567de629d2d5471deda4c1e8-integrity/node_modules/color-convert/CHANGELOG.md' -> '/Users/aftershoot/Booi/dev/work/Unicons/node_modules/@changesets/cli/node_modules/color-convert/CHANGELOG.md' npm manifest: { @@ -30,6 +30,8 @@ npm manifest: "types": "dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", + "o:svgs": "node ./scripts/optimizeSvgs.mjs", + "gen:svgs": "node ./scripts/generateIcons.mjs", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", @@ -64,10 +66,11 @@ npm manifest: "chromatic": "^10.6.1", "css-loader": "^6.7.3", "husky": "^8.0.2", - "postcss": "^8.4.33", + "postcss": "^8.4.38", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.7", + "svgo": "^3.3.2", "tailwindcss": "^3.4.1", "typescript": "^4.9.4", "webpack": "^5.75.0" @@ -103,4 +106,9848 @@ yarn manifest: No manifest Lockfile: - No lockfile + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. + # yarn lockfile v1 + + + "@adobe/css-tools@^4.3.2": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.3.3.tgz#90749bde8b89cd41764224f5aac29cd4138f75ff" + integrity sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ== + + "@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + + "@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + + "@aw-web-design/x-default-browser@1.4.126": + version "1.4.126" + resolved "https://registry.yarnpkg.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz#43e4bd8f0314ed907a8718d7e862a203af79bc16" + integrity sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug== + dependencies: + default-browser-id "3.0.0" + + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" + integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== + dependencies: + "@babel/highlight" "^7.24.2" + picocolors "^1.0.0" + + "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5", "@babel/compat-data@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a" + integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== + + "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.18.9", "@babel/core@^7.23.0", "@babel/core@^7.23.2": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.4.tgz#1f758428e88e0d8c563874741bc4ffc4f71a4717" + integrity sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.2" + "@babel/generator" "^7.24.4" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.24.4" + "@babel/parser" "^7.24.4" + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.1" + "@babel/types" "^7.24.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + + "@babel/generator@^7.23.0", "@babel/generator@^7.24.1", "@babel/generator@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.4.tgz#1fc55532b88adf952025d5d2d1e71f946cb1c498" + integrity sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw== + dependencies: + "@babel/types" "^7.24.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + + "@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== + dependencies: + "@babel/types" "^7.22.15" + + "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + + "@babel/helper-create-class-features-plugin@^7.24.1", "@babel/helper-create-class-features-plugin@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz#c806f73788a6800a5cfbbc04d2df7ee4d927cce3" + integrity sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.24.1" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + + "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + + "@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" + integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + + "@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + + "@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + + "@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-member-expression-to-functions@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" + integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== + dependencies: + "@babel/types" "^7.23.0" + + "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.24.1": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" + integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== + dependencies: + "@babel/types" "^7.24.0" + + "@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + + "@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz#945681931a52f15ce879fd5b86ce2dae6d3d7f2a" + integrity sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w== + + "@babel/helper-remap-async-to-generator@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-wrap-function" "^7.22.20" + + "@babel/helper-replace-supers@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1" + integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-member-expression-to-functions" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + + "@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + + "@babel/helper-string-parser@^7.23.4": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" + integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== + + "@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + + "@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + + "@babel/helper-wrap-function@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.22.19" + + "@babel/helpers@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.4.tgz#dc00907fd0d95da74563c142ef4cd21f2cb856b6" + integrity sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw== + dependencies: + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.1" + "@babel/types" "^7.24.0" + + "@babel/highlight@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" + integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + + "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.0", "@babel/parser@^7.24.0", "@babel/parser@^7.24.1", "@babel/parser@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.4.tgz#234487a110d89ad5a3ed4a8a566c36b9453e8c88" + integrity sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg== + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz#6125f0158543fb4edf1c22f322f3db67f21cb3e1" + integrity sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz#b645d9ba8c2bc5b7af50f0fe949f9edbeb07c8cf" + integrity sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz#da8261f2697f0f41b0855b91d3a20a1fbfd271d3" + integrity sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.24.1" + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz#1181d9685984c91d657b8ddf14f0487a6bab2988" + integrity sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + + "@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + + "@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + + "@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + + "@babel/plugin-syntax-flow@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz#875c25e3428d7896c87589765fc8b9d32f24bd8d" + integrity sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-syntax-import-assertions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz#db3aad724153a00eaac115a3fb898de544e34971" + integrity sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-syntax-import-attributes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093" + integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + + "@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-jsx@^7.23.3", "@babel/plugin-syntax-jsx@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" + integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + + "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + + "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + + "@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + + "@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + + "@babel/plugin-syntax-typescript@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" + integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + + "@babel/plugin-transform-arrow-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz#2bf263617060c9cc45bcdbf492b8cc805082bf27" + integrity sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-async-generator-functions@^7.24.3": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz#8fa7ae481b100768cc9842c8617808c5352b8b89" + integrity sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-remap-async-to-generator" "^7.22.20" + "@babel/plugin-syntax-async-generators" "^7.8.4" + + "@babel/plugin-transform-async-to-generator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz#0e220703b89f2216800ce7b1c53cb0cf521c37f4" + integrity sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw== + dependencies: + "@babel/helper-module-imports" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-remap-async-to-generator" "^7.22.20" + + "@babel/plugin-transform-block-scoped-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz#1c94799e20fcd5c4d4589523bbc57b7692979380" + integrity sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-block-scoping@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz#28f5c010b66fbb8ccdeef853bef1935c434d7012" + integrity sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-class-properties@^7.22.5", "@babel/plugin-transform-class-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz#bcbf1aef6ba6085cfddec9fc8d58871cf011fc29" + integrity sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-class-static-block@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz#1a4653c0cf8ac46441ec406dece6e9bc590356a4" + integrity sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.4" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + + "@babel/plugin-transform-classes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz#5bc8fc160ed96378184bc10042af47f50884dcb1" + integrity sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" + "@babel/helper-split-export-declaration" "^7.22.6" + globals "^11.1.0" + + "@babel/plugin-transform-computed-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz#bc7e787f8e021eccfb677af5f13c29a9934ed8a7" + integrity sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/template" "^7.24.0" + + "@babel/plugin-transform-destructuring@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz#b1e8243af4a0206841973786292b8c8dd8447345" + integrity sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-dotall-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz#d56913d2f12795cc9930801b84c6f8c47513ac13" + integrity sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-duplicate-keys@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz#5347a797fe82b8d09749d10e9f5b83665adbca88" + integrity sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-dynamic-import@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz#2a5a49959201970dd09a5fca856cb651e44439dd" + integrity sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + + "@babel/plugin-transform-exponentiation-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz#6650ebeb5bd5c012d5f5f90a26613a08162e8ba4" + integrity sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-export-namespace-from@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz#f033541fc036e3efb2dcb58eedafd4f6b8078acd" + integrity sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + + "@babel/plugin-transform-flow-strip-types@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz#fa8d0a146506ea195da1671d38eed459242b2dcc" + integrity sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-flow" "^7.24.1" + + "@babel/plugin-transform-for-of@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz#67448446b67ab6c091360ce3717e7d3a59e202fd" + integrity sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + + "@babel/plugin-transform-function-name@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz#8cba6f7730626cc4dfe4ca2fa516215a0592b361" + integrity sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA== + dependencies: + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-json-strings@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz#08e6369b62ab3e8a7b61089151b161180c8299f7" + integrity sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-json-strings" "^7.8.3" + + "@babel/plugin-transform-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz#0a1982297af83e6b3c94972686067df588c5c096" + integrity sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-logical-assignment-operators@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz#719d8aded1aa94b8fb34e3a785ae8518e24cfa40" + integrity sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + + "@babel/plugin-transform-member-expression-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz#896d23601c92f437af8b01371ad34beb75df4489" + integrity sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-modules-amd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz#b6d829ed15258536977e9c7cc6437814871ffa39" + integrity sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-modules-commonjs@^7.23.0", "@babel/plugin-transform-modules-commonjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9" + integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-simple-access" "^7.22.5" + + "@babel/plugin-transform-modules-systemjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz#2b9625a3d4e445babac9788daec39094e6b11e3e" + integrity sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-identifier" "^7.22.20" + + "@babel/plugin-transform-modules-umd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz#69220c66653a19cf2c0872b9c762b9a48b8bebef" + integrity sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + + "@babel/plugin-transform-new-target@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz#29c59988fa3d0157de1c871a28cd83096363cc34" + integrity sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-nullish-coalescing-operator@^7.22.11", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz#0cd494bb97cb07d428bd651632cb9d4140513988" + integrity sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + + "@babel/plugin-transform-numeric-separator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz#5bc019ce5b3435c1cadf37215e55e433d674d4e8" + integrity sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + + "@babel/plugin-transform-object-rest-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz#5a3ce73caf0e7871a02e1c31e8b473093af241ff" + integrity sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA== + dependencies: + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.1" + + "@babel/plugin-transform-object-super@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz#e71d6ab13483cca89ed95a474f542bbfc20a0520" + integrity sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" + + "@babel/plugin-transform-optional-catch-binding@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz#92a3d0efe847ba722f1a4508669b23134669e2da" + integrity sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + + "@babel/plugin-transform-optional-chaining@^7.23.0", "@babel/plugin-transform-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz#26e588acbedce1ab3519ac40cc748e380c5291e6" + integrity sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + + "@babel/plugin-transform-parameters@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz#983c15d114da190506c75b616ceb0f817afcc510" + integrity sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-private-methods@^7.22.5", "@babel/plugin-transform-private-methods@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz#a0faa1ae87eff077e1e47a5ec81c3aef383dc15a" + integrity sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-private-property-in-object@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz#756443d400274f8fb7896742962cc1b9f25c1f6a" + integrity sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + + "@babel/plugin-transform-property-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz#d6a9aeab96f03749f4eebeb0b6ea8e90ec958825" + integrity sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-react-display-name@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz#554e3e1a25d181f040cf698b93fd289a03bfdcdb" + integrity sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-react-jsx-development@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" + integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.22.5" + + "@babel/plugin-transform-react-jsx@^7.22.5", "@babel/plugin-transform-react-jsx@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" + integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/types" "^7.23.4" + + "@babel/plugin-transform-react-pure-annotations@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz#c86bce22a53956331210d268e49a0ff06e392470" + integrity sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-regenerator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz#625b7545bae52363bdc1fbbdc7252b5046409c8c" + integrity sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + regenerator-transform "^0.15.2" + + "@babel/plugin-transform-reserved-words@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz#8de729f5ecbaaf5cf83b67de13bad38a21be57c1" + integrity sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-shorthand-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz#ba9a09144cf55d35ec6b93a32253becad8ee5b55" + integrity sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz#a1acf9152cbf690e4da0ba10790b3ac7d2b2b391" + integrity sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + + "@babel/plugin-transform-sticky-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz#f03e672912c6e203ed8d6e0271d9c2113dc031b9" + integrity sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-template-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz#15e2166873a30d8617e3e2ccadb86643d327aab7" + integrity sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-typeof-symbol@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz#6831f78647080dec044f7e9f68003d99424f94c7" + integrity sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-typescript@^7.24.1": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.4.tgz#03e0492537a4b953e491f53f2bc88245574ebd15" + integrity sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.4" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-typescript" "^7.24.1" + + "@babel/plugin-transform-unicode-escapes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz#fb3fa16676549ac7c7449db9b342614985c2a3a4" + integrity sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-unicode-property-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz#56704fd4d99da81e5e9f0c0c93cabd91dbc4889e" + integrity sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-unicode-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz#57c3c191d68f998ac46b708380c1ce4d13536385" + integrity sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/plugin-transform-unicode-sets-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz#c1ea175b02afcffc9cf57a9c4658326625165b7f" + integrity sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + + "@babel/preset-env@^7.23.2": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.4.tgz#46dbbcd608771373b88f956ffb67d471dce0d23b" + integrity sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A== + dependencies: + "@babel/compat-data" "^7.24.4" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.4" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.1" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.1" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.1" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.24.1" + "@babel/plugin-syntax-import-attributes" "^7.24.1" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.24.1" + "@babel/plugin-transform-async-generator-functions" "^7.24.3" + "@babel/plugin-transform-async-to-generator" "^7.24.1" + "@babel/plugin-transform-block-scoped-functions" "^7.24.1" + "@babel/plugin-transform-block-scoping" "^7.24.4" + "@babel/plugin-transform-class-properties" "^7.24.1" + "@babel/plugin-transform-class-static-block" "^7.24.4" + "@babel/plugin-transform-classes" "^7.24.1" + "@babel/plugin-transform-computed-properties" "^7.24.1" + "@babel/plugin-transform-destructuring" "^7.24.1" + "@babel/plugin-transform-dotall-regex" "^7.24.1" + "@babel/plugin-transform-duplicate-keys" "^7.24.1" + "@babel/plugin-transform-dynamic-import" "^7.24.1" + "@babel/plugin-transform-exponentiation-operator" "^7.24.1" + "@babel/plugin-transform-export-namespace-from" "^7.24.1" + "@babel/plugin-transform-for-of" "^7.24.1" + "@babel/plugin-transform-function-name" "^7.24.1" + "@babel/plugin-transform-json-strings" "^7.24.1" + "@babel/plugin-transform-literals" "^7.24.1" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.1" + "@babel/plugin-transform-member-expression-literals" "^7.24.1" + "@babel/plugin-transform-modules-amd" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-modules-systemjs" "^7.24.1" + "@babel/plugin-transform-modules-umd" "^7.24.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.24.1" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1" + "@babel/plugin-transform-numeric-separator" "^7.24.1" + "@babel/plugin-transform-object-rest-spread" "^7.24.1" + "@babel/plugin-transform-object-super" "^7.24.1" + "@babel/plugin-transform-optional-catch-binding" "^7.24.1" + "@babel/plugin-transform-optional-chaining" "^7.24.1" + "@babel/plugin-transform-parameters" "^7.24.1" + "@babel/plugin-transform-private-methods" "^7.24.1" + "@babel/plugin-transform-private-property-in-object" "^7.24.1" + "@babel/plugin-transform-property-literals" "^7.24.1" + "@babel/plugin-transform-regenerator" "^7.24.1" + "@babel/plugin-transform-reserved-words" "^7.24.1" + "@babel/plugin-transform-shorthand-properties" "^7.24.1" + "@babel/plugin-transform-spread" "^7.24.1" + "@babel/plugin-transform-sticky-regex" "^7.24.1" + "@babel/plugin-transform-template-literals" "^7.24.1" + "@babel/plugin-transform-typeof-symbol" "^7.24.1" + "@babel/plugin-transform-unicode-escapes" "^7.24.1" + "@babel/plugin-transform-unicode-property-regex" "^7.24.1" + "@babel/plugin-transform-unicode-regex" "^7.24.1" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.1" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" + core-js-compat "^3.31.0" + semver "^6.3.1" + + "@babel/preset-flow@^7.22.15": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.24.1.tgz#da7196c20c2d7dd4e98cfd8b192fe53b5eb6f0bb" + integrity sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-transform-flow-strip-types" "^7.24.1" + + "@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + + "@babel/preset-react@^7.22.15": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.24.1.tgz#2450c2ac5cc498ef6101a6ca5474de251e33aa95" + integrity sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-transform-react-display-name" "^7.24.1" + "@babel/plugin-transform-react-jsx" "^7.23.4" + "@babel/plugin-transform-react-jsx-development" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.24.1" + + "@babel/preset-typescript@^7.23.0": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec" + integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-syntax-jsx" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-typescript" "^7.24.1" + + "@babel/register@^7.22.15": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.23.7.tgz#485a5e7951939d21304cae4af1719fdb887bc038" + integrity sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ== + dependencies: + clone-deep "^4.0.1" + find-cache-dir "^2.0.0" + make-dir "^2.1.0" + pirates "^4.0.6" + source-map-support "^0.5.16" + + "@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + + "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.17.8", "@babel/runtime@^7.20.1", "@babel/runtime@^7.21.0", "@babel/runtime@^7.24.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.4.tgz#de795accd698007a66ba44add6cc86542aff1edd" + integrity sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA== + dependencies: + regenerator-runtime "^0.14.0" + + "@babel/template@^7.22.15", "@babel/template@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" + integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.24.0" + "@babel/types" "^7.24.0" + + "@babel/traverse@^7.18.9", "@babel/traverse@^7.23.2", "@babel/traverse@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c" + integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ== + dependencies: + "@babel/code-frame" "^7.24.1" + "@babel/generator" "^7.24.1" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.24.1" + "@babel/types" "^7.24.0" + debug "^4.3.1" + globals "^11.1.0" + + "@babel/types@^7.0.0", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.24.0", "@babel/types@^7.4.4": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" + integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + + "@base2/pretty-print-object@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz#371ba8be66d556812dc7fb169ebc3c08378f69d4" + integrity sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA== + + "@changesets/apply-release-plan@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-7.0.0.tgz#ce3c3dfc5720550a5d592b54ad2f411f816ec5ff" + integrity sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/config" "^3.0.0" + "@changesets/get-version-range-type" "^0.4.0" + "@changesets/git" "^3.0.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + detect-indent "^6.0.0" + fs-extra "^7.0.1" + lodash.startcase "^4.4.0" + outdent "^0.5.0" + prettier "^2.7.1" + resolve-from "^5.0.0" + semver "^7.5.3" + + "@changesets/assemble-release-plan@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-6.0.0.tgz#c69969b4bef7c32a8544b6941d1053260ca47e05" + integrity sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.2.0" + "@changesets/get-dependents-graph" "^2.0.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + semver "^7.5.3" + + "@changesets/changelog-git@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@changesets/changelog-git/-/changelog-git-0.2.0.tgz#1f3de11becafff5a38ebe295038a602403c93a86" + integrity sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ== + dependencies: + "@changesets/types" "^6.0.0" + + "@changesets/cli@^2.27.1": + version "2.27.1" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.27.1.tgz#abce480fd30b9abbe2cfcf07d5d668c364ce2804" + integrity sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/apply-release-plan" "^7.0.0" + "@changesets/assemble-release-plan" "^6.0.0" + "@changesets/changelog-git" "^0.2.0" + "@changesets/config" "^3.0.0" + "@changesets/errors" "^0.2.0" + "@changesets/get-dependents-graph" "^2.0.0" + "@changesets/get-release-plan" "^4.0.0" + "@changesets/git" "^3.0.0" + "@changesets/logger" "^0.1.0" + "@changesets/pre" "^2.0.0" + "@changesets/read" "^0.6.0" + "@changesets/types" "^6.0.0" + "@changesets/write" "^0.3.0" + "@manypkg/get-packages" "^1.1.3" + "@types/semver" "^7.5.0" + ansi-colors "^4.1.3" + chalk "^2.1.0" + ci-info "^3.7.0" + enquirer "^2.3.0" + external-editor "^3.1.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + meow "^6.0.0" + outdent "^0.5.0" + p-limit "^2.2.0" + preferred-pm "^3.0.0" + resolve-from "^5.0.0" + semver "^7.5.3" + spawndamnit "^2.0.0" + term-size "^2.1.0" + tty-table "^4.1.5" + + "@changesets/config@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-3.0.0.tgz#a1a1cafc77134b117b4a9266459c84fdd360a6be" + integrity sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA== + dependencies: + "@changesets/errors" "^0.2.0" + "@changesets/get-dependents-graph" "^2.0.0" + "@changesets/logger" "^0.1.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + fs-extra "^7.0.1" + micromatch "^4.0.2" + + "@changesets/errors@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.2.0.tgz#3c545e802b0f053389cadcf0ed54e5636ff9026a" + integrity sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow== + dependencies: + extendable-error "^0.1.5" + + "@changesets/get-dependents-graph@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-2.0.0.tgz#97f0cc9fbec436e0d6ab95a6a59c08acf21ac714" + integrity sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA== + dependencies: + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + chalk "^2.1.0" + fs-extra "^7.0.1" + semver "^7.5.3" + + "@changesets/get-release-plan@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-4.0.0.tgz#8cb057da90a08796a335dfd18073234d33902069" + integrity sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/assemble-release-plan" "^6.0.0" + "@changesets/config" "^3.0.0" + "@changesets/pre" "^2.0.0" + "@changesets/read" "^0.6.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + + "@changesets/get-version-range-type@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.4.0.tgz#429a90410eefef4368502c41c63413e291740bf5" + integrity sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ== + + "@changesets/git@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-3.0.0.tgz#e71d003752a97bc27988db6d410e0038a4a88055" + integrity sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.2.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + is-subdir "^1.1.1" + micromatch "^4.0.2" + spawndamnit "^2.0.0" + + "@changesets/logger@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.1.0.tgz#2d2a58536c5beeeaef52ab464931d99fcf24f17b" + integrity sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g== + dependencies: + chalk "^2.1.0" + + "@changesets/parse@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.4.0.tgz#5cabbd9844b3b213cb83f5edb5768454c70dd2b4" + integrity sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw== + dependencies: + "@changesets/types" "^6.0.0" + js-yaml "^3.13.1" + + "@changesets/pre@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-2.0.0.tgz#ad3edf3d6ac287991d7ef5e26cf280d03c9e3764" + integrity sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.2.0" + "@changesets/types" "^6.0.0" + "@manypkg/get-packages" "^1.1.3" + fs-extra "^7.0.1" + + "@changesets/read@^0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.6.0.tgz#27e13b58d0b0eb3b0a5cba48a3f4f71f05ef4610" + integrity sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/git" "^3.0.0" + "@changesets/logger" "^0.1.0" + "@changesets/parse" "^0.4.0" + "@changesets/types" "^6.0.0" + chalk "^2.1.0" + fs-extra "^7.0.1" + p-filter "^2.1.0" + + "@changesets/types@^4.0.1": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.1.0.tgz#fb8f7ca2324fd54954824e864f9a61a82cb78fe0" + integrity sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw== + + "@changesets/types@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-6.0.0.tgz#e46abda9890610dd1fbe1617730173d2267544bd" + integrity sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ== + + "@changesets/write@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.3.0.tgz#c6c5bc390cce4031da20eab8a4ca2d71453a1985" + integrity sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/types" "^6.0.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + prettier "^2.7.1" + + "@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + + "@discoveryjs/json-ext@^0.5.3": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + + "@emotion/use-insertion-effect-with-fallbacks@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" + integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== + + "@esbuild/aix-ppc64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f" + integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA== + + "@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + + "@esbuild/android-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" + integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA== + + "@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + + "@esbuild/android-arm@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" + integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w== + + "@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + + "@esbuild/android-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" + integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew== + + "@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + + "@esbuild/darwin-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" + integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g== + + "@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + + "@esbuild/darwin-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" + integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A== + + "@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + + "@esbuild/freebsd-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" + integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA== + + "@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + + "@esbuild/freebsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" + integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg== + + "@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + + "@esbuild/linux-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" + integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA== + + "@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + + "@esbuild/linux-arm@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" + integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w== + + "@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + + "@esbuild/linux-ia32@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" + integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA== + + "@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + + "@esbuild/linux-loong64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" + integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA== + + "@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + + "@esbuild/linux-mips64el@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" + integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w== + + "@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + + "@esbuild/linux-ppc64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" + integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg== + + "@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + + "@esbuild/linux-riscv64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" + integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg== + + "@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + + "@esbuild/linux-s390x@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" + integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg== + + "@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + + "@esbuild/linux-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" + integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg== + + "@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + + "@esbuild/netbsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" + integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA== + + "@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + + "@esbuild/openbsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" + integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw== + + "@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + + "@esbuild/sunos-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" + integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA== + + "@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + + "@esbuild/win32-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" + integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A== + + "@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + + "@esbuild/win32-ia32@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" + integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ== + + "@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== + + "@esbuild/win32-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" + integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA== + + "@fal-works/esbuild-plugin-global-externals@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4" + integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ== + + "@floating-ui/core@^1.0.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.0.tgz#fa41b87812a16bf123122bf945946bae3fdf7fc1" + integrity sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g== + dependencies: + "@floating-ui/utils" "^0.2.1" + + "@floating-ui/dom@^1.6.1": + version "1.6.3" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.3.tgz#954e46c1dd3ad48e49db9ada7218b0985cee75ef" + integrity sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== + dependencies: + "@floating-ui/core" "^1.0.0" + "@floating-ui/utils" "^0.2.0" + + "@floating-ui/react-dom@^2.0.0": + version "2.0.8" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.8.tgz#afc24f9756d1b433e1fe0d047c24bd4d9cefaa5d" + integrity sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw== + dependencies: + "@floating-ui/dom" "^1.6.1" + + "@floating-ui/utils@^0.2.0", "@floating-ui/utils@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2" + integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== + + "@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + + "@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + + "@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + + "@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + + "@jest/transform@^29.3.1": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + + "@jest/types@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + + "@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + + "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + + "@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + + "@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + + "@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + + "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + + "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + + "@juggle/resize-observer@^3.3.1": + version "3.4.0" + resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" + integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== + + "@manypkg/find-root@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" + integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== + dependencies: + "@babel/runtime" "^7.5.5" + "@types/node" "^12.7.1" + find-up "^4.1.0" + fs-extra "^8.1.0" + + "@manypkg/get-packages@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.3.tgz#e184db9bba792fa4693de4658cfb1463ac2c9c47" + integrity sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A== + dependencies: + "@babel/runtime" "^7.5.5" + "@changesets/types" "^4.0.1" + "@manypkg/find-root" "^1.1.0" + fs-extra "^8.1.0" + globby "^11.0.0" + read-yaml-file "^1.1.0" + + "@mdx-js/react@^2.1.5": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3" + integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g== + dependencies: + "@types/mdx" "^2.0.0" + "@types/react" ">=16" + + "@ndelangen/get-tarball@^3.0.7": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz#727ff4454e65f34707e742a59e5e6b1f525d8964" + integrity sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA== + dependencies: + gunzip-maybe "^1.4.2" + pump "^3.0.0" + tar-fs "^2.1.1" + + "@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + + "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + + "@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + + "@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + + "@pmmmwh/react-refresh-webpack-plugin@^0.5.11": + version "0.5.11" + resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz#7c2268cedaa0644d677e8c4f377bc8fb304f714a" + integrity sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ== + dependencies: + ansi-html-community "^0.0.8" + common-path-prefix "^3.0.0" + core-js-pure "^3.23.3" + error-stack-parser "^2.0.6" + find-up "^5.0.0" + html-entities "^2.1.0" + loader-utils "^2.0.4" + schema-utils "^3.0.0" + source-map "^0.7.3" + + "@radix-ui/number@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.1.tgz#644161a3557f46ed38a042acf4a770e826021674" + integrity sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/primitive@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.1.tgz#e46f9958b35d10e9f6dc71c497305c22e3e55dbd" + integrity sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-arrow@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz#c24f7968996ed934d57fe6cde5d6ec7266e1d25d" + integrity sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + + "@radix-ui/react-collection@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.0.3.tgz#9595a66e09026187524a36c6e7e9c7d286469159" + integrity sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-slot" "1.0.2" + + "@radix-ui/react-compose-refs@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz#7ed868b66946aa6030e580b1ffca386dd4d21989" + integrity sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-context@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.1.tgz#fe46e67c96b240de59187dcb7a1a50ce3e2ec00c" + integrity sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-direction@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.1.tgz#9cb61bf2ccf568f3421422d182637b7f47596c9b" + integrity sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-dismissable-layer@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz#883a48f5f938fa679427aa17fcba70c5494c6978" + integrity sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-escape-keydown" "1.0.3" + + "@radix-ui/react-focus-guards@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz#1ea7e32092216b946397866199d892f71f7f98ad" + integrity sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-focus-scope@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.3.tgz#9c2e8d4ed1189a1d419ee61edd5c1828726472f9" + integrity sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + + "@radix-ui/react-id@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.1.tgz#73cdc181f650e4df24f0b6a5b7aa426b912c88c0" + integrity sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-layout-effect" "1.0.1" + + "@radix-ui/react-popper@1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.1.2.tgz#4c0b96fcd188dc1f334e02dba2d538973ad842e9" + integrity sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg== + dependencies: + "@babel/runtime" "^7.13.10" + "@floating-ui/react-dom" "^2.0.0" + "@radix-ui/react-arrow" "1.0.3" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" + "@radix-ui/react-use-rect" "1.0.1" + "@radix-ui/react-use-size" "1.0.1" + "@radix-ui/rect" "1.0.1" + + "@radix-ui/react-portal@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.0.3.tgz#ffb961244c8ed1b46f039e6c215a6c4d9989bda1" + integrity sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + + "@radix-ui/react-primitive@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz#d49ea0f3f0b2fe3ab1cb5667eb03e8b843b914d0" + integrity sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-slot" "1.0.2" + + "@radix-ui/react-roving-focus@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz#e90c4a6a5f6ac09d3b8c1f5b5e81aab2f0db1974" + integrity sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-collection" "1.0.3" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-direction" "1.0.1" + "@radix-ui/react-id" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-controllable-state" "1.0.1" + + "@radix-ui/react-select@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-select/-/react-select-1.2.2.tgz#caa981fa0d672cf3c1b2a5240135524e69b32181" + integrity sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/number" "1.0.1" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-collection" "1.0.3" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-direction" "1.0.1" + "@radix-ui/react-dismissable-layer" "1.0.4" + "@radix-ui/react-focus-guards" "1.0.1" + "@radix-ui/react-focus-scope" "1.0.3" + "@radix-ui/react-id" "1.0.1" + "@radix-ui/react-popper" "1.1.2" + "@radix-ui/react-portal" "1.0.3" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-slot" "1.0.2" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-controllable-state" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" + "@radix-ui/react-use-previous" "1.0.1" + "@radix-ui/react-visually-hidden" "1.0.3" + aria-hidden "^1.1.1" + react-remove-scroll "2.5.5" + + "@radix-ui/react-separator@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-separator/-/react-separator-1.0.3.tgz#be5a931a543d5726336b112f465f58585c04c8aa" + integrity sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + + "@radix-ui/react-slot@1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.2.tgz#a9ff4423eade67f501ffb32ec22064bc9d3099ab" + integrity sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.1" + + "@radix-ui/react-toggle-group@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz#f5b5c8c477831b013bec3580c55e20a68179d6ec" + integrity sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-direction" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-roving-focus" "1.0.4" + "@radix-ui/react-toggle" "1.0.3" + "@radix-ui/react-use-controllable-state" "1.0.1" + + "@radix-ui/react-toggle@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz#aecb2945630d1dc5c512997556c57aba894e539e" + integrity sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-controllable-state" "1.0.1" + + "@radix-ui/react-toolbar@^1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz#3211a105567fa016e89921b5b514877f833de559" + integrity sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-direction" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-roving-focus" "1.0.4" + "@radix-ui/react-separator" "1.0.3" + "@radix-ui/react-toggle-group" "1.0.4" + + "@radix-ui/react-use-callback-ref@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz#f4bb1f27f2023c984e6534317ebc411fc181107a" + integrity sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-use-controllable-state@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz#ecd2ced34e6330caf89a82854aa2f77e07440286" + integrity sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "1.0.1" + + "@radix-ui/react-use-escape-keydown@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz#217b840c250541609c66f67ed7bab2b733620755" + integrity sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "1.0.1" + + "@radix-ui/react-use-layout-effect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz#be8c7bc809b0c8934acf6657b577daf948a75399" + integrity sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-use-previous@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz#b595c087b07317a4f143696c6a01de43b0d0ec66" + integrity sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw== + dependencies: + "@babel/runtime" "^7.13.10" + + "@radix-ui/react-use-rect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz#fde50b3bb9fd08f4a1cd204572e5943c244fcec2" + integrity sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/rect" "1.0.1" + + "@radix-ui/react-use-size@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz#1c5f5fea940a7d7ade77694bb98116fb49f870b2" + integrity sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-layout-effect" "1.0.1" + + "@radix-ui/react-visually-hidden@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz#51aed9dd0fe5abcad7dee2a234ad36106a6984ac" + integrity sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + + "@radix-ui/rect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.0.1.tgz#bf8e7d947671996da2e30f4904ece343bc4a883f" + integrity sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ== + dependencies: + "@babel/runtime" "^7.13.10" + + "@rollup/rollup-android-arm-eabi@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.4.tgz#5e8930291f1e5ead7fb1171d53ba5c87718de062" + integrity sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q== + + "@rollup/rollup-android-arm-eabi@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" + integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== + + "@rollup/rollup-android-arm64@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.4.tgz#ffb84f1359c04ec8a022a97110e18a5600f5f638" + integrity sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w== + + "@rollup/rollup-android-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" + integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== + + "@rollup/rollup-darwin-arm64@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.4.tgz#b2fcee8d4806a0b1b9185ac038cc428ddedce9f4" + integrity sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw== + + "@rollup/rollup-darwin-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" + integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== + + "@rollup/rollup-darwin-x64@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.4.tgz#fcb25ccbaa3dd33a6490e9d1c64bab2e0e16b932" + integrity sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ== + + "@rollup/rollup-darwin-x64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" + integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== + + "@rollup/rollup-linux-arm-gnueabihf@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.4.tgz#40d46bdfe667e5eca31bf40047460e326d2e26bb" + integrity sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw== + + "@rollup/rollup-linux-arm-gnueabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" + integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== + + "@rollup/rollup-linux-arm-musleabihf@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.4.tgz#7741df2448c11c56588b50835dbfe91b1a10b375" + integrity sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg== + + "@rollup/rollup-linux-arm-musleabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" + integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== + + "@rollup/rollup-linux-arm64-gnu@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.4.tgz#0a23b02d2933e4c4872ad18d879890b6a4a295df" + integrity sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w== + + "@rollup/rollup-linux-arm64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" + integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== + + "@rollup/rollup-linux-arm64-musl@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.4.tgz#e37ef259358aa886cc07d782220a4fb83c1e6970" + integrity sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg== + + "@rollup/rollup-linux-arm64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" + integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== + + "@rollup/rollup-linux-powerpc64le-gnu@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.4.tgz#8c69218b6de05ee2ba211664a2d2ac1e54e43f94" + integrity sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w== + + "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" + integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== + + "@rollup/rollup-linux-riscv64-gnu@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.4.tgz#d32727dab8f538d9a4a7c03bcf58c436aecd0139" + integrity sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng== + + "@rollup/rollup-linux-riscv64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" + integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== + + "@rollup/rollup-linux-s390x-gnu@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.4.tgz#d46097246a187d99fc9451fe8393b7155b47c5ec" + integrity sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ== + + "@rollup/rollup-linux-s390x-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" + integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== + + "@rollup/rollup-linux-x64-gnu@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.4.tgz#6356c5a03a4afb1c3057490fc51b4764e109dbc7" + integrity sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA== + + "@rollup/rollup-linux-x64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" + integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== + + "@rollup/rollup-linux-x64-musl@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.4.tgz#03a5831a9c0d05877b94653b5ddd3020d3c6fb06" + integrity sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA== + + "@rollup/rollup-linux-x64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" + integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== + + "@rollup/rollup-win32-arm64-msvc@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.4.tgz#6cc0db57750376b9303bdb6f5482af8974fcae35" + integrity sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA== + + "@rollup/rollup-win32-arm64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" + integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== + + "@rollup/rollup-win32-ia32-msvc@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.4.tgz#aea0b7e492bd9ed46971cb80bc34f1eb14e07789" + integrity sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w== + + "@rollup/rollup-win32-ia32-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" + integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== + + "@rollup/rollup-win32-x64-msvc@4.16.4": + version "4.16.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.4.tgz#c09ad9a132ccb5a67c4f211d909323ab1294f95f" + integrity sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A== + + "@rollup/rollup-win32-x64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" + integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== + + "@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + + "@storybook/addon-actions@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-7.6.18.tgz#18776345a1c43ab2d27045432f6a4c0f32b5e1da" + integrity sha512-HWS2NqUNH7FGG5QyWMvV3aw2IcwXw6xQwCx2xLUD7fJFqCAf4cDXZIsGnTVHCtoddVRBIlcS+LRmiGU8+mQKdw== + dependencies: + "@storybook/core-events" "7.6.18" + "@storybook/global" "^5.0.0" + "@types/uuid" "^9.0.1" + dequal "^2.0.2" + polished "^4.2.2" + uuid "^9.0.0" + + "@storybook/addon-backgrounds@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.18.tgz#c120e615dc73164626f0dfcb77b8597c0b51dd58" + integrity sha512-Bai0n3RfO+PmsQ69KdRhPvuwCistNLvpKtAEzo9nlpHfYh921OgVfZrKFfWJgYskvyVlaNu0DeR3t6TT8CbT/A== + dependencies: + "@storybook/global" "^5.0.0" + memoizerific "^1.11.3" + ts-dedent "^2.0.0" + + "@storybook/addon-controls@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-7.6.18.tgz#fb353544fc256a00429a45702e7cfc7f212bd011" + integrity sha512-iH/JbltgjDFihRppeniNlGE3Qc86Q5oW8+p77E9B0ILn3yGk3rNOSlOTUg7a1seMjddJfsptDn4xMFHuunYuyQ== + dependencies: + "@storybook/blocks" "7.6.18" + lodash "^4.17.21" + ts-dedent "^2.0.0" + + "@storybook/addon-docs@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-7.6.18.tgz#302da70ae542313bb94a35dbf33b21dd927823d3" + integrity sha512-+JzGL5ImwZ5VE+PiEUzRHWKbgvFsg/G2OTzyqZD8vQ+NlB6rmKGzGpXz0c4D6xEupzIJwjbpSN2ZOzgld0Du9Q== + dependencies: + "@jest/transform" "^29.3.1" + "@mdx-js/react" "^2.1.5" + "@storybook/blocks" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/components" "7.6.18" + "@storybook/csf-plugin" "7.6.18" + "@storybook/csf-tools" "7.6.18" + "@storybook/global" "^5.0.0" + "@storybook/mdx2-csf" "^1.0.0" + "@storybook/node-logger" "7.6.18" + "@storybook/postinstall" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@storybook/react-dom-shim" "7.6.18" + "@storybook/theming" "7.6.18" + "@storybook/types" "7.6.18" + fs-extra "^11.1.0" + remark-external-links "^8.0.0" + remark-slug "^6.0.0" + ts-dedent "^2.0.0" + + "@storybook/addon-essentials@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-7.6.18.tgz#f5a36b79db5bda26216a249d94a877129ae13fbd" + integrity sha512-qgVH442LhIdzCbx0E+eB1+xTj1TOKqSqrUy76viILCK1wfMSeIsU8TNkqnc8hzUQH2IatUJb/t76wXh2eV9s4w== + dependencies: + "@storybook/addon-actions" "7.6.18" + "@storybook/addon-backgrounds" "7.6.18" + "@storybook/addon-controls" "7.6.18" + "@storybook/addon-docs" "7.6.18" + "@storybook/addon-highlight" "7.6.18" + "@storybook/addon-measure" "7.6.18" + "@storybook/addon-outline" "7.6.18" + "@storybook/addon-toolbars" "7.6.18" + "@storybook/addon-viewport" "7.6.18" + "@storybook/core-common" "7.6.18" + "@storybook/manager-api" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/preview-api" "7.6.18" + ts-dedent "^2.0.0" + + "@storybook/addon-highlight@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-7.6.18.tgz#a29892bdc1e3bb586e8abdb772ae5e350ba7ef87" + integrity sha512-XUR9sTcxqYbes9ckj1b/GyAJ3yFfE/2YnvPFz8vWO9hIZjlL0Wvyiy/1L2DePF1S+zHrYA8+dg65vK8pMXUrnQ== + dependencies: + "@storybook/global" "^5.0.0" + + "@storybook/addon-interactions@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-interactions/-/addon-interactions-7.6.18.tgz#7b40196799d8e1cbe6572a02e37ba4fc98e1316a" + integrity sha512-+wMkNpU6rlaLNx7N7VbfRBA4ud1Fx7hGoUs6Tgkbf8rvAKAPV6Bd66O/V2mmUCGLULshdu4HLv5SSKDXId8pag== + dependencies: + "@storybook/global" "^5.0.0" + "@storybook/types" "7.6.18" + jest-mock "^27.0.6" + polished "^4.2.2" + ts-dedent "^2.2.0" + + "@storybook/addon-links@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-7.6.18.tgz#077cd7d617fc5a044a0f42ba3202dda8e094b014" + integrity sha512-KOA9mcl+cSLjdHx4WNkTB/Y+flRnM3MY+Q9/f7suznIYEmx1KKQoOhcmudFKJZEEH5FaQUDaaJE/3sj0JTiBRQ== + dependencies: + "@storybook/csf" "^0.1.2" + "@storybook/global" "^5.0.0" + ts-dedent "^2.0.0" + + "@storybook/addon-measure@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-7.6.18.tgz#a0d912ef22e825c315b6a76ad3cdcda4f5807755" + integrity sha512-ixEW/RG3iJCiyJQ51vKqlTJHq6vJ7O/xHGGMFV9+RYP0S2klZctQQwLZxUWUjSLUUjCX/DrxVlmK03h+7f+wWA== + dependencies: + "@storybook/global" "^5.0.0" + tiny-invariant "^1.3.1" + + "@storybook/addon-onboarding@^1.0.10": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-onboarding/-/addon-onboarding-1.0.11.tgz#793540d3348c7c844a495db615c85720f393538a" + integrity sha512-0Sa7PJDsM6AANOWZX7vq3kgCbS9AZFjr3tfr3bLGfXviwIBKjoZDDdIErJkS3D4mNcDa78lYQvp3PTCKwLIJ9A== + dependencies: + "@storybook/telemetry" "^7.1.0" + react-confetti "^6.1.0" + + "@storybook/addon-outline@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-7.6.18.tgz#e90dec1b24f2df0715ae30b6687deddd5f4f633e" + integrity sha512-YKHjir/+KZH0P/F8spmm9l/EC28VXlE0beAxeErvpPiA6t1Ykrh7GEPvPEolY1DydKBaLLnd20adLhDskl+oGg== + dependencies: + "@storybook/global" "^5.0.0" + ts-dedent "^2.0.0" + + "@storybook/addon-postcss@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@storybook/addon-postcss/-/addon-postcss-2.0.0.tgz#ec61cb9bb2662f408072b35c466c7df801c28498" + integrity sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA== + dependencies: + "@storybook/node-logger" "^6.1.14" + css-loader "^3.6.0" + postcss "^7.0.35" + postcss-loader "^4.2.0" + style-loader "^1.3.0" + + "@storybook/addon-styling-webpack@^0.0.6": + version "0.0.6" + resolved "https://registry.yarnpkg.com/@storybook/addon-styling-webpack/-/addon-styling-webpack-0.0.6.tgz#6e974c7498c8cfe6a8f98344e9ef4c54c1980e95" + integrity sha512-JjM2FXFiHpjbJsp7nRUEMhYBRpK6ukBKsbtWzCrAGOfUgoElcGwPY8KhSKSnRknIhebonGK1bxalh3u8bGZ/dw== + dependencies: + "@storybook/node-logger" "^7.0.12" + + "@storybook/addon-toolbars@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-7.6.18.tgz#5f5d3642e2a56516558033ab1aa56610b5705527" + integrity sha512-AlqW8rA5gNtxjbTyJtJlVfmqbcSJAWFHTvC7OfwbZRZLmF5agdBUQeAZYI75WBZpdlYrp23s88O+MRMa/CF2yA== + + "@storybook/addon-viewport@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-7.6.18.tgz#98c3109fc6166b85b8e3a52b0a5ca6a659e489b9" + integrity sha512-fgn38aXappEeDNg5u52fswhjkNN5Sru6Rf/2WhuuQXteIC2tX27J03Ud8h2aKydzHai7zz8jJ0IoGt7cA6W0Nw== + dependencies: + memoizerific "^1.11.3" + + "@storybook/blocks@7.6.18", "@storybook/blocks@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-7.6.18.tgz#539a44899a28cd244846e08ad4ca92c5a874dd5f" + integrity sha512-mCEyGew2nyiFwJ1iHfm4ItB/bDrVzYUODkKktmHDmJJgjKFIDQJPTgLsiQhXBtxqW0TImL4JpSU/aUAAbXpZeg== + dependencies: + "@storybook/channels" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/components" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/csf" "^0.1.2" + "@storybook/docs-tools" "7.6.18" + "@storybook/global" "^5.0.0" + "@storybook/manager-api" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@storybook/theming" "7.6.18" + "@storybook/types" "7.6.18" + "@types/lodash" "^4.14.167" + color-convert "^2.0.1" + dequal "^2.0.2" + lodash "^4.17.21" + markdown-to-jsx "^7.1.8" + memoizerific "^1.11.3" + polished "^4.2.2" + react-colorful "^5.1.2" + telejson "^7.2.0" + tocbot "^4.20.1" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + + "@storybook/builder-manager@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/builder-manager/-/builder-manager-7.6.18.tgz#ae2adbe08d628479a9ae286ae5f85c8f9c6fe56d" + integrity sha512-kXnC/lDA3zUeXgwAoHKed+CXbDcKV8GJ6qrPCw1D1a3ug5Lw5DYPBJC/KP3CgNpVx6vukkeEIwKYg2M+LRmI6g== + dependencies: + "@fal-works/esbuild-plugin-global-externals" "^2.1.2" + "@storybook/core-common" "7.6.18" + "@storybook/manager" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@types/ejs" "^3.1.1" + "@types/find-cache-dir" "^3.2.1" + "@yarnpkg/esbuild-plugin-pnp" "^3.0.0-rc.10" + browser-assert "^1.2.1" + ejs "^3.1.8" + esbuild "^0.18.0" + esbuild-plugin-alias "^0.2.1" + express "^4.17.3" + find-cache-dir "^3.0.0" + fs-extra "^11.1.0" + process "^0.11.10" + util "^0.12.4" + + "@storybook/builder-webpack5@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/builder-webpack5/-/builder-webpack5-7.6.18.tgz#a8420a8daa5781d7f671729899e69413ff85f87b" + integrity sha512-0NwYwdd9VocBEkb+tiSBfHUD8e/xVs7e+5ifKnI+wZvIGCHfHDBgOgbkcuwUm1WQcMjoTh/Wp13TW5dboNzoSg== + dependencies: + "@babel/core" "^7.23.2" + "@storybook/channels" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/core-common" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/core-webpack" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/preview" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@swc/core" "^1.3.82" + "@types/node" "^18.0.0" + "@types/semver" "^7.3.4" + babel-loader "^9.0.0" + browser-assert "^1.2.1" + case-sensitive-paths-webpack-plugin "^2.4.0" + cjs-module-lexer "^1.2.3" + constants-browserify "^1.0.0" + css-loader "^6.7.1" + es-module-lexer "^1.4.1" + express "^4.17.3" + fork-ts-checker-webpack-plugin "^8.0.0" + fs-extra "^11.1.0" + html-webpack-plugin "^5.5.0" + magic-string "^0.30.5" + path-browserify "^1.0.1" + process "^0.11.10" + semver "^7.3.7" + style-loader "^3.3.1" + swc-loader "^0.2.3" + terser-webpack-plugin "^5.3.1" + ts-dedent "^2.0.0" + url "^0.11.0" + util "^0.12.4" + util-deprecate "^1.0.2" + webpack "5" + webpack-dev-middleware "^6.1.1" + webpack-hot-middleware "^2.25.1" + webpack-virtual-modules "^0.5.0" + + "@storybook/channels@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-7.6.18.tgz#bcbe6baacf012380a7f1ed47f04b61a1a9467c8d" + integrity sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ== + dependencies: + "@storybook/client-logger" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/global" "^5.0.0" + qs "^6.10.0" + telejson "^7.2.0" + tiny-invariant "^1.3.1" + + "@storybook/cli@7.6.18", "@storybook/cli@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-7.6.18.tgz#23bfa7a6ed2e23b20dbe0f72cb85e35fe7e4d5e7" + integrity sha512-2zlCyX4m1Jb3p+P/Z+7ioa7cXA+Sv+j0JevUWaaVZbBLrjj/G2k5bYzgrks0FhQZ6MLv5bkuZPGtJMgWQ8+c3Q== + dependencies: + "@babel/core" "^7.23.2" + "@babel/preset-env" "^7.23.2" + "@babel/types" "^7.23.0" + "@ndelangen/get-tarball" "^3.0.7" + "@storybook/codemod" "7.6.18" + "@storybook/core-common" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/core-server" "7.6.18" + "@storybook/csf-tools" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/telemetry" "7.6.18" + "@storybook/types" "7.6.18" + "@types/semver" "^7.3.4" + "@yarnpkg/fslib" "2.10.3" + "@yarnpkg/libzip" "2.3.0" + chalk "^4.1.0" + commander "^6.2.1" + cross-spawn "^7.0.3" + detect-indent "^6.1.0" + envinfo "^7.7.3" + execa "^5.0.0" + express "^4.17.3" + find-up "^5.0.0" + fs-extra "^11.1.0" + get-npm-tarball-url "^2.0.3" + get-port "^5.1.1" + giget "^1.0.0" + globby "^11.0.2" + jscodeshift "^0.15.1" + leven "^3.1.0" + ora "^5.4.1" + prettier "^2.8.0" + prompts "^2.4.0" + puppeteer-core "^2.1.1" + read-pkg-up "^7.0.1" + semver "^7.3.7" + strip-json-comments "^3.0.1" + tempy "^1.0.1" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + + "@storybook/client-logger@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-7.6.18.tgz#47c04850f2759c98176b2764c05f64210cfbacdf" + integrity sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg== + dependencies: + "@storybook/global" "^5.0.0" + + "@storybook/codemod@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-7.6.18.tgz#8c250e82d156da01533099821c57e1bc34933904" + integrity sha512-XV9/oZYctRKQzllqjwcH17Fys91cmaL+/Vy9aJmpnv/+yNFUdvsyrjqEGfVpl5c00/Ge3ueP+y7YhLYSjTezUg== + dependencies: + "@babel/core" "^7.23.2" + "@babel/preset-env" "^7.23.2" + "@babel/types" "^7.23.0" + "@storybook/csf" "^0.1.2" + "@storybook/csf-tools" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/types" "7.6.18" + "@types/cross-spawn" "^6.0.2" + cross-spawn "^7.0.3" + globby "^11.0.2" + jscodeshift "^0.15.1" + lodash "^4.17.21" + prettier "^2.8.0" + recast "^0.23.1" + + "@storybook/components@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-7.6.18.tgz#aeb83cc8035fbae08e3e80a3e61d8a5ae5a09f16" + integrity sha512-t27jyQUTkLgpQc2b7AQ848MJkihOfTgXsDIIMW1sYixqYO1R2anWE2qF5+1ZXZ58xyQEbUWnWUNYrGj3jGwAOw== + dependencies: + "@radix-ui/react-select" "^1.2.2" + "@radix-ui/react-toolbar" "^1.0.4" + "@storybook/client-logger" "7.6.18" + "@storybook/csf" "^0.1.2" + "@storybook/global" "^5.0.0" + "@storybook/theming" "7.6.18" + "@storybook/types" "7.6.18" + memoizerific "^1.11.3" + use-resize-observer "^9.1.0" + util-deprecate "^1.0.2" + + "@storybook/core-client@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-7.6.18.tgz#34f8783ec440901a3319cf438f5c100e6d59a53a" + integrity sha512-gKelPHlE4Xr8mkC0q1CotxB1hoR54P94LeJ6NrmNp2W8vZLiV8d/3CShJwTyEEkhhOB8diEGyya2LawboMYPpg== + dependencies: + "@storybook/client-logger" "7.6.18" + "@storybook/preview-api" "7.6.18" + + "@storybook/core-common@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-7.6.18.tgz#5866a6be2eaf0cd095bd2f0cde48796d1c6ee863" + integrity sha512-ZZbvjpDKs3KPyoUWLTaMn8/0N2S8tXZpMfdrZrHHOzy9O3mmbk2Silr1OytWS6CBICFgDb71p7EWZ026KOVNkA== + dependencies: + "@storybook/core-events" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/types" "7.6.18" + "@types/find-cache-dir" "^3.2.1" + "@types/node" "^18.0.0" + "@types/node-fetch" "^2.6.4" + "@types/pretty-hrtime" "^1.0.0" + chalk "^4.1.0" + esbuild "^0.18.0" + esbuild-register "^3.5.0" + file-system-cache "2.3.0" + find-cache-dir "^3.0.0" + find-up "^5.0.0" + fs-extra "^11.1.0" + glob "^10.0.0" + handlebars "^4.7.7" + lazy-universal-dotenv "^4.0.0" + node-fetch "^2.0.0" + picomatch "^2.3.0" + pkg-dir "^5.0.0" + pretty-hrtime "^1.0.3" + resolve-from "^5.0.0" + ts-dedent "^2.0.0" + + "@storybook/core-events@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-7.6.18.tgz#0685801ca03c6c043851a336f96b97cda5b037ca" + integrity sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA== + dependencies: + ts-dedent "^2.0.0" + + "@storybook/core-server@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-7.6.18.tgz#0935e2fea04a61ff1c9c9a11861f293f7794e817" + integrity sha512-LXsbVqsHHcF/9mCcCDebRUO+ZuvK10Xtrgt8KJfAuWGU2nj8D2sJLw7suuDEB7UBTNMsJMOAmyrVU9FQbfWLCQ== + dependencies: + "@aw-web-design/x-default-browser" "1.4.126" + "@discoveryjs/json-ext" "^0.5.3" + "@storybook/builder-manager" "7.6.18" + "@storybook/channels" "7.6.18" + "@storybook/core-common" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/csf" "^0.1.2" + "@storybook/csf-tools" "7.6.18" + "@storybook/docs-mdx" "^0.1.0" + "@storybook/global" "^5.0.0" + "@storybook/manager" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@storybook/telemetry" "7.6.18" + "@storybook/types" "7.6.18" + "@types/detect-port" "^1.3.0" + "@types/node" "^18.0.0" + "@types/pretty-hrtime" "^1.0.0" + "@types/semver" "^7.3.4" + better-opn "^3.0.2" + chalk "^4.1.0" + cli-table3 "^0.6.1" + compression "^1.7.4" + detect-port "^1.3.0" + express "^4.17.3" + fs-extra "^11.1.0" + globby "^11.0.2" + ip "^2.0.1" + lodash "^4.17.21" + open "^8.4.0" + pretty-hrtime "^1.0.3" + prompts "^2.4.0" + read-pkg-up "^7.0.1" + semver "^7.3.7" + telejson "^7.2.0" + tiny-invariant "^1.3.1" + ts-dedent "^2.0.0" + util "^0.12.4" + util-deprecate "^1.0.2" + watchpack "^2.2.0" + ws "^8.2.3" + + "@storybook/core-webpack@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/core-webpack/-/core-webpack-7.6.18.tgz#6fd0fd729d9ad67d2288f11a01d1683dea9acab6" + integrity sha512-GoDzQRYuN7diahIeYkPYAVYZi1RjvJ7cEGn6fnERTdrVa7uQBe/VtfWyZ3lp6WYFXGwu/9jlWSPdsP8SpLgVJQ== + dependencies: + "@storybook/core-common" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/types" "7.6.18" + "@types/node" "^18.0.0" + ts-dedent "^2.0.0" + + "@storybook/csf-plugin@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-7.6.18.tgz#7662d55504e4c06c49791a1e766b46bdf667b7d1" + integrity sha512-dV/f0oIuv/OsmAh3FVqBkZAvQ5YRQXglZlHynaqt8cUVXi+Nsc/b7kFTBGj2GyIi9TCdiqfV5Yns+Bq2bIVHrA== + dependencies: + "@storybook/csf-tools" "7.6.18" + unplugin "^1.3.1" + + "@storybook/csf-tools@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/csf-tools/-/csf-tools-7.6.18.tgz#4050bd4cc4f473e65b6034b2af2d83d9fb53423f" + integrity sha512-ngRNHEtLJv6vMlqCeJaG8dh1CwtCaGCHi7xuS+b71Y97xXLJlA6RR9rhsMG6bDwMJR+xiIqKUc6HH3ZBSVVhiA== + dependencies: + "@babel/generator" "^7.23.0" + "@babel/parser" "^7.23.0" + "@babel/traverse" "^7.23.2" + "@babel/types" "^7.23.0" + "@storybook/csf" "^0.1.2" + "@storybook/types" "7.6.18" + fs-extra "^11.1.0" + recast "^0.23.1" + ts-dedent "^2.0.0" + + "@storybook/csf@^0.1.2": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.4.tgz#18224bcd571fa834ccc4bebda8a0ca4cedbc4d91" + integrity sha512-B9UI/lsQMjF+oEfZCI6YXNoeuBcGZoOP5x8yKbe2tIEmsMjSztFKkpPzi5nLCnBk/MBtl6QJeI3ksJnbsWPkOw== + dependencies: + type-fest "^2.19.0" + + "@storybook/docs-mdx@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz#33ba0e39d1461caf048b57db354b2cc410705316" + integrity sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg== + + "@storybook/docs-tools@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/docs-tools/-/docs-tools-7.6.18.tgz#e818f95ebcf73371cf255edb1662eb35781942fd" + integrity sha512-gE4He4YoOAFnFwarSsOJVLC1YVN6iilQXMZsKD2SNI0M30nOeqK5NjFwXtAklq6QQvBZVZV7VRG5sY7i4aGBcQ== + dependencies: + "@storybook/core-common" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@storybook/types" "7.6.18" + "@types/doctrine" "^0.0.3" + assert "^2.1.0" + doctrine "^3.0.0" + lodash "^4.17.21" + + "@storybook/global@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed" + integrity sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ== + + "@storybook/instrumenter@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-7.6.18.tgz#97a3cb88e7792d269c22e067ece90eaec19868e3" + integrity sha512-OpGKjsUtgKJCl0AaOCL2I9bRJbQ1psrXd+HgAaIB1VovBHeCxmhktjGxu6GfychVNCFWdoK/plgOUxblAT3CPA== + dependencies: + "@storybook/channels" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/global" "^5.0.0" + "@storybook/preview-api" "7.6.18" + "@vitest/utils" "^0.34.6" + util "^0.12.4" + + "@storybook/manager-api@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-7.6.18.tgz#568e73072537ef710b8b063dc574557f207074a9" + integrity sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA== + dependencies: + "@storybook/channels" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/csf" "^0.1.2" + "@storybook/global" "^5.0.0" + "@storybook/router" "7.6.18" + "@storybook/theming" "7.6.18" + "@storybook/types" "7.6.18" + dequal "^2.0.2" + lodash "^4.17.21" + memoizerific "^1.11.3" + store2 "^2.14.2" + telejson "^7.2.0" + ts-dedent "^2.0.0" + + "@storybook/manager@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/manager/-/manager-7.6.18.tgz#565f021e4523f64173d5fcd8e62591aa048d5c68" + integrity sha512-ZFatbkbK5qv2a4jJEm6WqKZZqkYm++t0uAZozBA6TNq/bWMaD9ihummPTGND8R0M7SW0rfUVFDAE8bv14gLcdg== + + "@storybook/mdx2-csf@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz#97f6df04d0bf616991cc1005a073ac004a7281e5" + integrity sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw== + + "@storybook/node-logger@7.6.18", "@storybook/node-logger@^7.0.12": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-7.6.18.tgz#96bff7f179d8879aa0b32e9c3983b2dd7a140fb8" + integrity sha512-e75XQ6TekxjpzdlW6rZAFtv/9aD/nQb4z9kaBr3GhuVMGVJNihs9ek6eVEFZLxpks4FDVSPTSg0QtFpSgOpbrg== + + "@storybook/node-logger@^6.1.14": + version "6.5.16" + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-6.5.16.tgz#d57fd6204c2abfbc297551d98ad5475dd73207cc" + integrity sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg== + dependencies: + "@types/npmlog" "^4.1.2" + chalk "^4.1.0" + core-js "^3.8.2" + npmlog "^5.0.1" + pretty-hrtime "^1.0.3" + + "@storybook/postinstall@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-7.6.18.tgz#78898d5431b5787291f34bdff15dc9673a35a2ee" + integrity sha512-TTTvuR6LyaRfzrtJvSr+L4Bys8gp3wOKACOErZBXjt3UCQR4rwhwGP7k2GsysiHHLbxGu25ZU2fnnT2OYYeTNA== + + "@storybook/preset-react-webpack@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/preset-react-webpack/-/preset-react-webpack-7.6.18.tgz#d1ca7bf8cef41aee65273d2f4b1f7443062795e5" + integrity sha512-SxDNdo6xAzhg27DGY+JlA9txil/4+oKtlFJM00SgnH5MHoABPlDg38Gc6C2aDhPgSKiXWALrcF5McTJDBsJmPA== + dependencies: + "@babel/preset-flow" "^7.22.15" + "@babel/preset-react" "^7.22.15" + "@pmmmwh/react-refresh-webpack-plugin" "^0.5.11" + "@storybook/core-webpack" "7.6.18" + "@storybook/docs-tools" "7.6.18" + "@storybook/node-logger" "7.6.18" + "@storybook/react" "7.6.18" + "@storybook/react-docgen-typescript-plugin" "1.0.6--canary.9.0c3f3b7.0" + "@types/node" "^18.0.0" + "@types/semver" "^7.3.4" + babel-plugin-add-react-displayname "^0.0.5" + fs-extra "^11.1.0" + magic-string "^0.30.5" + react-docgen "^7.0.0" + react-refresh "^0.14.0" + semver "^7.3.7" + webpack "5" + + "@storybook/preview-api@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-7.6.18.tgz#423b1722c11ad58dd258bc3db32fa8720bbb7675" + integrity sha512-X3r3MnoLJWUhHTVFggJcfHzDLCKSOdHNOpXXRNkdG2WXFcCZAlTdm0KqThCvQmdqS4OAOJMfn4pHqtxPG8yfyg== + dependencies: + "@storybook/channels" "7.6.18" + "@storybook/client-logger" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/csf" "^0.1.2" + "@storybook/global" "^5.0.0" + "@storybook/types" "7.6.18" + "@types/qs" "^6.9.5" + dequal "^2.0.2" + lodash "^4.17.21" + memoizerific "^1.11.3" + qs "^6.10.0" + synchronous-promise "^2.0.15" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + + "@storybook/preview@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/preview/-/preview-7.6.18.tgz#bdd0a472ccb1543c898d662e293c26ed58edc30b" + integrity sha512-iltkZxz991GmzXMNkM9b7ddM45IsfZoQ+pMGXOv902Xawx9otvNkMVxBMhpXG+tf7G3FrSM1DFT6V9SycC6pqg== + + "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0": + version "1.0.6--canary.9.0c3f3b7.0" + resolved "https://registry.yarnpkg.com/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz#7f10f3c641f32e4513a8b6ffb5036933e7059534" + integrity sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q== + dependencies: + debug "^4.1.1" + endent "^2.0.1" + find-cache-dir "^3.3.1" + flat-cache "^3.0.4" + micromatch "^4.0.2" + react-docgen-typescript "^2.2.2" + tslib "^2.0.0" + + "@storybook/react-dom-shim@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-7.6.18.tgz#896c726f1f77c10feaef0c7aabb15c6afb0a0a03" + integrity sha512-s4eIq5KVnS7E4pIXdq31YzqRZX0FZEYKoUeZziBBajRvmPAJ/zWSBbrGeOIR71xDHT7UkUoeb5EuyfykS9yuoA== + + "@storybook/react-webpack5@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/react-webpack5/-/react-webpack5-7.6.18.tgz#f00a088b500d87c24001ce9ed8350efe1e4d425f" + integrity sha512-H7WbB+XhYyDJX6xyxLB9tlYvJ8YYjw4r0gQzpnYpGevIneZtAUTZ8LahO1mRsmQMYy/TzdvX7KRBxRIoIKu0zA== + dependencies: + "@storybook/builder-webpack5" "7.6.18" + "@storybook/preset-react-webpack" "7.6.18" + "@storybook/react" "7.6.18" + "@types/node" "^18.0.0" + + "@storybook/react@7.6.18", "@storybook/react@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/react/-/react-7.6.18.tgz#f2e062dfb9ea970623799bf1adf15e3a267a0269" + integrity sha512-cWAMz8W7Xa1fv8ugFsUCw0w08GsWGGw5XiYgLJJ+2/zQNhkMGzsY9zl7XQtULhIBfY0MptC7CLIYHc0t61xvHw== + dependencies: + "@storybook/client-logger" "7.6.18" + "@storybook/core-client" "7.6.18" + "@storybook/docs-tools" "7.6.18" + "@storybook/global" "^5.0.0" + "@storybook/preview-api" "7.6.18" + "@storybook/react-dom-shim" "7.6.18" + "@storybook/types" "7.6.18" + "@types/escodegen" "^0.0.6" + "@types/estree" "^0.0.51" + "@types/node" "^18.0.0" + acorn "^7.4.1" + acorn-jsx "^5.3.1" + acorn-walk "^7.2.0" + escodegen "^2.1.0" + html-tags "^3.1.0" + lodash "^4.17.21" + prop-types "^15.7.2" + react-element-to-jsx-string "^15.0.0" + ts-dedent "^2.0.0" + type-fest "~2.19" + util-deprecate "^1.0.2" + + "@storybook/router@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-7.6.18.tgz#e9d43be9771ee7e29e39ccbd0c494b2a7cca32ea" + integrity sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg== + dependencies: + "@storybook/client-logger" "7.6.18" + memoizerific "^1.11.3" + qs "^6.10.0" + + "@storybook/telemetry@7.6.18", "@storybook/telemetry@^7.1.0": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/telemetry/-/telemetry-7.6.18.tgz#a63900d52982e18ea5e05718cb12d04b789c0fcd" + integrity sha512-fVgQtWYpAA1Htiu05GwipBNM5odCi05FpaoaxnCO/CsqrTfKYBJTorVo8mh8wc03gfQJs1/nXN2v0WEo0ahUoA== + dependencies: + "@storybook/client-logger" "7.6.18" + "@storybook/core-common" "7.6.18" + "@storybook/csf-tools" "7.6.18" + chalk "^4.1.0" + detect-package-manager "^2.0.1" + fetch-retry "^5.0.2" + fs-extra "^11.1.0" + read-pkg-up "^7.0.1" + + "@storybook/test@^7.6.7": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/test/-/test-7.6.18.tgz#5fa7175c509e5db7ede6364724c7dde7ebf5ca5c" + integrity sha512-NJGHewnP10c9tSXrZylUURAwhk18ZFr3HkA4z6V/Gsn0lgEKYEx5DJjN8GeyZblW0JyZ2LQNSmh5gq8yeNY8Lg== + dependencies: + "@storybook/client-logger" "7.6.18" + "@storybook/core-events" "7.6.18" + "@storybook/instrumenter" "7.6.18" + "@storybook/preview-api" "7.6.18" + "@testing-library/dom" "^9.3.1" + "@testing-library/jest-dom" "^6.1.3" + "@testing-library/user-event" "14.3.0" + "@types/chai" "^4" + "@vitest/expect" "^0.34.2" + "@vitest/spy" "^0.34.1" + chai "^4.3.7" + util "^0.12.4" + + "@storybook/theming@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-7.6.18.tgz#622d6f5ce071a108e4e1c87e4b16b5f020b0cd7a" + integrity sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw== + dependencies: + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" + "@storybook/client-logger" "7.6.18" + "@storybook/global" "^5.0.0" + memoizerific "^1.11.3" + + "@storybook/types@7.6.18": + version "7.6.18" + resolved "https://registry.yarnpkg.com/@storybook/types/-/types-7.6.18.tgz#f7c362f0debde203de4084118395553505848dd4" + integrity sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w== + dependencies: + "@storybook/channels" "7.6.18" + "@types/babel__core" "^7.0.0" + "@types/express" "^4.7.0" + file-system-cache "2.3.0" + + "@swc/core-darwin-arm64@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.5.0.tgz#fd56dedb26ebaaf028cc427d0cec998095a275ac" + integrity sha512-dyA25zQjm3xmMFsRPFgBpSqWSW9TITnkndZkZAiPYLjBxH9oTNMa0l09BePsaqEeXySY++tUgAeYu/9onsHLbg== + + "@swc/core-darwin-x64@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.5.0.tgz#cbbc00bba19c01ecd6f6c952b7c6b722f02ef515" + integrity sha512-cO7kZMMA/fcQIBT31LBzcVNSk3AZGVYLqvEPnJhFImjPm3mGKUd6kWpARUEGR68MyRU2VsWhE6eCjMcM+G7bxw== + + "@swc/core-linux-arm-gnueabihf@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.5.0.tgz#47316c552d7edd06fcd2585a28574f24a82cc4d3" + integrity sha512-BXaXytS4y9lBFRO6vwA6ovvy1d2ZIzS02i2R1oegoZzzNu89CJDpkYXYS9bId0GvK2m9Q9y2ofoZzKE2Rp3PqQ== + + "@swc/core-linux-arm64-gnu@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.5.0.tgz#c957fdc1bd24d49c2b063fb37147672c29fb4407" + integrity sha512-Bu4/41pGadXKnRsUbox0ig63xImATVH704oPCXcoOvNGkDyMjWgIAhzIi111vrwFNpj9utabgUE4AtlUa2tAOQ== + + "@swc/core-linux-arm64-musl@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.5.0.tgz#0416382c54182d2e3f326e422716ac3cf7dbad24" + integrity sha512-lUFFvC8tsepNcTnKEHNrePWanVVef6PQ82Rv9wIeebgGHRUqDh6+CyCqodXez+aKz6NyE/PBIfp0r+jPx4hoJA== + + "@swc/core-linux-x64-gnu@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.5.0.tgz#08ce35c57a0f58e0015731a2b38efce390b34903" + integrity sha512-c6LegFU1qdyMfk+GzNIOvrX61+mksm21Q01FBnXSy1nf1ACj/a86jmr3zkPl0zpNVHfPOw3Ry1QIuLQKD+67YA== + + "@swc/core-linux-x64-musl@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.5.0.tgz#73edc03943b2a7a06b14cfd4d195d6c0f953ef70" + integrity sha512-I/V8aWBmfDWwjtM1bS8ASG+6PcO/pVFYyPP5g2ok46Vz1o1MnAUd18mHnWX43nqVJokaW+BD/G4ZMZ+gXRl4zQ== + + "@swc/core-win32-arm64-msvc@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.5.0.tgz#cd07c068c1a06ad66beb69635481adde2845c396" + integrity sha512-nN685BvI7iM58xabrSOSQHUvIY10pcXh5H9DmS8LeYqG6Dkq7QZ8AwYqqonOitIS5C35MUfhSMLpOTzKoLdUqA== + + "@swc/core-win32-ia32-msvc@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.5.0.tgz#363fba59da64ccc3576f0525070e26966667b388" + integrity sha512-3YjltmEHljI+TvuDOC4lspUzjBUoB3X5BhftRBprSTJx/czuMl0vdoZKs2Snzb5Eqqesp0Rl8q+iQ1E1oJ6dEA== + + "@swc/core-win32-x64-msvc@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.5.0.tgz#6183c163076da0da6ce994898bcbd4630dbe7514" + integrity sha512-ZairtCwJsaxnUH85DcYCyGpNb9bUoIm9QXYW+VaEoXwbcB95dTIiJwN0aRxPT8B0B2MNw/CXLqjoPo6sDwz5iw== + + "@swc/core@^1.3.82": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.5.0.tgz#189a7770b0d95aeff8ca56b8763705cc27bae90f" + integrity sha512-fjADAC5gOOX54Rpcr1lF9DHLD+nPD5H/zXLtEgK2Ez3esmogT+LfHzCZtUxqetjvaMChKhQ0Pp0ZB6Hpz/tCbw== + dependencies: + "@swc/counter" "^0.1.2" + "@swc/types" "^0.1.5" + optionalDependencies: + "@swc/core-darwin-arm64" "1.5.0" + "@swc/core-darwin-x64" "1.5.0" + "@swc/core-linux-arm-gnueabihf" "1.5.0" + "@swc/core-linux-arm64-gnu" "1.5.0" + "@swc/core-linux-arm64-musl" "1.5.0" + "@swc/core-linux-x64-gnu" "1.5.0" + "@swc/core-linux-x64-musl" "1.5.0" + "@swc/core-win32-arm64-msvc" "1.5.0" + "@swc/core-win32-ia32-msvc" "1.5.0" + "@swc/core-win32-x64-msvc" "1.5.0" + + "@swc/counter@^0.1.2", "@swc/counter@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" + integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== + + "@swc/types@^0.1.5": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.6.tgz#2f13f748995b247d146de2784d3eb7195410faba" + integrity sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg== + dependencies: + "@swc/counter" "^0.1.3" + + "@testing-library/dom@^9.3.1": + version "9.3.4" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-9.3.4.tgz#50696ec28376926fec0a1bf87d9dbac5e27f60ce" + integrity sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^5.0.1" + aria-query "5.1.3" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.5.0" + pretty-format "^27.0.2" + + "@testing-library/jest-dom@^6.1.3": + version "6.4.2" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.4.2.tgz#38949f6b63722900e2d75ba3c6d9bf8cffb3300e" + integrity sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw== + dependencies: + "@adobe/css-tools" "^4.3.2" + "@babel/runtime" "^7.9.2" + aria-query "^5.0.0" + chalk "^3.0.0" + css.escape "^1.5.1" + dom-accessibility-api "^0.6.3" + lodash "^4.17.15" + redent "^3.0.0" + + "@testing-library/user-event@14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.3.0.tgz#0a6750b94b40e4739706d41e8efc2ccf64d2aad9" + integrity sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA== + + "@types/aria-query@^5.0.1": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.4.tgz#1a31c3d378850d2778dabb6374d036dcba4ba708" + integrity sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw== + + "@types/babel__core@^7.0.0", "@types/babel__core@^7.18.0": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + + "@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + + "@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + + "@types/babel__traverse@*", "@types/babel__traverse@^7.18.0": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd" + integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== + dependencies: + "@babel/types" "^7.20.7" + + "@types/body-parser@*": + version "1.19.5" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + dependencies: + "@types/connect" "*" + "@types/node" "*" + + "@types/chai@^4": + version "4.3.14" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.14.tgz#ae3055ea2be43c91c9fd700a36d67820026d96e6" + integrity sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w== + + "@types/connect@*": + version "3.4.38" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== + dependencies: + "@types/node" "*" + + "@types/cross-spawn@^6.0.2": + version "6.0.6" + resolved "https://registry.yarnpkg.com/@types/cross-spawn/-/cross-spawn-6.0.6.tgz#0163d0b79a6f85409e0decb8dcca17147f81fd22" + integrity sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA== + dependencies: + "@types/node" "*" + + "@types/detect-port@^1.3.0": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/detect-port/-/detect-port-1.3.5.tgz#deecde143245989dee0e82115f3caba5ee0ea747" + integrity sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA== + + "@types/doctrine@^0.0.3": + version "0.0.3" + resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.3.tgz#e892d293c92c9c1d3f9af72c15a554fbc7e0895a" + integrity sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA== + + "@types/doctrine@^0.0.9": + version "0.0.9" + resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.9.tgz#d86a5f452a15e3e3113b99e39616a9baa0f9863f" + integrity sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA== + + "@types/ejs@^3.1.1": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.5.tgz#49d738257cc73bafe45c13cb8ff240683b4d5117" + integrity sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg== + + "@types/emscripten@^1.39.6": + version "1.39.10" + resolved "https://registry.yarnpkg.com/@types/emscripten/-/emscripten-1.39.10.tgz#da6e58a6171b46a41d3694f812d845d515c77e18" + integrity sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw== + + "@types/escodegen@^0.0.6": + version "0.0.6" + resolved "https://registry.yarnpkg.com/@types/escodegen/-/escodegen-0.0.6.tgz#5230a9ce796e042cda6f086dbf19f22ea330659c" + integrity sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig== + + "@types/eslint-scope@^3.7.3": + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + + "@types/eslint@*": + version "8.56.10" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.10.tgz#eb2370a73bf04a901eeba8f22595c7ee0f7eb58d" + integrity sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + + "@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + + "@types/estree@^0.0.51": + version "0.0.51" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" + integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + + "@types/express-serve-static-core@^4.17.33": + version "4.19.0" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz#3ae8ab3767d98d0b682cda063c3339e1e86ccfaa" + integrity sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + + "@types/express@^4.7.0": + version "4.17.21" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + + "@types/find-cache-dir@^3.2.1": + version "3.2.1" + resolved "https://registry.yarnpkg.com/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz#7b959a4b9643a1e6a1a5fe49032693cc36773501" + integrity sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw== + + "@types/graceful-fs@^4.1.3": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + dependencies: + "@types/node" "*" + + "@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + + "@types/http-errors@*": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + + "@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== + dependencies: + "@types/istanbul-lib-coverage" "*" + + "@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" + + "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + + "@types/lodash@^4.14.167": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.0.tgz#d774355e41f372d5350a4d0714abb48194a489c3" + integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== + + "@types/mdx@^2.0.0": + version "2.0.13" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.13.tgz#68f6877043d377092890ff5b298152b0a21671bd" + integrity sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw== + + "@types/mime-types@^2.1.0": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@types/mime-types/-/mime-types-2.1.4.tgz#93a1933e24fed4fb9e4adc5963a63efcbb3317a2" + integrity sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w== + + "@types/mime@^1": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== + + "@types/minimist@^1.2.0": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== + + "@types/node-fetch@^2.6.4": + version "2.6.11" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24" + integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g== + dependencies: + "@types/node" "*" + form-data "^4.0.0" + + "@types/node@*": + version "20.12.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384" + integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== + dependencies: + undici-types "~5.26.4" + + "@types/node@^12.7.1": + version "12.20.55" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + + "@types/node@^18.0.0": + version "18.19.31" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.31.tgz#b7d4a00f7cb826b60a543cebdbda5d189aaecdcd" + integrity sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA== + dependencies: + undici-types "~5.26.4" + + "@types/normalize-package-data@^2.4.0": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + + "@types/npmlog@^4.1.2": + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.6.tgz#792341665000209ee76997df8a16300fda6d77cb" + integrity sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ== + dependencies: + "@types/node" "*" + + "@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + + "@types/pretty-hrtime@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#ee1bd8c9f7a01b3445786aad0ef23aba5f511a44" + integrity sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA== + + "@types/prop-types@*": + version "15.7.12" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" + integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== + + "@types/qs@*", "@types/qs@^6.9.5": + version "6.9.15" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" + integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== + + "@types/range-parser@*": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== + + "@types/react-dom@^18.0.10": + version "18.2.25" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.25.tgz#2946a30081f53e7c8d585eb138277245caedc521" + integrity sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA== + dependencies: + "@types/react" "*" + + "@types/react@*", "@types/react@>=16", "@types/react@^18.0.26": + version "18.2.79" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.79.tgz#c40efb4f255711f554d47b449f796d1c7756d865" + integrity sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + + "@types/resolve@^1.20.2": + version "1.20.6" + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.6.tgz#e6e60dad29c2c8c206c026e6dd8d6d1bdda850b8" + integrity sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ== + + "@types/semver@^7.3.4", "@types/semver@^7.5.0": + version "7.5.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== + + "@types/send@*": + version "0.17.4" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + + "@types/serve-static@*": + version "1.15.7" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714" + integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== + dependencies: + "@types/http-errors" "*" + "@types/node" "*" + "@types/send" "*" + + "@types/unist@^2.0.0": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + + "@types/uuid@^9.0.1": + version "9.0.8" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba" + integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA== + + "@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + + "@types/yargs@^16.0.0": + version "16.0.9" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.9.tgz#ba506215e45f7707e6cbcaf386981155b7ab956e" + integrity sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA== + dependencies: + "@types/yargs-parser" "*" + + "@types/yargs@^17.0.8": + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + dependencies: + "@types/yargs-parser" "*" + + "@vitest/expect@^0.34.2": + version "0.34.7" + resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-0.34.7.tgz#b07fb9ebfb8fb347f06a9cb33843ee2e5ba7d8a9" + integrity sha512-G9iEtwrD6ZQ4MVHZufif9Iqz3eLtuwBBNx971fNAGPaugM7ftAWjQN+ob2zWhtzURp8RK3zGXOxVb01mFo3zAQ== + dependencies: + "@vitest/spy" "0.34.7" + "@vitest/utils" "0.34.7" + chai "^4.3.10" + + "@vitest/spy@0.34.7", "@vitest/spy@^0.34.1": + version "0.34.7" + resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-0.34.7.tgz#c414ef3f48a7a0d36f1f59718cd2742d9a0219dd" + integrity sha512-NMMSzOY2d8L0mcOt4XcliDOS1ISyGlAXuQtERWVOoVHnKwmG+kKhinAiGw3dTtMQWybfa89FG8Ucg9tiC/FhTQ== + dependencies: + tinyspy "^2.1.1" + + "@vitest/utils@0.34.7", "@vitest/utils@^0.34.6": + version "0.34.7" + resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-0.34.7.tgz#46d0d27cd0f6ca1894257d4e141c5c48d7f50295" + integrity sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg== + dependencies: + diff-sequences "^29.4.3" + loupe "^2.3.6" + pretty-format "^29.5.0" + + "@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" + integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + + "@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + + "@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + + "@webassemblyjs/helper-buffer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6" + integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== + + "@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@xtuc/long" "4.2.2" + + "@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + + "@webassemblyjs/helper-wasm-section@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf" + integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.12.1" + + "@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + + "@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + dependencies: + "@xtuc/long" "4.2.2" + + "@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + + "@webassemblyjs/wasm-edit@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b" + integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-opt" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + "@webassemblyjs/wast-printer" "1.12.1" + + "@webassemblyjs/wasm-gen@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547" + integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + + "@webassemblyjs/wasm-opt@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5" + integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + + "@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937" + integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + + "@webassemblyjs/wast-printer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac" + integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@xtuc/long" "4.2.2" + + "@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + + "@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + + "@yarnpkg/esbuild-plugin-pnp@^3.0.0-rc.10": + version "3.0.0-rc.15" + resolved "https://registry.yarnpkg.com/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz#4e40e7d2eb28825c9a35ab9d04c363931d7c0e67" + integrity sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA== + dependencies: + tslib "^2.4.0" + + "@yarnpkg/fslib@2.10.3": + version "2.10.3" + resolved "https://registry.yarnpkg.com/@yarnpkg/fslib/-/fslib-2.10.3.tgz#a8c9893df5d183cf6362680b9f1c6d7504dd5717" + integrity sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A== + dependencies: + "@yarnpkg/libzip" "^2.3.0" + tslib "^1.13.0" + + "@yarnpkg/libzip@2.3.0", "@yarnpkg/libzip@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/libzip/-/libzip-2.3.0.tgz#fe1e762e47669f6e2c960fc118436608d834e3be" + integrity sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg== + dependencies: + "@types/emscripten" "^1.39.6" + tslib "^1.13.0" + + accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + + acorn-import-assertions@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== + + acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + + acorn-walk@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + + acorn@^7.4.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + + acorn@^8.11.3, acorn@^8.7.1, acorn@^8.8.2: + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + + address@^1.0.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + + agent-base@5: + version "5.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" + integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== + + aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + + ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + + ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + + ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + + ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + + ajv@^8.0.0, ajv@^8.9.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + + ansi-colors@^4.1.1, ansi-colors@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + + ansi-html-community@0.0.8, ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + + ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + + ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + + ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + + ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + + ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + + ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + + any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + + anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + + app-root-dir@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" + integrity sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g== + + "aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + + are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + + arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + + argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + + aria-hidden@^1.1.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.4.tgz#b78e383fdbc04d05762c78b4a25a501e736c4522" + integrity sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A== + dependencies: + tslib "^2.0.0" + + aria-query@5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + + aria-query@^5.0.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== + dependencies: + dequal "^2.0.3" + + array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + + array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + + array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + + array.prototype.flat@^1.2.3: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + + arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + + arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + + assert@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" + integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== + dependencies: + call-bind "^1.0.2" + is-nan "^1.3.2" + object-is "^1.1.5" + object.assign "^4.1.4" + util "^0.12.5" + + assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + + ast-types@^0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.16.1.tgz#7a9da1617c9081bc121faafe91711b4c8bb81da2" + integrity sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg== + dependencies: + tslib "^2.0.1" + + async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + + async@^3.2.3: + version "3.2.5" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" + integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + + asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + + autoprefixer@^10.4.17: + version "10.4.19" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f" + integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew== + dependencies: + browserslist "^4.23.0" + caniuse-lite "^1.0.30001599" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + + available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + + babel-core@^7.0.0-bridge.0: + version "7.0.0-bridge.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" + integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== + + babel-loader@^9.0.0, babel-loader@^9.1.0: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== + dependencies: + find-cache-dir "^4.0.0" + schema-utils "^4.0.0" + + babel-plugin-add-react-displayname@^0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5" + integrity sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw== + + babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + + babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.11" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.2" + semver "^6.3.1" + + babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" + integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.1" + core-js-compat "^3.36.1" + + babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + + balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + + base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + + better-opn@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-3.0.2.tgz#f96f35deaaf8f34144a4102651babcf00d1d8817" + integrity sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ== + dependencies: + open "^8.0.4" + + better-path-resolve@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" + integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== + dependencies: + is-windows "^1.0.0" + + big-integer@^1.6.44: + version "1.6.52" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== + + big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + + binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + + bl@^4.0.3, bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + + body-parser@1.20.2: + version "1.20.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + + boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + + bplist-parser@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + + brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + + brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + + braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + + breakword@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.6.tgz#242506e7b871b7fad1bce8dc05cb0f2a129c12bd" + integrity sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw== + dependencies: + wcwidth "^1.0.1" + + browser-assert@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/browser-assert/-/browser-assert-1.2.1.tgz#9aaa5a2a8c74685c2ae05bfe46efd606f068c200" + integrity sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ== + + browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + integrity sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ== + dependencies: + pako "~0.2.0" + + browserslist@^4.21.10, browserslist@^4.22.2, browserslist@^4.23.0: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== + dependencies: + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" + + bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + + buffer-crc32@~0.2.3: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== + + buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + + buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + + bundle-require@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/bundle-require/-/bundle-require-4.0.3.tgz#916115a75d2d038a6fd0e08669887aba30128561" + integrity sha512-2iscZ3fcthP2vka4Y7j277YJevwmsby/FpFDwjgw34Nl7dtCpt7zz/4TexmHMzY6KZEih7En9ImlbbgUNNQGtA== + dependencies: + load-tsconfig "^0.2.3" + + bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + + bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + + cac@^6.7.12: + version "6.7.14" + resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== + + call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + + callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + + camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + + camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + + camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + + camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + + caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599: + version "1.0.30001612" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz#d34248b4ec1f117b70b24ad9ee04c90e0b8a14ae" + integrity sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g== + + case-sensitive-paths-webpack-plugin@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4" + integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== + + chai@^4.3.10, chai@^4.3.7: + version "4.4.1" + resolved "https://registry.yarnpkg.com/chai/-/chai-4.4.1.tgz#3603fa6eba35425b0f2ac91a009fe924106e50d1" + integrity sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.3" + deep-eql "^4.1.3" + get-func-name "^2.0.2" + loupe "^2.3.6" + pathval "^1.1.1" + type-detect "^4.0.8" + + chalk@^2.1.0, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + + chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + + chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + + chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + + check-error@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" + integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== + dependencies: + get-func-name "^2.0.2" + + chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + + chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + + chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + + chromatic@^10.6.1: + version "10.9.6" + resolved "https://registry.yarnpkg.com/chromatic/-/chromatic-10.9.6.tgz#0dd9c82fbbf1f5a7aa73b96b5b7e066fe5408be3" + integrity sha512-1MoT+/U+vQwEiq2GuehPyStbqhxqHmM1B9pdpVU1dKh26userQg1FyOFYifkTgy+9reo2w2p7sAbc0JRd2kzlA== + + chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + + ci-info@^3.2.0, ci-info@^3.7.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + + citty@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/citty/-/citty-0.1.6.tgz#0f7904da1ed4625e1a9ea7e0fa780981aab7c5e4" + integrity sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ== + dependencies: + consola "^3.2.3" + + cjs-module-lexer@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== + + clean-css@^5.2.2: + version "5.3.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== + dependencies: + source-map "~0.6.0" + + clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + + cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + + cli-spinners@^2.5.0: + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + + cli-table3@^0.6.1: + version "0.6.4" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.4.tgz#d1c536b8a3f2e7bec58f67ac9e5769b1b30088b0" + integrity sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + + cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + + cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + + clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + + clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + + clsx@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999" + integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== + + color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + + color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + + color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + + color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + + color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + + colorette@^2.0.10: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + + combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + + commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + + commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + + commander@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + + commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + + common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + + commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + + compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + + compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + + concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + + concat-stream@^1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + + concurrently@^8.2.2: + version "8.2.2" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-8.2.2.tgz#353141985c198cfa5e4a3ef90082c336b5851784" + integrity sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg== + dependencies: + chalk "^4.1.2" + date-fns "^2.30.0" + lodash "^4.17.21" + rxjs "^7.8.1" + shell-quote "^1.8.1" + spawn-command "0.0.2" + supports-color "^8.1.1" + tree-kill "^1.2.2" + yargs "^17.7.2" + + consola@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/consola/-/consola-3.2.3.tgz#0741857aa88cfa0d6fd53f1cff0375136e98502f" + integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ== + + console-control-strings@^1.0.0, console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + + constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== + + content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + + content-type@~1.0.4, content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + + convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + + cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + + cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + + core-js-compat@^3.31.0, core-js-compat@^3.36.1: + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.0.tgz#d9570e544163779bb4dff1031c7972f44918dc73" + integrity sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA== + dependencies: + browserslist "^4.23.0" + + core-js-pure@^3.23.3: + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.37.0.tgz#ce99fb4a7cec023fdbbe5b5bd1f06bbcba83316e" + integrity sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ== + + core-js@^3.8.2: + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.37.0.tgz#d8dde58e91d156b2547c19d8a4efd5c7f6c426bb" + integrity sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug== + + core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + + cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + + cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + + cross-spawn@^7.0.0, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + + crypto-random-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + + css-loader@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" + integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== + dependencies: + camelcase "^5.3.1" + cssesc "^3.0.0" + icss-utils "^4.1.1" + loader-utils "^1.2.3" + normalize-path "^3.0.0" + postcss "^7.0.32" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.2.0" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.1.0" + schema-utils "^2.7.0" + semver "^6.3.0" + + css-loader@^6.7.1, css-loader@^6.7.3: + version "6.11.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.11.0.tgz#33bae3bf6363d0a7c2cf9031c96c744ff54d85ba" + integrity sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g== + dependencies: + icss-utils "^5.1.0" + postcss "^8.4.33" + postcss-modules-extract-imports "^3.1.0" + postcss-modules-local-by-default "^4.0.5" + postcss-modules-scope "^3.2.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.5.4" + + css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + + css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + + css.escape@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== + + cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + + csstype@^3.0.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + + csv-generate@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" + integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== + + csv-parse@^4.16.3: + version "4.16.3" + resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" + integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== + + csv-stringify@^5.6.5: + version "5.6.5" + resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" + integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== + + csv@^5.5.3: + version "5.5.3" + resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" + integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== + dependencies: + csv-generate "^3.4.3" + csv-parse "^4.16.3" + csv-stringify "^5.6.5" + stream-transform "^2.1.3" + + data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + + data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + + data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + + date-fns@^2.30.0: + version "2.30.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== + dependencies: + "@babel/runtime" "^7.21.0" + + debug@2.6.9, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + + debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + + decamelize-keys@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + + decamelize@^1.1.0, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + + dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + + deep-eql@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" + integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== + dependencies: + type-detect "^4.0.0" + + deep-equal@^2.0.5: + version "2.2.3" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.3.tgz#af89dafb23a396c7da3e862abc0be27cf51d56e1" + integrity sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.5" + es-get-iterator "^1.1.3" + get-intrinsic "^1.2.2" + is-arguments "^1.1.1" + is-array-buffer "^3.0.2" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.1" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.13" + + deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + + default-browser-id@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" + integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== + dependencies: + bplist-parser "^0.2.0" + untildify "^4.0.0" + + defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + + define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + + define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + + define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + + defu@^6.1.4: + version "6.1.4" + resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479" + integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg== + + del@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" + integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== + dependencies: + globby "^11.0.1" + graceful-fs "^4.2.4" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.2" + p-map "^4.0.0" + rimraf "^3.0.2" + slash "^3.0.0" + + delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + + delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + + depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + + dequal@^2.0.2, dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + + destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + + detect-indent@^6.0.0, detect-indent@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + + detect-node-es@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" + integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== + + detect-package-manager@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/detect-package-manager/-/detect-package-manager-2.0.1.tgz#6b182e3ae5e1826752bfef1de9a7b828cffa50d8" + integrity sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A== + dependencies: + execa "^5.1.1" + + detect-port@^1.3.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" + integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== + dependencies: + address "^1.0.1" + debug "4" + + didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + + diff-sequences@^29.4.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== + + dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + + dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + + doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + + dom-accessibility-api@^0.5.9: + version "0.5.16" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" + integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== + + dom-accessibility-api@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz#993e925cc1d73f2c662e7d75dd5a5445259a8fd8" + integrity sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w== + + dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + + dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + + domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + + domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + + domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + + dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + + dotenv-expand@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" + integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A== + + dotenv@^16.0.0: + version "16.4.5" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + + duplexify@^3.5.0, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + + eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + + ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + + ejs@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" + integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== + dependencies: + jake "^10.8.5" + + electron-to-chromium@^1.4.668: + version "1.4.747" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.747.tgz#e37fa5b7b7e4c22607c5f59b5cf78f947266e77d" + integrity sha512-+FnSWZIAvFHbsNVmUxhEqWiaOiPMcfum1GQzlWCg/wLigVtshOsjXHyEFfmt6cFK6+HkS3QOJBv6/3OPumbBfw== + + emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + + emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + + emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + + encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + + end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + + endent@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/endent/-/endent-2.1.0.tgz#5aaba698fb569e5e18e69e1ff7a28ff35373cd88" + integrity sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w== + dependencies: + dedent "^0.7.0" + fast-json-parse "^1.0.3" + objectorarray "^1.0.5" + + enhanced-resolve@^5.16.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787" + integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + + enquirer@^2.3.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.4.1.tgz#93334b3fbd74fc7097b224ab4a8fb7e40bf4ae56" + integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== + dependencies: + ansi-colors "^4.1.1" + strip-ansi "^6.0.1" + + entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + + envinfo@^7.7.3: + version "7.12.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.12.0.tgz#b56723b39c2053d67ea5714f026d05d4f5cc7acd" + integrity sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg== + + error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + + error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + dependencies: + stackframe "^1.3.4" + + es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: + version "1.23.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.1" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.6" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + + es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + + es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + + es-get-iterator@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + + es-module-lexer@^1.2.1, es-module-lexer@^1.4.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.0.tgz#4878fee3789ad99e065f975fdd3c645529ff0236" + integrity sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw== + + es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + + es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + + es-shim-unscopables@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + dependencies: + hasown "^2.0.0" + + es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + + esbuild-plugin-alias@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz#45a86cb941e20e7c2bc68a2bea53562172494fcb" + integrity sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ== + + esbuild-register@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/esbuild-register/-/esbuild-register-3.5.0.tgz#449613fb29ab94325c722f560f800dd946dc8ea8" + integrity sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A== + dependencies: + debug "^4.3.4" + + esbuild@^0.18.0: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== + optionalDependencies: + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" + + esbuild@^0.19.2: + version "0.19.12" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.12.tgz#dc82ee5dc79e82f5a5c3b4323a2a641827db3e04" + integrity sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg== + optionalDependencies: + "@esbuild/aix-ppc64" "0.19.12" + "@esbuild/android-arm" "0.19.12" + "@esbuild/android-arm64" "0.19.12" + "@esbuild/android-x64" "0.19.12" + "@esbuild/darwin-arm64" "0.19.12" + "@esbuild/darwin-x64" "0.19.12" + "@esbuild/freebsd-arm64" "0.19.12" + "@esbuild/freebsd-x64" "0.19.12" + "@esbuild/linux-arm" "0.19.12" + "@esbuild/linux-arm64" "0.19.12" + "@esbuild/linux-ia32" "0.19.12" + "@esbuild/linux-loong64" "0.19.12" + "@esbuild/linux-mips64el" "0.19.12" + "@esbuild/linux-ppc64" "0.19.12" + "@esbuild/linux-riscv64" "0.19.12" + "@esbuild/linux-s390x" "0.19.12" + "@esbuild/linux-x64" "0.19.12" + "@esbuild/netbsd-x64" "0.19.12" + "@esbuild/openbsd-x64" "0.19.12" + "@esbuild/sunos-x64" "0.19.12" + "@esbuild/win32-arm64" "0.19.12" + "@esbuild/win32-ia32" "0.19.12" + "@esbuild/win32-x64" "0.19.12" + + escalade@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + + escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + + escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + + escodegen@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== + dependencies: + esprima "^4.0.1" + estraverse "^5.2.0" + esutils "^2.0.2" + optionalDependencies: + source-map "~0.6.1" + + eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + + esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + + esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + + estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + + estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + + esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + + etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + + events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + + execa@^5.0.0, execa@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + + execa@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" + integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^8.0.1" + human-signals "^5.0.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^4.1.0" + strip-final-newline "^3.0.0" + + express@^4.17.3: + version "4.19.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.2" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.6.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + + extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + + extendable-error@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" + integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== + + external-editor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + + extract-zip@^1.6.6: + version "1.7.0" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" + integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== + dependencies: + concat-stream "^1.6.2" + debug "^2.6.9" + mkdirp "^0.5.4" + yauzl "^2.10.0" + + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + + fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + + fast-json-parse@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d" + integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw== + + fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + + fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + + fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + + fd-slicer@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" + integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== + dependencies: + pend "~1.2.0" + + fetch-retry@^5.0.2: + version "5.0.6" + resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.6.tgz#17d0bc90423405b7a88b74355bf364acd2a7fa56" + integrity sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ== + + file-system-cache@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-2.3.0.tgz#201feaf4c8cd97b9d0d608e96861bb6005f46fe6" + integrity sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ== + dependencies: + fs-extra "11.1.1" + ramda "0.29.0" + + filelist@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + + fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + + finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + + find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + + find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + + find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== + dependencies: + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" + + find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + + find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + + find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + + find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + + find-yarn-workspace-root2@1.2.16: + version "1.2.16" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" + integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + dependencies: + micromatch "^4.0.2" + pkg-dir "^4.2.0" + + flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + + flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + + flow-parser@0.*: + version "0.235.1" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.235.1.tgz#469c70adfa3c156f3a1792e7b6d7017f01f45f1d" + integrity sha512-s04193L4JE+ntEcQXbD6jxRRlyj9QXcgEl2W6xSjH4l9x4b0eHoCHfbYHjqf9LdZFUiM5LhgpiqsvLj/AyOyYQ== + + for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + + foreground-child@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + + fork-ts-checker-webpack-plugin@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz#dae45dfe7298aa5d553e2580096ced79b6179504" + integrity sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg== + dependencies: + "@babel/code-frame" "^7.16.7" + chalk "^4.1.2" + chokidar "^3.5.3" + cosmiconfig "^7.0.1" + deepmerge "^4.2.2" + fs-extra "^10.0.0" + memfs "^3.4.1" + minimatch "^3.0.4" + node-abort-controller "^3.0.1" + schema-utils "^3.1.1" + semver "^7.3.5" + tapable "^2.2.1" + + form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + + forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + + fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + + fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + + fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + + fs-extra@11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + + fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + + fs-extra@^11.1.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + + fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + + fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + + fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + + fs-monkey@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788" + integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew== + + fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + + fsevents@^2.3.2, fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + + function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + + function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + + functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + + gauge@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" + integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + object-assign "^4.1.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + + gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + + get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + + get-func-name@^2.0.1, get-func-name@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" + integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== + + get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + + get-nonce@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" + integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== + + get-npm-tarball-url@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz#cbd6bb25884622bc3191c761466c93ac83343213" + integrity sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA== + + get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + + get-port@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" + integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== + + get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + + get-stream@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" + integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== + + get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + + giget@^1.0.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/giget/-/giget-1.2.3.tgz#ef6845d1140e89adad595f7f3bb60aa31c672cb6" + integrity sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA== + dependencies: + citty "^0.1.6" + consola "^3.2.3" + defu "^6.1.4" + node-fetch-native "^1.6.3" + nypm "^0.3.8" + ohash "^1.1.3" + pathe "^1.1.2" + tar "^6.2.0" + + github-slugger@^1.0.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" + integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== + + glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + + glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + + glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + + glob@^10.0.0, glob@^10.3.10: + version "10.3.12" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b" + integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.3.6" + minimatch "^9.0.1" + minipass "^7.0.4" + path-scurry "^1.10.2" + + glob@^7.1.3, glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + + globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + + globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + + globby@^11.0.0, globby@^11.0.1, globby@^11.0.2, globby@^11.0.3: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + + gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + + graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + + grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + + gunzip-maybe@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz#b913564ae3be0eda6f3de36464837a9cd94b98ac" + integrity sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw== + dependencies: + browserify-zlib "^0.1.4" + is-deflate "^1.0.0" + is-gzip "^1.0.0" + peek-stream "^1.1.0" + pumpify "^1.3.3" + through2 "^2.0.3" + + handlebars@^4.7.7: + version "4.7.8" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9" + integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.2" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + + hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + + has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + + has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + + has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + + has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + + has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + + has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + + has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + + has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + + hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + + he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + + hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + + html-entities@^2.1.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f" + integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + + html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + dependencies: + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" + + html-tags@^3.1.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== + + html-webpack-plugin@^5.5.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz#50a8fa6709245608cb00e811eacecb8e0d7b7ea0" + integrity sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw== + dependencies: + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" + + htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + + http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + + https-proxy-agent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" + integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== + dependencies: + agent-base "5" + debug "4" + + human-id@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" + integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== + + human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + + human-signals@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" + integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== + + husky@^8.0.2: + version "8.0.3" + resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184" + integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg== + + iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + + icss-utils@^4.0.0, icss-utils@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + dependencies: + postcss "^7.0.14" + + icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + + ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + + ignore@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + + import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + + imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + + indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + + inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + + inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + + internal-slot@^1.0.4, internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + + invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + + ip@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105" + integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== + + ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + + is-absolute-url@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" + integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + + is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + + is-array-buffer@^3.0.2, is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + + is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + + is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + + is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + + is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + + is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + + is-core-module@^2.13.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + dependencies: + hasown "^2.0.0" + + is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + + is-date-object@^1.0.1, is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + + is-deflate@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-deflate/-/is-deflate-1.0.0.tgz#c862901c3c161fb09dac7cdc7e784f80e98f2f14" + integrity sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ== + + is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + + is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + + is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + + is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + + is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + + is-gzip@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" + integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== + + is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + + is-map@^2.0.2, is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + + is-nan@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + + is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + + is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + + is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + + is-path-cwd@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + + is-path-inside@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + + is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + + is-plain-object@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + + is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + + is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + + is-set@^2.0.2, is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + + is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + + is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + + is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + + is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + + is-subdir@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" + integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== + dependencies: + better-path-resolve "1.0.0" + + is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + + is-typed-array@^1.1.13, is-typed-array@^1.1.3: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + + is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + + is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + + is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + + is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + + is-windows@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + + is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + + isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + + isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + + isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + + isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + + istanbul-lib-coverage@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + + istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + + jackspeak@^2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" + integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + + jake@^10.8.5: + version "10.8.7" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" + integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.4" + minimatch "^3.1.2" + + jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== + dependencies: + "@jest/types" "^29.6.3" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + + jest-mock@^27.0.6: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" + integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== + dependencies: + "@jest/types" "^27.5.1" + "@types/node" "*" + + jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== + + jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + + jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + + jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== + dependencies: + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + + jiti@^1.21.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== + + joycon@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" + integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== + + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + + js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + + jscodeshift@^0.15.1: + version "0.15.2" + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.15.2.tgz#145563860360b4819a558c75c545f39683e5a0be" + integrity sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA== + dependencies: + "@babel/core" "^7.23.0" + "@babel/parser" "^7.23.0" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.23.0" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" + "@babel/plugin-transform-optional-chaining" "^7.23.0" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/preset-flow" "^7.22.15" + "@babel/preset-typescript" "^7.23.0" + "@babel/register" "^7.22.15" + babel-core "^7.0.0-bridge.0" + chalk "^4.1.2" + flow-parser "0.*" + graceful-fs "^4.2.4" + micromatch "^4.0.4" + neo-async "^2.5.0" + node-dir "^0.1.17" + recast "^0.23.3" + temp "^0.8.4" + write-file-atomic "^2.3.0" + + jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + + jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + + json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + + json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + + json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + + json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + + json5@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + + json5@^2.1.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + + jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + + jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + + keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + + kind-of@^6.0.2, kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + + kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + + kleur@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + + klona@^2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== + + lazy-universal-dotenv@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz#0b220c264e89a042a37181a4928cdd298af73422" + integrity sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg== + dependencies: + app-root-dir "^1.0.2" + dotenv "^16.0.0" + dotenv-expand "^10.0.0" + + leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + + lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + + lilconfig@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.1.tgz#9d8a246fa753106cfc205fd2d77042faca56e5e3" + integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ== + + lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + + load-tsconfig@^0.2.3: + version "0.2.5" + resolved "https://registry.yarnpkg.com/load-tsconfig/-/load-tsconfig-0.2.5.tgz#453b8cd8961bfb912dea77eb6c168fe8cca3d3a1" + integrity sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg== + + load-yaml-file@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" + integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.13.0" + pify "^4.0.1" + strip-bom "^3.0.0" + + loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + + loader-utils@^1.2.3: + version "1.4.2" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + + loader-utils@^2.0.0, loader-utils@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + + locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + + locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + + locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + + locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + + lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + + lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== + + lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + + lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + + log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + + loupe@^2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.7.tgz#6e69b7d4db7d3ab436328013d37d1c8c3540c697" + integrity sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== + dependencies: + get-func-name "^2.0.1" + + lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + + lru-cache@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== + + lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + + lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + + lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + + lz-string@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" + integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== + + magic-string@^0.30.5: + version "0.30.10" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e" + integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + + make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + + make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + + makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + + map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + + map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + + map-or-similar@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" + integrity sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg== + + markdown-to-jsx@^7.1.8: + version "7.4.7" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.4.7.tgz#740ee7ec933865ef5cc683a0992797685a75e2ee" + integrity sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg== + + mdast-util-definitions@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" + integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== + dependencies: + unist-util-visit "^2.0.0" + + mdast-util-to-string@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" + integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== + + media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + + memfs@^3.4.1, memfs@^3.4.12: + version "3.6.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" + integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== + dependencies: + fs-monkey "^1.0.4" + + memoizerific@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a" + integrity sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog== + dependencies: + map-or-similar "^1.5.0" + + meow@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" + integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "^4.0.2" + normalize-package-data "^2.5.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.13.1" + yargs-parser "^18.1.3" + + merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + + merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + + merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + + methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + + micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + + mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + + mime-types@^2.1.12, mime-types@^2.1.25, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + + mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + + mime@^2.0.3: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + + mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + + mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + + min-indent@^1.0.0, min-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + + minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + + minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + + minimatch@^9.0.1: + version "9.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" + integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== + dependencies: + brace-expansion "^2.0.1" + + minimist-options@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + + minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + + minipass@^3.0.0: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + + minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + + "minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" + integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== + + minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + + mixme@^0.5.1: + version "0.5.10" + resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.10.tgz#d653b2984b75d9018828f1ea333e51717ead5f51" + integrity sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q== + + mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + + mkdirp@^0.5.4: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + + mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + + ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + + ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + + ms@2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + + mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + + nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + + negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + + neo-async@^2.5.0, neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + + no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + + node-abort-controller@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" + integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== + + node-dir@^0.1.17: + version "0.1.17" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== + dependencies: + minimatch "^3.0.2" + + node-fetch-native@^1.6.3: + version "1.6.4" + resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" + integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== + + node-fetch@^2.0.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + + node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + + node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + + normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + + normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + + normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + + npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + + npm-run-path@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f" + integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== + dependencies: + path-key "^4.0.0" + + npmlog@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" + integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + dependencies: + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^3.0.0" + set-blocking "^2.0.0" + + nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + + nypm@^0.3.8: + version "0.3.8" + resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.8.tgz#a16b078b161be5885351e72cf0b97326973722bf" + integrity sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og== + dependencies: + citty "^0.1.6" + consola "^3.2.3" + execa "^8.0.1" + pathe "^1.1.2" + ufo "^1.4.0" + + object-assign@^4.0.1, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + + object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + + object-inspect@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + + object-is@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07" + integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + + object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + + object.assign@^4.1.4, object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + + objectorarray@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/objectorarray/-/objectorarray-1.0.5.tgz#2c05248bbefabd8f43ad13b41085951aac5e68a5" + integrity sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg== + + ohash@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.3.tgz#f12c3c50bfe7271ce3fd1097d42568122ccdcf07" + integrity sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw== + + on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + + on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + + once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + + onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + + onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + + open@^8.0.4, open@^8.4.0: + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + + ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + + os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + + outdent@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" + integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== + + p-filter@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" + integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== + dependencies: + p-map "^2.0.0" + + p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + + p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + + p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + + p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + + p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + + p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + + p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + + p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + + p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + + p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + + pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== + + param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + + parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + + parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + + parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + + pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + + path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + + path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + + path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + + path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + + path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + + path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + + path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + + path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + + path-scurry@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7" + integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + + path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + + path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + + pathe@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec" + integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== + + pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + + peek-stream@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" + integrity sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA== + dependencies: + buffer-from "^1.0.0" + duplexify "^3.5.0" + through2 "^2.0.3" + + pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== + + picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + + picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + + pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + + pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + + pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + + pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + + pkg-dir@^4.1.0, pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + + pkg-dir@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" + integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + dependencies: + find-up "^5.0.0" + + pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + + polished@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.3.1.tgz#5a00ae32715609f83d89f6f31d0f0261c6170548" + integrity sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA== + dependencies: + "@babel/runtime" "^7.17.8" + + possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + + postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + + postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + + postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== + dependencies: + lilconfig "^3.0.0" + yaml "^2.3.4" + + postcss-loader@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.3.0.tgz#2c4de9657cd4f07af5ab42bd60a673004da1b8cc" + integrity sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q== + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.4" + loader-utils "^2.0.0" + schema-utils "^3.0.0" + semver "^7.3.4" + + postcss-modules-extract-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + dependencies: + postcss "^7.0.5" + + postcss-modules-extract-imports@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002" + integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== + + postcss-modules-local-by-default@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" + integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== + dependencies: + icss-utils "^4.1.1" + postcss "^7.0.32" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + + postcss-modules-local-by-default@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz#f1b9bd757a8edf4d8556e8d0f4f894260e3df78f" + integrity sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + + postcss-modules-scope@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" + integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + + postcss-modules-scope@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz#a43d28289a169ce2c15c00c4e64c0858e43457d5" + integrity sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ== + dependencies: + postcss-selector-parser "^6.0.4" + + postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + dependencies: + icss-utils "^4.0.0" + postcss "^7.0.6" + + postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + + postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + + postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: + version "6.0.16" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" + integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + + postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + + postcss@^7.0.14, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + + postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.38: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.2.0" + + preferred-pm@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.1.3.tgz#4125ea5154603136c3b6444e5f5c94ecf90e4916" + integrity sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w== + dependencies: + find-up "^5.0.0" + find-yarn-workspace-root2 "1.2.16" + path-exists "^4.0.0" + which-pm "2.0.0" + + prettier@^2.7.1, prettier@^2.8.0: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + + pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + dependencies: + lodash "^4.17.20" + renderkid "^3.0.0" + + pretty-format@^27.0.2: + version "27.5.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + + pretty-format@^29.5.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== + dependencies: + "@jest/schemas" "^29.6.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + + pretty-hrtime@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + integrity sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A== + + process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + + process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + + progress@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + + prompts@^2.4.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + + prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + + proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + + proxy-from-env@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + + pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== + + pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + + pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + + pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + + punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + + punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + + puppeteer-core@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-2.1.1.tgz#e9b3fbc1237b4f66e25999832229e9db3e0b90ed" + integrity sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w== + dependencies: + "@types/mime-types" "^2.1.0" + debug "^4.1.0" + extract-zip "^1.6.6" + https-proxy-agent "^4.0.0" + mime "^2.0.3" + mime-types "^2.1.25" + progress "^2.0.1" + proxy-from-env "^1.0.0" + rimraf "^2.6.1" + ws "^6.1.0" + + qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + + qs@^6.10.0, qs@^6.11.2: + version "6.12.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.12.1.tgz#39422111ca7cbdb70425541cba20c7d7b216599a" + integrity sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ== + dependencies: + side-channel "^1.0.6" + + queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + + quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + + ramda@0.29.0: + version "0.29.0" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.29.0.tgz#fbbb67a740a754c8a4cbb41e2a6e0eb8507f55fb" + integrity sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA== + + randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + + range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + + raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + + react-colorful@^5.1.2: + version "5.6.1" + resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.6.1.tgz#7dc2aed2d7c72fac89694e834d179e32f3da563b" + integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== + + react-confetti@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/react-confetti/-/react-confetti-6.1.0.tgz#03dc4340d955acd10b174dbf301f374a06e29ce6" + integrity sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw== + dependencies: + tween-functions "^1.2.0" + + react-docgen-typescript@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz#4611055e569edc071204aadb20e1c93e1ab1659c" + integrity sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg== + + react-docgen@^7.0.0: + version "7.0.3" + resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-7.0.3.tgz#f811b785f07b1f2023cb899b6bcf9d522b21b95d" + integrity sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ== + dependencies: + "@babel/core" "^7.18.9" + "@babel/traverse" "^7.18.9" + "@babel/types" "^7.18.9" + "@types/babel__core" "^7.18.0" + "@types/babel__traverse" "^7.18.0" + "@types/doctrine" "^0.0.9" + "@types/resolve" "^1.20.2" + doctrine "^3.0.0" + resolve "^1.22.1" + strip-indent "^4.0.0" + + react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + + react-element-to-jsx-string@^15.0.0: + version "15.0.0" + resolved "https://registry.yarnpkg.com/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz#1cafd5b6ad41946ffc8755e254da3fc752a01ac6" + integrity sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ== + dependencies: + "@base2/pretty-print-object" "1.0.1" + is-plain-object "5.0.0" + react-is "18.1.0" + + react-is@18.1.0: + version "18.1.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" + integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== + + react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + + react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + + react-is@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + + react-refresh@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" + integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== + + react-remove-scroll-bar@^2.3.3: + version "2.3.6" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz#3e585e9d163be84a010180b18721e851ac81a29c" + integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g== + dependencies: + react-style-singleton "^2.2.1" + tslib "^2.0.0" + + react-remove-scroll@2.5.5: + version "2.5.5" + resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz#1e31a1260df08887a8a0e46d09271b52b3a37e77" + integrity sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw== + dependencies: + react-remove-scroll-bar "^2.3.3" + react-style-singleton "^2.2.1" + tslib "^2.1.0" + use-callback-ref "^1.3.0" + use-sidecar "^1.1.2" + + react-style-singleton@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" + integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== + dependencies: + get-nonce "^1.0.0" + invariant "^2.2.4" + tslib "^2.0.0" + + react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + + read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + + read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + + read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + + read-yaml-file@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" + integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.6.1" + pify "^4.0.1" + strip-bom "^3.0.0" + + readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + + readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + + readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + + recast@^0.23.1, recast@^0.23.3: + version "0.23.6" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.23.6.tgz#198fba74f66143a30acc81929302d214ce4e3bfa" + integrity sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ== + dependencies: + ast-types "^0.16.1" + esprima "~4.0.0" + source-map "~0.6.1" + tiny-invariant "^1.3.3" + tslib "^2.0.1" + + redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + + regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + + regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + + regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + + regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + + regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" + + regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + + regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + + relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + + remark-external-links@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345" + integrity sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA== + dependencies: + extend "^3.0.0" + is-absolute-url "^3.0.0" + mdast-util-definitions "^4.0.0" + space-separated-tokens "^1.0.0" + unist-util-visit "^2.0.0" + + remark-slug@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.1.0.tgz#0503268d5f0c4ecb1f33315c00465ccdd97923ce" + integrity sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ== + dependencies: + github-slugger "^1.0.0" + mdast-util-to-string "^1.0.0" + unist-util-visit "^2.0.0" + + renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^6.0.1" + + require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + + require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + + require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + + resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + + resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + + resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.22.1, resolve@^1.22.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + + restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + + reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + + rimraf@^2.6.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + + rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + + rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + + rollup@^4.0.2: + version "4.16.4" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.16.4.tgz#fe328eb41293f20c9593a095ec23bdc4b5d93317" + integrity sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA== + dependencies: + "@types/estree" "1.0.5" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.16.4" + "@rollup/rollup-android-arm64" "4.16.4" + "@rollup/rollup-darwin-arm64" "4.16.4" + "@rollup/rollup-darwin-x64" "4.16.4" + "@rollup/rollup-linux-arm-gnueabihf" "4.16.4" + "@rollup/rollup-linux-arm-musleabihf" "4.16.4" + "@rollup/rollup-linux-arm64-gnu" "4.16.4" + "@rollup/rollup-linux-arm64-musl" "4.16.4" + "@rollup/rollup-linux-powerpc64le-gnu" "4.16.4" + "@rollup/rollup-linux-riscv64-gnu" "4.16.4" + "@rollup/rollup-linux-s390x-gnu" "4.16.4" + "@rollup/rollup-linux-x64-gnu" "4.16.4" + "@rollup/rollup-linux-x64-musl" "4.16.4" + "@rollup/rollup-win32-arm64-msvc" "4.16.4" + "@rollup/rollup-win32-ia32-msvc" "4.16.4" + "@rollup/rollup-win32-x64-msvc" "4.16.4" + fsevents "~2.3.2" + + rollup@^4.9.6: + version "4.17.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" + integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== + dependencies: + "@types/estree" "1.0.5" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.17.2" + "@rollup/rollup-android-arm64" "4.17.2" + "@rollup/rollup-darwin-arm64" "4.17.2" + "@rollup/rollup-darwin-x64" "4.17.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" + "@rollup/rollup-linux-arm-musleabihf" "4.17.2" + "@rollup/rollup-linux-arm64-gnu" "4.17.2" + "@rollup/rollup-linux-arm64-musl" "4.17.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" + "@rollup/rollup-linux-riscv64-gnu" "4.17.2" + "@rollup/rollup-linux-s390x-gnu" "4.17.2" + "@rollup/rollup-linux-x64-gnu" "4.17.2" + "@rollup/rollup-linux-x64-musl" "4.17.2" + "@rollup/rollup-win32-arm64-msvc" "4.17.2" + "@rollup/rollup-win32-ia32-msvc" "4.17.2" + "@rollup/rollup-win32-x64-msvc" "4.17.2" + fsevents "~2.3.2" + + run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + + rxjs@^7.8.1: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + + safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + + safe-buffer@5.2.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + + safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + + "safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + + scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + + schema-utils@^2.7.0: + version "2.7.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + + schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + + schema-utils@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + + "semver@2 || 3 || 4 || 5", semver@^5.6.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + + semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + + semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.3, semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + + send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + + serialize-javascript@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + + serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + + set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + + set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + + set-function-name@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + + setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + + shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + + shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + + shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + + shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + + shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + + shell-quote@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + + side-channel@^1.0.4, side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + + signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + + signal-exit@^4.0.1, signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + + sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + + slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + + smartwrap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-2.0.2.tgz#7e25d3dd58b51c6ca4aba3a9e391650ea62698a4" + integrity sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA== + dependencies: + array.prototype.flat "^1.2.3" + breakword "^1.0.5" + grapheme-splitter "^1.0.4" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + + source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + + source-map-support@^0.5.16, source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + + source-map@0.8.0-beta.0: + version "0.8.0-beta.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" + integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== + dependencies: + whatwg-url "^7.0.0" + + source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + + source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + + space-separated-tokens@^1.0.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" + integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== + + spawn-command@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2.tgz#9544e1a43ca045f8531aac1a48cb29bdae62338e" + integrity sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ== + + spawndamnit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" + integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== + dependencies: + cross-spawn "^5.1.0" + signal-exit "^3.0.2" + + spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + + spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + + spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + + spdx-license-ids@^3.0.0: + version "3.0.17" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" + integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + + sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + + stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + + statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + + stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + + store2@^2.14.2: + version "2.14.3" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.14.3.tgz#24077d7ba110711864e4f691d2af941ec533deb5" + integrity sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg== + + storybook@^7.6.7: + version "7.6.18" + resolved "https://registry.yarnpkg.com/storybook/-/storybook-7.6.18.tgz#6f60a609777a1f81056b8265fe9be9857718097d" + integrity sha512-AUhWAVISi+qTsfpJlVuo65VfhqWtapkqJDXA/bK+4actBR9DpRXXwow6xJQJH5wrp8TZk0X9Pkqm3fykTQ5MCA== + dependencies: + "@storybook/cli" "7.6.18" + + stream-shift@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.3.tgz#85b8fab4d71010fc3ba8772e8046cc49b8a3864b" + integrity sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== + + stream-transform@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" + integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== + dependencies: + mixme "^0.5.1" + + "string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + + string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + + string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + + string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + + string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + + string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + + string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + + "strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + + strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + + strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + + strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + + strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + + strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + + strip-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853" + integrity sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA== + dependencies: + min-indent "^1.0.1" + + strip-json-comments@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + + style-loader@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e" + integrity sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q== + dependencies: + loader-utils "^2.0.0" + schema-utils "^2.7.0" + + style-loader@^3.3.1: + version "3.3.4" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.4.tgz#f30f786c36db03a45cbd55b6a70d930c479090e7" + integrity sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w== + + sucrase@^3.20.3, sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + + supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + + supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + + supports-color@^8.0.0, supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + + supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + + swc-loader@^0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/swc-loader/-/swc-loader-0.2.6.tgz#bf0cba8eeff34bb19620ead81d1277fefaec6bc8" + integrity sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg== + dependencies: + "@swc/counter" "^0.1.3" + + synchronous-promise@^2.0.15: + version "2.0.17" + resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.17.tgz#38901319632f946c982152586f2caf8ddc25c032" + integrity sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g== + + tailwind-merge@^2.2.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-2.3.0.tgz#27d2134fd00a1f77eca22bcaafdd67055917d286" + integrity sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA== + dependencies: + "@babel/runtime" "^7.24.1" + + tailwindcss@^3.4.1: + version "3.4.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.3.tgz#be48f5283df77dfced705451319a5dffb8621519" + integrity sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.21.0" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + + tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + + tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + + tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + + tar@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + + telejson@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/telejson/-/telejson-7.2.0.tgz#3994f6c9a8f8d7f2dba9be2c7c5bbb447e876f32" + integrity sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ== + dependencies: + memoizerific "^1.11.3" + + temp-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" + integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== + + temp@^0.8.4: + version "0.8.4" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + + tempy@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-1.0.1.tgz#30fe901fd869cfb36ee2bd999805aa72fbb035de" + integrity sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w== + dependencies: + del "^6.0.0" + is-stream "^2.0.0" + temp-dir "^2.0.0" + type-fest "^0.16.0" + unique-string "^2.0.0" + + term-size@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" + integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + + terser-webpack-plugin@^5.3.1, terser-webpack-plugin@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.20" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.26.0" + + terser@^5.10.0, terser@^5.26.0: + version "5.30.4" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.30.4.tgz#62b4d16a819424e6317fd5ceffb4ee8dc769803a" + integrity sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + + test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + + thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + + "thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + + through2@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + + tiny-invariant@^1.3.1, tiny-invariant@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" + integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== + + tinycolor2@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" + integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== + + tinyspy@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.2.1.tgz#117b2342f1f38a0dbdcc73a50a454883adf861d1" + integrity sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A== + + tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + + tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + + to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + + to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + + tocbot@^4.20.1: + version "4.27.4" + resolved "https://registry.yarnpkg.com/tocbot/-/tocbot-4.27.4.tgz#47f87b97aec2b23eee725c797248500ef0929fd0" + integrity sha512-RJMmos8JXMztNIaasVRyXc/eGQPE+APSkipNBJaFjLC++cYg6zCcRHQRy4EXncpiKiz1Nlax8RTsaSRJMam8CQ== + + toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + + tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== + dependencies: + punycode "^2.1.0" + + tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + + tree-kill@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + + trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + + ts-dedent@^2.0.0, ts-dedent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" + integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + + ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + + tslib@^1.13.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + + tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + + tsup@^8.0.1: + version "8.0.2" + resolved "https://registry.yarnpkg.com/tsup/-/tsup-8.0.2.tgz#c63192a08386515103e2c44ac5a23bdff75c5fa1" + integrity sha512-NY8xtQXdH7hDUAZwcQdY/Vzlw9johQsaqf7iwZ6g1DOUlFYQ5/AtVAjTvihhEyeRlGo4dLRVHtrRaL35M1daqQ== + dependencies: + bundle-require "^4.0.0" + cac "^6.7.12" + chokidar "^3.5.1" + debug "^4.3.1" + esbuild "^0.19.2" + execa "^5.0.0" + globby "^11.0.3" + joycon "^3.0.1" + postcss-load-config "^4.0.1" + resolve-from "^5.0.0" + rollup "^4.0.2" + source-map "0.8.0-beta.0" + sucrase "^3.20.3" + tree-kill "^1.2.2" + + tty-table@^4.1.5: + version "4.2.3" + resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-4.2.3.tgz#e33eb4007a0a9c976c97c37fa13ba66329a5c515" + integrity sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA== + dependencies: + chalk "^4.1.2" + csv "^5.5.3" + kleur "^4.1.5" + smartwrap "^2.0.2" + strip-ansi "^6.0.1" + wcwidth "^1.0.1" + yargs "^17.7.1" + + tween-functions@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/tween-functions/-/tween-functions-1.2.0.tgz#1ae3a50e7c60bb3def774eac707acbca73bbc3ff" + integrity sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA== + + type-detect@^4.0.0, type-detect@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + + type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + + type-fest@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" + integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== + + type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + + type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + + type-fest@^2.19.0, type-fest@~2.19: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + + type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + + typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + + typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + + typed-array-byte-offset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + + typed-array-length@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + + typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + + typescript@^4.9.4: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + + ufo@^1.4.0: + version "1.5.3" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.3.tgz#3325bd3c977b6c6cd3160bf4ff52989adc9d3344" + integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw== + + uglify-js@^3.1.4: + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== + + unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + + undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + + unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + + unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + + unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + + unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + + unique-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + dependencies: + crypto-random-string "^2.0.0" + + unist-util-is@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== + + unist-util-visit-parents@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" + integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + + unist-util-visit@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" + integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + unist-util-visit-parents "^3.0.0" + + universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + + universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + + unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + + unplugin@^1.3.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.10.1.tgz#8ceda065dc71bc67d923dea0920f05c67f2cd68c" + integrity sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg== + dependencies: + acorn "^8.11.3" + chokidar "^3.6.0" + webpack-sources "^3.2.3" + webpack-virtual-modules "^0.6.1" + + untildify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" + integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== + + update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + + uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + + url@^0.11.0: + version "0.11.3" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" + integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== + dependencies: + punycode "^1.4.1" + qs "^6.11.2" + + use-callback-ref@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.2.tgz#6134c7f6ff76e2be0b56c809b17a650c942b1693" + integrity sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA== + dependencies: + tslib "^2.0.0" + + use-resize-observer@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/use-resize-observer/-/use-resize-observer-9.1.0.tgz#14735235cf3268569c1ea468f8a90c5789fc5c6c" + integrity sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow== + dependencies: + "@juggle/resize-observer" "^3.3.1" + + use-sidecar@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" + integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== + dependencies: + detect-node-es "^1.1.0" + tslib "^2.0.0" + + util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + + util@^0.12.4, util@^0.12.5: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + + utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + + utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + + uuid@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + + validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + + vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + + walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + + watchpack@^2.2.0, watchpack@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + + wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + + webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + + webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + + webpack-dev-middleware@^6.1.1: + version "6.1.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-6.1.3.tgz#79f4103f8c898564c9e96c3a9c2422de50f249bc" + integrity sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw== + dependencies: + colorette "^2.0.10" + memfs "^3.4.12" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + + webpack-hot-middleware@^2.25.1: + version "2.26.1" + resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz#87214f1e3f9f3acab9271fef9e6ed7b637d719c0" + integrity sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A== + dependencies: + ansi-html-community "0.0.8" + html-entities "^2.1.0" + strip-ansi "^6.0.0" + + webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + + webpack-virtual-modules@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz#362f14738a56dae107937ab98ea7062e8bdd3b6c" + integrity sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw== + + webpack-virtual-modules@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz#ac6fdb9c5adb8caecd82ec241c9631b7a3681b6f" + integrity sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg== + + webpack@5, webpack@^5.75.0: + version "5.91.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.91.0.tgz#ffa92c1c618d18c878f06892bbdc3373c71a01d9" + integrity sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.5" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" + acorn "^8.7.1" + acorn-import-assertions "^1.9.0" + browserslist "^4.21.10" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.16.0" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.11" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.1" + webpack-sources "^3.2.3" + + whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + + whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + + which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + + which-collection@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + + which-module@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + + which-pm@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" + integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== + dependencies: + load-yaml-file "^0.2.0" + path-exists "^4.0.0" + + which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + + which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + + which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + + wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + + wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + + "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + + wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + + wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + + wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + + write-file-atomic@^2.3.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + + write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + + ws@^6.1.0: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + dependencies: + async-limiter "~1.0.0" + + ws@^8.2.3: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" + integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== + + xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + + y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + + y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + + yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + + yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + + yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + + yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + + yaml@^2.3.4: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.1.tgz#2e57e0b5e995292c25c75d2658f0664765210eed" + integrity sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg== + + yargs-parser@^18.1.2, yargs-parser@^18.1.3: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + + yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + + yargs@^15.1.0: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + + yargs@^17.7.1, yargs@^17.7.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + + yauzl@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" + integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.1.0" + + yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + + yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== From 2b2af3eb46de0def662208fb07c4cf28945cbe1c Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 28 May 2024 22:55:02 +0530 Subject: [PATCH 06/34] fix: svg child not working --- package.json | 1 + scripts/buildIcons.mjs | 15 +- scripts/exportIconTemplate.mjs | 16 +- scripts/generateIconFiles.mjs | 25 ++- scripts/renderSvgChildrenObj.mjs | 43 ++--- scripts/writeSvgChildren.mjs | 12 +- src/Icon.ts | 17 +- src/createASIcon.ts | 4 +- src/icons-neo/adjust_profile.ts | 162 ------------------ src/icons-neo/adjust_profile.tsx | 13 ++ src/icons-neo/alert-circle.ts | 106 ------------ src/icons-neo/alert-circle.tsx | 13 ++ src/icons-neo/alert-red.ts | 94 ---------- src/icons-neo/alert-red.tsx | 13 ++ src/icons-neo/alert-white.ts | 92 ---------- src/icons-neo/alert-white.tsx | 13 ++ src/icons-neo/alert.ts | 50 ------ src/icons-neo/alert.tsx | 13 ++ src/icons-neo/alertTriangle.ts | 38 ---- src/icons-neo/alertTriangle.tsx | 13 ++ src/icons-neo/apple.ts | 37 ---- src/icons-neo/apple.tsx | 13 ++ src/icons-neo/arrow-right.ts | 138 --------------- src/icons-neo/arrow-right.tsx | 13 ++ src/icons-neo/arrow_down.ts | 41 ----- src/icons-neo/arrow_down.tsx | 13 ++ src/icons-neo/arrow_down_variant.ts | 41 ----- src/icons-neo/arrow_down_variant.tsx | 13 ++ src/icons-neo/arrow_left.ts | 41 ----- src/icons-neo/arrow_left.tsx | 13 ++ src/icons-neo/arrow_right_ios.ts | 41 ----- src/icons-neo/arrow_right_ios.tsx | 13 ++ src/icons-neo/arrow_up.ts | 41 ----- src/icons-neo/arrow_up.tsx | 13 ++ ...rofile.children.svg => adjust_profile.svg} | 0 ...t-circle.children.svg => alert-circle.svg} | 0 .../{alert-red.children.svg => alert-red.svg} | 0 ...ert-white.children.svg => alert-white.svg} | 0 .../{alert.children.svg => alert.svg} | 0 ...riangle.children.svg => alertTriangle.svg} | 0 .../{apple.children.svg => apple.svg} | 0 ...row-right.children.svg => arrow-right.svg} | 0 ...arrow_down.children.svg => arrow_down.svg} | 0 ...nt.children.svg => arrow_down_variant.svg} | 0 ...arrow_left.children.svg => arrow_left.svg} | 0 ...t_ios.children.svg => arrow_right_ios.svg} | 0 .../{arrow_up.children.svg => arrow_up.svg} | 0 47 files changed, 216 insertions(+), 1008 deletions(-) delete mode 100644 src/icons-neo/adjust_profile.ts create mode 100644 src/icons-neo/adjust_profile.tsx delete mode 100644 src/icons-neo/alert-circle.ts create mode 100644 src/icons-neo/alert-circle.tsx delete mode 100644 src/icons-neo/alert-red.ts create mode 100644 src/icons-neo/alert-red.tsx delete mode 100644 src/icons-neo/alert-white.ts create mode 100644 src/icons-neo/alert-white.tsx delete mode 100644 src/icons-neo/alert.ts create mode 100644 src/icons-neo/alert.tsx delete mode 100644 src/icons-neo/alertTriangle.ts create mode 100644 src/icons-neo/alertTriangle.tsx delete mode 100644 src/icons-neo/apple.ts create mode 100644 src/icons-neo/apple.tsx delete mode 100644 src/icons-neo/arrow-right.ts create mode 100644 src/icons-neo/arrow-right.tsx delete mode 100644 src/icons-neo/arrow_down.ts create mode 100644 src/icons-neo/arrow_down.tsx delete mode 100644 src/icons-neo/arrow_down_variant.ts create mode 100644 src/icons-neo/arrow_down_variant.tsx delete mode 100644 src/icons-neo/arrow_left.ts create mode 100644 src/icons-neo/arrow_left.tsx delete mode 100644 src/icons-neo/arrow_right_ios.ts create mode 100644 src/icons-neo/arrow_right_ios.tsx delete mode 100644 src/icons-neo/arrow_up.ts create mode 100644 src/icons-neo/arrow_up.tsx rename svg-children/{adjust_profile.children.svg => adjust_profile.svg} (100%) rename svg-children/{alert-circle.children.svg => alert-circle.svg} (100%) rename svg-children/{alert-red.children.svg => alert-red.svg} (100%) rename svg-children/{alert-white.children.svg => alert-white.svg} (100%) rename svg-children/{alert.children.svg => alert.svg} (100%) rename svg-children/{alertTriangle.children.svg => alertTriangle.svg} (100%) rename svg-children/{apple.children.svg => apple.svg} (100%) rename svg-children/{arrow-right.children.svg => arrow-right.svg} (100%) rename svg-children/{arrow_down.children.svg => arrow_down.svg} (100%) rename svg-children/{arrow_down_variant.children.svg => arrow_down_variant.svg} (100%) rename svg-children/{arrow_left.children.svg => arrow_left.svg} (100%) rename svg-children/{arrow_right_ios.children.svg => arrow_right_ios.svg} (100%) rename svg-children/{arrow_up.children.svg => arrow_up.svg} (100%) diff --git a/package.json b/package.json index 5f913d16..e45f97de 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "gen:svgs": "node ./scripts/generateIcons.mjs", "gen:nodes": "node ./scripts/writeIconNodes.mjs", "gen:objs": "node ./scripts/writeSvgObjs.mjs", + "gen:cobjs": "node ./scripts/writeSvgChildren.mjs", "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index ddcb74ee..f845031b 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -5,8 +5,6 @@ import path from 'path' import generateIconFiles from './generateIconFiles.mjs' import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' import renderIconsObject from './renderIconsObject.mjs' -import renderSvgChildrenObj from './renderSvgChildrenObj.mjs' -import writeSvgChildren from './writeSvgChildren.mjs' // import generateExportsFile from './generateExportsFile.mjs' // import generateStories from './generateStories.mjs' @@ -19,15 +17,11 @@ const ICONS_DIR = path.resolve(currentDir, '../icons') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') -const SVG_CHILDREN_PATH = path.resolve(currentDir, '../') - -const SVG_CHILDREN_DIR = path.resolve(SVG_CHILDREN_PATH, 'svg-children') - if (!fs.existsSync(OUTPUT_DIR)) { fs.mkdirSync(OUTPUT_DIR) } -const { renderUniqueKey = false, templateSrc, silent = false, iconFileExtension = '.ts', exportFileName = 'index.js', pretty = true } = cliArguments +const { renderUniqueKey = false, templateSrc, silent = false, iconFileExtension = '.tsx', exportFileName = 'index.js', pretty = true } = cliArguments async function buildIcons() { if (templateSrc == null) { @@ -40,13 +34,6 @@ async function buildIcons() { const { default: iconFileTemplate } = await import(path.resolve(process.cwd(), templateSrc)) - // create svg children = to be inserted later while making Icon component - await writeSvgChildren({ svgObjs, outputDirectory: SVG_CHILDREN_PATH }) - - const svgChildren = readSvgDirectory(SVG_CHILDREN_DIR) - - renderSvgChildrenObj(svgChildren, SVG_CHILDREN_DIR) - generateIconFiles({ svgObjs: svgObjs, outputDirectory: OUTPUT_DIR, diff --git a/scripts/exportIconTemplate.mjs b/scripts/exportIconTemplate.mjs index ad07bf8e..d0da3815 100644 --- a/scripts/exportIconTemplate.mjs +++ b/scripts/exportIconTemplate.mjs @@ -1,21 +1,11 @@ /* eslint-disable import/no-extraneous-dependencies */ -export default ({ componentName, originalAttributes, groupSvgChildrenObj }) => { +export default ({ componentName, originalAttributes, svgChildren }) => { return ` import createASIcon from '../createASIcon'; +import React from 'react'; -/** - * @component @name ${componentName} - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ${componentName} = createASIcon('${componentName}', ${JSON.stringify(originalAttributes, null, 2)}, ${JSON.stringify( - groupSvgChildrenObj, - null, - 2 - )} ); +const ${componentName} = createASIcon('${componentName}', ${JSON.stringify(originalAttributes, null, 2)}, ${svgChildren} ); export default ${componentName}; ` diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index 67ca083d..ae92c1ca 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -1,8 +1,16 @@ import fs from 'fs' import path from 'path' -import { toPascalCase } from './helpers.mjs' +import { getCurrentDirPath, readSvgDirectory, toPascalCase } from './helpers.mjs' +import renderSvgChildrenObj from './renderSvgChildrenObj.mjs' -export default ({ svgObjs, outputDirectory, template, iconFileExtension = '.js', iconsDir }) => { +const currentDir = getCurrentDirPath(import.meta.url) + +const SVG_CHILDREN_DIR = path.resolve(currentDir, '../svg-children') + +const svgChildren = readSvgDirectory(SVG_CHILDREN_DIR) +const svgChildrenObjs = await renderSvgChildrenObj(svgChildren, SVG_CHILDREN_DIR) + +export default async ({ svgObjs, outputDirectory, template, iconFileExtension = '.jsx', iconsDir }) => { const svgs = Object.keys(svgObjs) const iconsDistDirectory = path.join(outputDirectory, `icons-neo`) @@ -17,21 +25,10 @@ export default ({ svgObjs, outputDirectory, template, iconFileExtension = '.js', let { attributes: originalAttributes, children } = svgObjs[svgName] - const groupSvgChildrenObj = { - name: 'g', - type: 'element', - value: '', - parent: null, - children: children, - } - // children = children.map(({ name, attributes }) => [name, attributes]) - - // const getSvg = () => readSvg(`${svgName}.svg`, iconsDir) - const elementTemplate = template({ componentName, originalAttributes, - groupSvgChildrenObj, + svgChildren: svgChildrenObjs[svgName], }) await fs.promises.writeFile(location, elementTemplate, 'utf-8') diff --git a/scripts/renderSvgChildrenObj.mjs b/scripts/renderSvgChildrenObj.mjs index 533406a9..334d03b5 100644 --- a/scripts/renderSvgChildrenObj.mjs +++ b/scripts/renderSvgChildrenObj.mjs @@ -2,37 +2,18 @@ import { basename } from 'path' import { readSvg } from './helpers.mjs' /** * Build an object in the format: `{ : }`. - * @param {string[]} svgFiles - A list of filenames. - * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. + * @param {string[]} svgChildren - A list of filenames. * @returns {Object} */ -export default (svgChildren, svgChildrenDirectory, renderUniqueKey) => - svgChildren.map((svgFile) => { - const name = basename(svgFile, '.svg').split('.')[0] - const svg = readSvg(svgFile, svgChildrenDirectory) - // const contents = parseSync(svg) - console.log('============', svgChildrenDirectory) - - // if (!(contents.children && contents.children.length)) { - // throw new Error(`${name}.svg has no children!`) - // } - - // if (hasDuplicatedChildren(contents.children)) { - // throw new Error(`Duplicated children in ${name}.svg`) - // } - - // if (renderUniqueKey) { - // contents.children = contents.children.map((child) => { - // child.attributes.key = generateHashedKey(child) - - // return child - // }) - // } - - // return { name, svg } - }) -// .reduce((icons, icon) => { -// icons[icon.name] = icon.contents -// return icons -// }, {}) +export default async (svgChildren, svgChildrenDirectory, renderUniqueKey) => + svgChildren + .map((svgFile) => { + const name = basename(svgFile, '.svg').split('.')[0] + const svgChild = readSvg(svgFile, svgChildrenDirectory) + return { name, svgChild } + }) + .reduce((svgObjs, svg) => { + svgObjs[svg.name] = svg.svgChild + return svgObjs + }, {}) diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs index 48e62d43..d7708c7c 100644 --- a/scripts/writeSvgChildren.mjs +++ b/scripts/writeSvgChildren.mjs @@ -2,7 +2,13 @@ import fs from 'fs' import path from 'path' import { stringify } from 'svgson' -export default async ({ svgObjs, outputDirectory }) => { +const ICONS_DIR = path.resolve(currentDir, '../icons') + +const svgFiles = readSvgDirectory(ICONS_DIR) + +const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) + +export default async () => { const svgs = Object.keys(svgObjs) const svgChildrenDirectory = path.join(outputDirectory, `svg-children`) @@ -12,7 +18,7 @@ export default async ({ svgObjs, outputDirectory }) => { } const writeSvgChildren = svgs.map(async (svgName) => { - const location = path.resolve(svgChildrenDirectory, `${svgName}.children.svg`) + const location = path.resolve(svgChildrenDirectory, `${svgName}.svg`) let { children } = svgObjs[svgName] @@ -30,7 +36,7 @@ export default async ({ svgObjs, outputDirectory }) => { try { await Promise.all(writeSvgChildren) - console.log('Successfully write', icons.length, 'svg objs.') + console.log('Successfully write', svgs.length, 'svg objs.') } catch (error) { throw new Error(`Something went wrong generating iconNode files,\n ${error}`) } diff --git a/src/Icon.ts b/src/Icon.ts index 32c2ed30..b7f078f8 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -1,11 +1,11 @@ import { createElement, forwardRef } from 'react' -import { stringify } from 'svgson' +import defaultAttributes from './defaultAttributes' import { ASIProps, IconNode } from './types' import { mergeClasses } from './utils' interface IconComponentProps extends ASIProps { originalAttributes: any - groupSvgChildrenObj: any + svgChildren: any } /** @@ -35,28 +35,27 @@ const Icon = forwardRef( className = '', children, originalAttributes, - groupSvgChildrenObj, + svgChildren, ...rest }, ref ) => { - const groupSvgChildrenTemplate = stringify(groupSvgChildrenObj).replace(/"/g, '') - console.log('groupSvgChildrenTemplate', groupSvgChildrenTemplate.replace(/"/g, '')) + // const groupSvgChildrenTemplate = stringify(groupSvgChildrenObj).replace(/"/g, '') + // console.log('groupSvgChildrenTemplate', groupSvgChildrenTemplate.replace(/"/g, '')) return createElement( 'svg', { ref, + ...defaultAttributes, ...originalAttributes, - // width: size, - // height: size, stroke: inActive ? '#777777' : color, fill: fillColor, strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, className: mergeClasses('asi w-[24px] h-auto shrink-0', className), ...rest, - } - // groupSvgChildrenTemplate + }, + svgChildren // [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...(Array.isArray(children) ? children : [children])] ) } diff --git a/src/createASIcon.ts b/src/createASIcon.ts index 2df24941..cda1024a 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -9,12 +9,12 @@ import { mergeClasses, toKebabCase } from './utils' * @param {array} iconNode * @returns {ForwardRefExoticComponent} LucideIcon */ -const createASIcon = (iconName: string, originalAttributes: any, groupSvgChildrenObj: any) => { +const createASIcon = (iconName: string, originalAttributes: any, svgChildren: any) => { const Component = forwardRef(({ className, ...props }, ref) => createElement(Icon, { ref, originalAttributes, - groupSvgChildrenObj, + svgChildren, className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className), ...props, }) diff --git a/src/icons-neo/adjust_profile.ts b/src/icons-neo/adjust_profile.ts deleted file mode 100644 index 140ac44a..00000000 --- a/src/icons-neo/adjust_profile.ts +++ /dev/null @@ -1,162 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name AdjustProfile - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const AdjustProfile = createASIcon('AdjustProfile', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "21", - "height": "20", - "fill": "none", - "viewBox": "0 0 21 20" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke-linecap": "round", - "stroke-linejoin": "round", - "clip-path": "url(#a)" - }, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M12.167 6.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M3.834 5h6.667" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M13.834 5h3.333" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M7.167 11.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M3.834 10h1.667" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M8.834 10h8.333" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M14.667 16.666a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M3.834 15h9.167" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M16.334 15h.833" - }, - "children": [] - } - ] - }, - { - "name": "defs", - "type": "element", - "value": "", - "parent": null, - "attributes": {}, - "children": [ - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "a" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "20", - "height": "20", - "fill": "#fff", - "transform": "translate(.5)" - }, - "children": [] - } - ] - } - ] - } - ] -} ); - -export default AdjustProfile; diff --git a/src/icons-neo/adjust_profile.tsx b/src/icons-neo/adjust_profile.tsx new file mode 100644 index 00000000..5135a03f --- /dev/null +++ b/src/icons-neo/adjust_profile.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const AdjustProfile = createASIcon('AdjustProfile', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "none", + "viewBox": "0 0 21 20" +}, ); + +export default AdjustProfile; diff --git a/src/icons-neo/alert-circle.ts b/src/icons-neo/alert-circle.ts deleted file mode 100644 index cbb62c66..00000000 --- a/src/icons-neo/alert-circle.ts +++ /dev/null @@ -1,106 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name AlertCircle - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const AlertCircle = createASIcon('AlertCircle', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "21", - "height": "20", - "fill": "red", - "viewBox": "0 0 21 20" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "clip-path": "url(#a)" - }, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M10.5 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "d": "M10.5 6.667V10" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "d": "M10.5 13.333h.008" - }, - "children": [] - } - ] - }, - { - "name": "defs", - "type": "element", - "value": "", - "parent": null, - "attributes": {}, - "children": [ - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "a" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "20", - "height": "20", - "fill": "#fff", - "transform": "translate(.5)" - }, - "children": [] - } - ] - } - ] - } - ] -} ); - -export default AlertCircle; diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx new file mode 100644 index 00000000..0a89ff5e --- /dev/null +++ b/src/icons-neo/alert-circle.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const AlertCircle = createASIcon('AlertCircle', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "21", + "height": "20", + "fill": "red", + "viewBox": "0 0 21 20" +}, ); + +export default AlertCircle; diff --git a/src/icons-neo/alert-red.ts b/src/icons-neo/alert-red.ts deleted file mode 100644 index 1116a988..00000000 --- a/src/icons-neo/alert-red.ts +++ /dev/null @@ -1,94 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name AlertRed - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const AlertRed = createASIcon('AlertRed', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "64", - "height": "64", - "fill": "none", - "viewBox": "0 0 64 64" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "3", - "clip-path": "url(#a)" - }, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M13.334 50.667h37.333a5.334 5.334 0 0 0 4.907-7.334L36.64 10.667a5.333 5.333 0 0 0-9.333 0L8.374 43.333a5.333 5.333 0 0 0 4.666 7.334" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M32 40v.027M32 24v5.333z" - }, - "children": [] - } - ] - }, - { - "name": "defs", - "type": "element", - "value": "", - "parent": null, - "attributes": {}, - "children": [ - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "a" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "64", - "height": "64", - "fill": "#fff", - "rx": "32" - }, - "children": [] - } - ] - } - ] - } - ] -} ); - -export default AlertRed; diff --git a/src/icons-neo/alert-red.tsx b/src/icons-neo/alert-red.tsx new file mode 100644 index 00000000..86f41695 --- /dev/null +++ b/src/icons-neo/alert-red.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const AlertRed = createASIcon('AlertRed', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "64", + "height": "64", + "fill": "none", + "viewBox": "0 0 64 64" +}, ); + +export default AlertRed; diff --git a/src/icons-neo/alert-white.ts b/src/icons-neo/alert-white.ts deleted file mode 100644 index 6a2492c9..00000000 --- a/src/icons-neo/alert-white.ts +++ /dev/null @@ -1,92 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name AlertWhite - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const AlertWhite = createASIcon('AlertWhite', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "12", - "height": "12", - "fill": "none", - "viewBox": "0 0 12 12" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "clip-path": "url(#a)" - }, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M2.5 9.5h7a1 1 0 0 0 .92-1.375L6.87 2a1 1 0 0 0-1.75 0L1.57 8.125A1 1 0 0 0 2.445 9.5" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M6 7.5v.005M6 4.5v1z" - }, - "children": [] - } - ] - }, - { - "name": "defs", - "type": "element", - "value": "", - "parent": null, - "attributes": {}, - "children": [ - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "a" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "12", - "height": "12", - "fill": "#fff" - }, - "children": [] - } - ] - } - ] - } - ] -} ); - -export default AlertWhite; diff --git a/src/icons-neo/alert-white.tsx b/src/icons-neo/alert-white.tsx new file mode 100644 index 00000000..4d13cdfe --- /dev/null +++ b/src/icons-neo/alert-white.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const AlertWhite = createASIcon('AlertWhite', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "12", + "height": "12", + "fill": "none", + "viewBox": "0 0 12 12" +}, ); + +export default AlertWhite; diff --git a/src/icons-neo/alert.ts b/src/icons-neo/alert.ts deleted file mode 100644 index d6c84ebc..00000000 --- a/src/icons-neo/alert.ts +++ /dev/null @@ -1,50 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name Alert - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const Alert = createASIcon('Alert', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "54", - "height": "46", - "fill": "red", - "viewBox": "0 0 54 46" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M22.204 2.446.68 38.376A5.082 5.082 0 0 0 5.026 46h43.046a5.083 5.083 0 0 0 4.345-7.623L30.894 2.447a5.08 5.08 0 0 0-8.69 0Z" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "5", - "d": "M26.552 15.507V25.67m0 10.165h.025" - }, - "children": [] - } - ] -} ); - -export default Alert; diff --git a/src/icons-neo/alert.tsx b/src/icons-neo/alert.tsx new file mode 100644 index 00000000..48b68dfe --- /dev/null +++ b/src/icons-neo/alert.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const Alert = createASIcon('Alert', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "54", + "height": "46", + "fill": "red", + "viewBox": "0 0 54 46" +}, ); + +export default Alert; diff --git a/src/icons-neo/alertTriangle.ts b/src/icons-neo/alertTriangle.ts deleted file mode 100644 index 9f94ebfe..00000000 --- a/src/icons-neo/alertTriangle.ts +++ /dev/null @@ -1,38 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name AlertTriangle - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const AlertTriangle = createASIcon('AlertTriangle', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "19", - "height": "18", - "fill": "none", - "viewBox": "0 0 19 18" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-width": "1.3", - "d": "M14.97 10.178h-.919l.46-.46zm0 0v.65h-.65zm3.38-1.182v-.003a.7.7 0 0 0-.036-.225.4.4 0 0 0-.1-.146l-.001-.001-7.82-7.82a.5.5 0 0 0-.376-.15.46.46 0 0 0-.365.15l-.01.01-.01.009a.46.46 0 0 0-.16.357.45.45 0 0 0 .149.362l.002.001 5.807 5.808 1.11 1.11H1.726a.5.5 0 0 0-.386.15c-.1.1-.15.213-.15.383v.002c0 .172.052.286.151.386.098.098.21.15.383.149H16.54l-1.11 1.11-5.807 5.807c-.09.089-.146.203-.152.39-.004.155.04.246.13.33l.022.019.02.021a.43.43 0 0 0 .35.145c.163 0 .284-.05.4-.165l7.821-7.822a.4.4 0 0 0 .1-.146.6.6 0 0 0 .036-.221ZM.54 8.993q0 .503.34.845.342.34.846.34z" - }, - "children": [] - } - ] -} ); - -export default AlertTriangle; diff --git a/src/icons-neo/alertTriangle.tsx b/src/icons-neo/alertTriangle.tsx new file mode 100644 index 00000000..c6b6dbe9 --- /dev/null +++ b/src/icons-neo/alertTriangle.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const AlertTriangle = createASIcon('AlertTriangle', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "19", + "height": "18", + "fill": "none", + "viewBox": "0 0 19 18" +}, ); + +export default AlertTriangle; diff --git a/src/icons-neo/apple.ts b/src/icons-neo/apple.ts deleted file mode 100644 index 03eb9f62..00000000 --- a/src/icons-neo/apple.ts +++ /dev/null @@ -1,37 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name Apple - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const Apple = createASIcon('Apple', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "17", - "height": "20", - "fill": "none", - "viewBox": "0 0 17 20" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "fill": "#fff", - "d": "M13.934 10.57c-.01-1.64.727-2.876 2.215-3.787-.832-1.201-2.09-1.863-3.75-1.99-1.572-.125-3.29.923-3.92.923-.665 0-2.187-.88-3.384-.88C2.625 4.875 0 6.822 0 10.783q0 1.756.637 3.625c.567 1.64 2.613 5.656 4.747 5.591 1.116-.026 1.905-.798 3.357-.798 1.41 0 2.139.798 3.383.798 2.153-.031 4.004-3.682 4.543-5.326-2.888-1.373-2.733-4.02-2.733-4.104Zm-2.506-7.332C12.638 1.79 12.528.474 12.492 0c-1.069.062-2.304.733-3.007 1.558-.775.884-1.23 1.978-1.133 3.211 1.154.089 2.208-.51 3.076-1.531" - }, - "children": [] - } - ] -} ); - -export default Apple; diff --git a/src/icons-neo/apple.tsx b/src/icons-neo/apple.tsx new file mode 100644 index 00000000..5085e2ec --- /dev/null +++ b/src/icons-neo/apple.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const Apple = createASIcon('Apple', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "17", + "height": "20", + "fill": "none", + "viewBox": "0 0 17 20" +}, ); + +export default Apple; diff --git a/src/icons-neo/arrow-right.ts b/src/icons-neo/arrow-right.ts deleted file mode 100644 index bfc3ef78..00000000 --- a/src/icons-neo/arrow-right.ts +++ /dev/null @@ -1,138 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowRight - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowRight = createASIcon('ArrowRight', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "18", - "fill": "none", - "viewBox": "0 0 18 18" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "clip-path": "url(#a)" - }, - "children": [ - { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2.25", - "clip-path": "url(#b)" - }, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "M1.417 9h15.167" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "m10.083 15.5 6.5-6.5" - }, - "children": [] - }, - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "d": "m10.083 2.5 6.5 6.5" - }, - "children": [] - } - ] - } - ] - }, - { - "name": "defs", - "type": "element", - "value": "", - "parent": null, - "attributes": {}, - "children": [ - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "a" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "18", - "height": "18", - "fill": "#fff" - }, - "children": [] - } - ] - }, - { - "name": "clipPath", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "id": "b" - }, - "children": [ - { - "name": "rect", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "width": "26", - "height": "26", - "fill": "#fff", - "transform": "translate(-4 -4)" - }, - "children": [] - } - ] - } - ] - } - ] -} ); - -export default ArrowRight; diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx new file mode 100644 index 00000000..99e88a8c --- /dev/null +++ b/src/icons-neo/arrow-right.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowRight = createASIcon('ArrowRight', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "18", + "fill": "none", + "viewBox": "0 0 18 18" +}, ); + +export default ArrowRight; diff --git a/src/icons-neo/arrow_down.ts b/src/icons-neo/arrow_down.ts deleted file mode 100644 index 623af858..00000000 --- a/src/icons-neo/arrow_down.ts +++ /dev/null @@ -1,41 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowDown - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowDown = createASIcon('ArrowDown', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-opacity": ".8", - "stroke-width": "1.5", - "d": "M16.94 1.412 9 9.354 1.059 1.412" - }, - "children": [] - } - ] -} ); - -export default ArrowDown; diff --git a/src/icons-neo/arrow_down.tsx b/src/icons-neo/arrow_down.tsx new file mode 100644 index 00000000..49ee8deb --- /dev/null +++ b/src/icons-neo/arrow_down.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowDown = createASIcon('ArrowDown', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, ); + +export default ArrowDown; diff --git a/src/icons-neo/arrow_down_variant.ts b/src/icons-neo/arrow_down_variant.ts deleted file mode 100644 index e0ca51ab..00000000 --- a/src/icons-neo/arrow_down_variant.ts +++ /dev/null @@ -1,41 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowDownVariant - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowDownVariant = createASIcon('ArrowDownVariant', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-opacity": ".8", - "stroke-width": "1.5", - "d": "M16.94 1.412 9 9.354 1.059 1.412" - }, - "children": [] - } - ] -} ); - -export default ArrowDownVariant; diff --git a/src/icons-neo/arrow_down_variant.tsx b/src/icons-neo/arrow_down_variant.tsx new file mode 100644 index 00000000..b5e54aa0 --- /dev/null +++ b/src/icons-neo/arrow_down_variant.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowDownVariant = createASIcon('ArrowDownVariant', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, ); + +export default ArrowDownVariant; diff --git a/src/icons-neo/arrow_left.ts b/src/icons-neo/arrow_left.ts deleted file mode 100644 index d29b84a1..00000000 --- a/src/icons-neo/arrow_left.ts +++ /dev/null @@ -1,41 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowLeft - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowLeft = createASIcon('ArrowLeft', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "10", - "height": "18", - "fill": "none", - "viewBox": "0 0 10 18" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-opacity": ".8", - "stroke-width": "1.5", - "d": "M8.706 16.94.765 9l7.94-7.941" - }, - "children": [] - } - ] -} ); - -export default ArrowLeft; diff --git a/src/icons-neo/arrow_left.tsx b/src/icons-neo/arrow_left.tsx new file mode 100644 index 00000000..c85d8490 --- /dev/null +++ b/src/icons-neo/arrow_left.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowLeft = createASIcon('ArrowLeft', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "10", + "height": "18", + "fill": "none", + "viewBox": "0 0 10 18" +}, ); + +export default ArrowLeft; diff --git a/src/icons-neo/arrow_right_ios.ts b/src/icons-neo/arrow_right_ios.ts deleted file mode 100644 index 6b0c5138..00000000 --- a/src/icons-neo/arrow_right_ios.ts +++ /dev/null @@ -1,41 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowRightIos - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowRightIos = createASIcon('ArrowRightIos', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "11", - "height": "18", - "fill": "none", - "viewBox": "0 0 11 18" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-opacity": ".8", - "stroke-width": "1.5", - "d": "M1.53 1.059 9.47 9l-7.94 7.941" - }, - "children": [] - } - ] -} ); - -export default ArrowRightIos; diff --git a/src/icons-neo/arrow_right_ios.tsx b/src/icons-neo/arrow_right_ios.tsx new file mode 100644 index 00000000..d25e91d8 --- /dev/null +++ b/src/icons-neo/arrow_right_ios.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowRightIos = createASIcon('ArrowRightIos', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "11", + "height": "18", + "fill": "none", + "viewBox": "0 0 11 18" +}, ); + +export default ArrowRightIos; diff --git a/src/icons-neo/arrow_up.ts b/src/icons-neo/arrow_up.ts deleted file mode 100644 index 6101de66..00000000 --- a/src/icons-neo/arrow_up.ts +++ /dev/null @@ -1,41 +0,0 @@ - -import createASIcon from '../createASIcon'; - -/** - * @component @name ArrowUp - * @description ASI component, renders SVG Element with children. - * @param {Object} props - any valid SVG attribute - * @param {Object} props - objectivy SVG children array - use sringify from svgson - * @returns {JSX.Element} JSX Element - */ -const ArrowUp = createASIcon('ArrowUp', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, { - "name": "g", - "type": "element", - "value": "", - "parent": null, - "children": [ - { - "name": "path", - "type": "element", - "value": "", - "parent": null, - "attributes": { - "stroke": "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-opacity": ".8", - "stroke-width": "1.5", - "d": "M1.059 9.53 9 1.587l7.941 7.941" - }, - "children": [] - } - ] -} ); - -export default ArrowUp; diff --git a/src/icons-neo/arrow_up.tsx b/src/icons-neo/arrow_up.tsx new file mode 100644 index 00000000..641c0e7a --- /dev/null +++ b/src/icons-neo/arrow_up.tsx @@ -0,0 +1,13 @@ + +import createASIcon from '../createASIcon'; +import React from 'react'; + +const ArrowUp = createASIcon('ArrowUp', { + "xmlns": "http://www.w3.org/2000/svg", + "width": "18", + "height": "11", + "fill": "none", + "viewBox": "0 0 18 11" +}, ); + +export default ArrowUp; diff --git a/svg-children/adjust_profile.children.svg b/svg-children/adjust_profile.svg similarity index 100% rename from svg-children/adjust_profile.children.svg rename to svg-children/adjust_profile.svg diff --git a/svg-children/alert-circle.children.svg b/svg-children/alert-circle.svg similarity index 100% rename from svg-children/alert-circle.children.svg rename to svg-children/alert-circle.svg diff --git a/svg-children/alert-red.children.svg b/svg-children/alert-red.svg similarity index 100% rename from svg-children/alert-red.children.svg rename to svg-children/alert-red.svg diff --git a/svg-children/alert-white.children.svg b/svg-children/alert-white.svg similarity index 100% rename from svg-children/alert-white.children.svg rename to svg-children/alert-white.svg diff --git a/svg-children/alert.children.svg b/svg-children/alert.svg similarity index 100% rename from svg-children/alert.children.svg rename to svg-children/alert.svg diff --git a/svg-children/alertTriangle.children.svg b/svg-children/alertTriangle.svg similarity index 100% rename from svg-children/alertTriangle.children.svg rename to svg-children/alertTriangle.svg diff --git a/svg-children/apple.children.svg b/svg-children/apple.svg similarity index 100% rename from svg-children/apple.children.svg rename to svg-children/apple.svg diff --git a/svg-children/arrow-right.children.svg b/svg-children/arrow-right.svg similarity index 100% rename from svg-children/arrow-right.children.svg rename to svg-children/arrow-right.svg diff --git a/svg-children/arrow_down.children.svg b/svg-children/arrow_down.svg similarity index 100% rename from svg-children/arrow_down.children.svg rename to svg-children/arrow_down.svg diff --git a/svg-children/arrow_down_variant.children.svg b/svg-children/arrow_down_variant.svg similarity index 100% rename from svg-children/arrow_down_variant.children.svg rename to svg-children/arrow_down_variant.svg diff --git a/svg-children/arrow_left.children.svg b/svg-children/arrow_left.svg similarity index 100% rename from svg-children/arrow_left.children.svg rename to svg-children/arrow_left.svg diff --git a/svg-children/arrow_right_ios.children.svg b/svg-children/arrow_right_ios.svg similarity index 100% rename from svg-children/arrow_right_ios.children.svg rename to svg-children/arrow_right_ios.svg diff --git a/svg-children/arrow_up.children.svg b/svg-children/arrow_up.svg similarity index 100% rename from svg-children/arrow_up.children.svg rename to svg-children/arrow_up.svg From 56c26da16f557df5f453242ff54c87f53855c27b Mon Sep 17 00:00:00 2001 From: booi-dev Date: Wed, 29 May 2024 11:12:30 +0530 Subject: [PATCH 07/34] add: genertate export files --- package.json | 5 +- pnpm-lock.yaml | 74 +++++++++++++++++++++++++++- scripts/buildIcons.mjs | 12 +++-- scripts/generateExportsFile.mjs | 23 +++++++++ scripts/generateIconFiles.mjs | 11 +++-- src/createASIcon.ts | 4 +- src/icons-neo/adjust_profile.tsx | 40 +++++++++++---- src/icons-neo/alert-circle.tsx | 44 +++++++++++++---- src/icons-neo/alert-red.tsx | 39 +++++++++++---- src/icons-neo/alert-white.tsx | 38 ++++++++++---- src/icons-neo/alert.tsx | 32 ++++++++---- src/icons-neo/alertTriangle.tsx | 29 +++++++---- src/icons-neo/apple.tsx | 28 +++++++---- src/icons-neo/arrow-right.tsx | 45 +++++++++++++---- src/icons-neo/arrow_down.tsx | 32 ++++++++---- src/icons-neo/arrow_down_variant.tsx | 32 ++++++++---- src/icons-neo/arrow_left.tsx | 32 ++++++++---- src/icons-neo/arrow_right_ios.tsx | 32 ++++++++---- src/icons-neo/arrow_up.tsx | 32 ++++++++---- src/icons-neo/index.ts | 14 ++++++ 20 files changed, 457 insertions(+), 141 deletions(-) create mode 100644 scripts/generateExportsFile.mjs create mode 100644 src/icons-neo/index.ts diff --git a/package.json b/package.json index e45f97de..205d61ba 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "gen:nodes": "node ./scripts/writeIconNodes.mjs", "gen:objs": "node ./scripts/writeSvgObjs.mjs", "gen:cobjs": "node ./scripts/writeSvgChildren.mjs", - "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs", + "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs --exportFileName index.ts", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", @@ -41,7 +41,7 @@ "@storybook/addon-styling-webpack": "^0.0.6", "@storybook/blocks": "^7.6.7", "@storybook/cli": "^7.6.7", - "@storybook/react": "^7.6.7", + "@storybook/react": "^7.6.8", "@storybook/react-webpack5": "^7.6.7", "@storybook/test": "^7.6.7", "@types/react": "^18.0.26", @@ -52,6 +52,7 @@ "css-loader": "^6.7.3", "husky": "^8.0.2", "postcss": "^8.4.38", + "prettier": "^3.2.5", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.7", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a670337a..dc3d49bd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,9 +17,15 @@ importers: concurrently: specifier: ^8.2.2 version: 8.2.2 + minimist: + specifier: ^1.2.8 + version: 1.2.8 rollup: specifier: ^4.9.6 version: 4.9.6 + svgson: + specifier: ^5.3.1 + version: 5.3.1 tailwind-merge: specifier: ^2.2.1 version: 2.2.1 @@ -55,7 +61,7 @@ importers: specifier: ^7.6.7 version: 7.6.8 '@storybook/react': - specifier: ^7.6.7 + specifier: ^7.6.8 version: 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) '@storybook/react-webpack5': specifier: ^7.6.7 @@ -87,6 +93,9 @@ importers: postcss: specifier: ^8.4.38 version: 8.4.38 + prettier: + specifier: ^3.2.5 + version: 3.2.5 react: specifier: ^18.2.0 version: 18.2.0 @@ -2854,6 +2863,10 @@ packages: resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} engines: {node: '>= 0.4'} + deep-rename-keys@0.2.1: + resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} + engines: {node: '>=0.10.0'} + deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} @@ -3126,6 +3139,9 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} + eventemitter3@2.0.3: + resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} + events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} @@ -3589,6 +3605,9 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -3843,6 +3862,10 @@ packages: keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -4520,6 +4543,11 @@ packages: engines: {node: '>=10.13.0'} hasBin: true + prettier@3.2.5: + resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} + engines: {node: '>=14'} + hasBin: true + pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} @@ -4763,6 +4791,10 @@ packages: remark-slug@6.1.0: resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + rename-keys@1.2.0: + resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} + engines: {node: '>= 0.8.0'} + renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} @@ -5104,6 +5136,9 @@ packages: engines: {node: '>=14.0.0'} hasBin: true + svgson@5.3.1: + resolution: {integrity: sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA==} + swc-loader@0.2.3: resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} peerDependencies: @@ -5582,6 +5617,12 @@ packages: utf-8-validate: optional: true + xml-lexer@0.2.2: + resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} + + xml-reader@2.4.3: + resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} + xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} @@ -9036,6 +9077,11 @@ snapshots: which-collection: 1.0.1 which-typed-array: 1.1.13 + deep-rename-keys@0.2.1: + dependencies: + kind-of: 3.2.2 + rename-keys: 1.2.0 + deepmerge@4.3.1: {} default-browser-id@3.0.0: @@ -9388,6 +9434,8 @@ snapshots: etag@1.8.1: {} + eventemitter3@2.0.3: {} + events@3.3.0: {} execa@5.1.1: @@ -9946,6 +9994,8 @@ snapshots: call-bind: 1.0.5 has-tostringtag: 1.0.0 + is-buffer@1.1.6: {} + is-callable@1.2.7: {} is-core-module@2.13.1: @@ -10201,6 +10251,10 @@ snapshots: dependencies: json-buffer: 3.0.1 + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + kind-of@6.0.3: {} kleur@3.0.3: {} @@ -10815,6 +10869,8 @@ snapshots: prettier@2.8.8: {} + prettier@3.2.5: {} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 @@ -11113,6 +11169,8 @@ snapshots: mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 + rename-keys@1.2.0: {} + renderkid@3.0.0: dependencies: css-select: 4.3.0 @@ -11500,6 +11558,11 @@ snapshots: csso: 5.0.5 picocolors: 1.0.0 + svgson@5.3.1: + dependencies: + deep-rename-keys: 0.2.1 + xml-reader: 2.4.3 + swc-loader@0.2.3(@swc/core@1.3.103)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): dependencies: '@swc/core': 1.3.103 @@ -12024,6 +12087,15 @@ snapshots: ws@8.16.0: {} + xml-lexer@0.2.2: + dependencies: + eventemitter3: 2.0.3 + + xml-reader@2.4.3: + dependencies: + eventemitter3: 2.0.3 + xml-lexer: 0.2.2 + xtend@4.0.2: {} y18n@4.0.3: {} diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index f845031b..ab0c96da 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -2,11 +2,10 @@ import fs from 'fs' import getArgumentOptions from 'minimist' import path from 'path' +import generateExportsFile from './generateExportsFile.mjs' import generateIconFiles from './generateIconFiles.mjs' import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' import renderIconsObject from './renderIconsObject.mjs' - -// import generateExportsFile from './generateExportsFile.mjs' // import generateStories from './generateStories.mjs' const cliArguments = getArgumentOptions(process.argv.slice(2)) @@ -17,6 +16,8 @@ const ICONS_DIR = path.resolve(currentDir, '../icons') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') +const OUTPUT_FOLDER = 'icons-neo' + if (!fs.existsSync(OUTPUT_DIR)) { fs.mkdirSync(OUTPUT_DIR) } @@ -35,6 +36,7 @@ async function buildIcons() { const { default: iconFileTemplate } = await import(path.resolve(process.cwd(), templateSrc)) generateIconFiles({ + outputFolderName: OUTPUT_FOLDER, svgObjs: svgObjs, outputDirectory: OUTPUT_DIR, iconsDir: ICONS_DIR, @@ -44,7 +46,11 @@ async function buildIcons() { }) // Generates entry files for the compiler filled with icons exports - // generateExportsFile(path.join(OUTPUT_DIR, 'icons', exportFileName), path.join(OUTPUT_DIR, 'icons'), icons) + generateExportsFile({ + inputEntry: path.join(OUTPUT_DIR, OUTPUT_FOLDER, exportFileName), + outputDirectory: path.join(OUTPUT_DIR, OUTPUT_FOLDER), + iconNodes: svgObjs, + }) // generateStories({ iconNodes: icons }) } diff --git a/scripts/generateExportsFile.mjs b/scripts/generateExportsFile.mjs new file mode 100644 index 00000000..229366c5 --- /dev/null +++ b/scripts/generateExportsFile.mjs @@ -0,0 +1,23 @@ +import path from 'path' + +import { appendFile, resetFile, toPascalCase } from './helpers.mjs' + +export default ({ inputEntry, outputDirectory, iconNodes, iconFileExtension = '' }) => { + const fileName = path.basename(inputEntry) + + // Reset file + resetFile(fileName, outputDirectory) + + const icons = Object.keys(iconNodes) + + // Generate Import for Icon VNodes + icons.forEach((iconName) => { + const componentName = toPascalCase(iconName) + const importString = `export { default as ${componentName} } from './${iconName}${iconFileExtension}';\n` + appendFile(importString, fileName, outputDirectory) + }) + + appendFile('\n', fileName, outputDirectory) + + console.log(`Index successfully generated ${fileName} file`) +} diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index ae92c1ca..bda61b23 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -1,5 +1,6 @@ import fs from 'fs' import path from 'path' +import prettier from 'prettier' import { getCurrentDirPath, readSvgDirectory, toPascalCase } from './helpers.mjs' import renderSvgChildrenObj from './renderSvgChildrenObj.mjs' @@ -10,10 +11,10 @@ const SVG_CHILDREN_DIR = path.resolve(currentDir, '../svg-children') const svgChildren = readSvgDirectory(SVG_CHILDREN_DIR) const svgChildrenObjs = await renderSvgChildrenObj(svgChildren, SVG_CHILDREN_DIR) -export default async ({ svgObjs, outputDirectory, template, iconFileExtension = '.jsx', iconsDir }) => { +export default async ({ outputFolderName, svgObjs, outputDirectory, template, iconFileExtension = '.jsx', iconsDir }) => { const svgs = Object.keys(svgObjs) - const iconsDistDirectory = path.join(outputDirectory, `icons-neo`) + const iconsDistDirectory = path.join(outputDirectory, outputFolderName) if (!fs.existsSync(iconsDistDirectory)) { fs.mkdirSync(iconsDistDirectory) @@ -31,7 +32,11 @@ export default async ({ svgObjs, outputDirectory, template, iconFileExtension = svgChildren: svgChildrenObjs[svgName], }) - await fs.promises.writeFile(location, elementTemplate, 'utf-8') + const outpust = await prettier.format(elementTemplate, { + parser: 'typescript', + }) + + await fs.promises.writeFile(location, outpust, 'utf-8') }) Promise.all(writeIconFiles) diff --git a/src/createASIcon.ts b/src/createASIcon.ts index cda1024a..50d4f434 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -15,9 +15,9 @@ const createASIcon = (iconName: string, originalAttributes: any, svgChildren: an ref, originalAttributes, svgChildren, - className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className), + className: mergeClasses(`unicon unicon-${toKebabCase(iconName)}`, className), ...props, - }) + }), ) Component.displayName = `${iconName}` diff --git a/src/icons-neo/adjust_profile.tsx b/src/icons-neo/adjust_profile.tsx index 5135a03f..24661a83 100644 --- a/src/icons-neo/adjust_profile.tsx +++ b/src/icons-neo/adjust_profile.tsx @@ -1,13 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const AdjustProfile = createASIcon('AdjustProfile', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "21", - "height": "20", - "fill": "none", - "viewBox": "0 0 21 20" -}, ); +const AdjustProfile = createASIcon( + "AdjustProfile", + { + xmlns: "http://www.w3.org/2000/svg", + width: "21", + height: "20", + fill: "none", + viewBox: "0 0 21 20", + }, + + + + + + + + + + + + + + + + + + , +); export default AdjustProfile; diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx index 0a89ff5e..ef35e859 100644 --- a/src/icons-neo/alert-circle.tsx +++ b/src/icons-neo/alert-circle.tsx @@ -1,13 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const AlertCircle = createASIcon('AlertCircle', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "21", - "height": "20", - "fill": "red", - "viewBox": "0 0 21 20" -}, ); +const AlertCircle = createASIcon( + "AlertCircle", + { + xmlns: "http://www.w3.org/2000/svg", + width: "21", + height: "20", + fill: "red", + viewBox: "0 0 21 20", + }, + + + + + + + + + + + + , +); export default AlertCircle; diff --git a/src/icons-neo/alert-red.tsx b/src/icons-neo/alert-red.tsx index 86f41695..b4d16020 100644 --- a/src/icons-neo/alert-red.tsx +++ b/src/icons-neo/alert-red.tsx @@ -1,13 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const AlertRed = createASIcon('AlertRed', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "64", - "height": "64", - "fill": "none", - "viewBox": "0 0 64 64" -}, ); +const AlertRed = createASIcon( + "AlertRed", + { + xmlns: "http://www.w3.org/2000/svg", + width: "64", + height: "64", + fill: "none", + viewBox: "0 0 64 64", + }, + + + + + + + + + + + , +); export default AlertRed; diff --git a/src/icons-neo/alert-white.tsx b/src/icons-neo/alert-white.tsx index 4d13cdfe..a4b0c7b4 100644 --- a/src/icons-neo/alert-white.tsx +++ b/src/icons-neo/alert-white.tsx @@ -1,13 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const AlertWhite = createASIcon('AlertWhite', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "12", - "height": "12", - "fill": "none", - "viewBox": "0 0 12 12" -}, ); +const AlertWhite = createASIcon( + "AlertWhite", + { + xmlns: "http://www.w3.org/2000/svg", + width: "12", + height: "12", + fill: "none", + viewBox: "0 0 12 12", + }, + + + + + + + + + + + , +); export default AlertWhite; diff --git a/src/icons-neo/alert.tsx b/src/icons-neo/alert.tsx index 48b68dfe..ee5c86f8 100644 --- a/src/icons-neo/alert.tsx +++ b/src/icons-neo/alert.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const Alert = createASIcon('Alert', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "54", - "height": "46", - "fill": "red", - "viewBox": "0 0 54 46" -}, ); +const Alert = createASIcon( + "Alert", + { + xmlns: "http://www.w3.org/2000/svg", + width: "54", + height: "46", + fill: "red", + viewBox: "0 0 54 46", + }, + + + + , +); export default Alert; diff --git a/src/icons-neo/alertTriangle.tsx b/src/icons-neo/alertTriangle.tsx index c6b6dbe9..9a38557e 100644 --- a/src/icons-neo/alertTriangle.tsx +++ b/src/icons-neo/alertTriangle.tsx @@ -1,13 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const AlertTriangle = createASIcon('AlertTriangle', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "19", - "height": "18", - "fill": "none", - "viewBox": "0 0 19 18" -}, ); +const AlertTriangle = createASIcon( + "AlertTriangle", + { + xmlns: "http://www.w3.org/2000/svg", + width: "19", + height: "18", + fill: "none", + viewBox: "0 0 19 18", + }, + + + , +); export default AlertTriangle; diff --git a/src/icons-neo/apple.tsx b/src/icons-neo/apple.tsx index 5085e2ec..43711ef6 100644 --- a/src/icons-neo/apple.tsx +++ b/src/icons-neo/apple.tsx @@ -1,13 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const Apple = createASIcon('Apple', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "17", - "height": "20", - "fill": "none", - "viewBox": "0 0 17 20" -}, ); +const Apple = createASIcon( + "Apple", + { + xmlns: "http://www.w3.org/2000/svg", + width: "17", + height: "20", + fill: "none", + viewBox: "0 0 17 20", + }, + + + , +); export default Apple; diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx index 99e88a8c..f24074ad 100644 --- a/src/icons-neo/arrow-right.tsx +++ b/src/icons-neo/arrow-right.tsx @@ -1,13 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowRight = createASIcon('ArrowRight', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "18", - "fill": "none", - "viewBox": "0 0 18 18" -}, ); +const ArrowRight = createASIcon( + "ArrowRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "18", + height: "18", + fill: "none", + viewBox: "0 0 18 18", + }, + + + + + + + + + + + + + + + + + , +); export default ArrowRight; diff --git a/src/icons-neo/arrow_down.tsx b/src/icons-neo/arrow_down.tsx index 49ee8deb..f38805ee 100644 --- a/src/icons-neo/arrow_down.tsx +++ b/src/icons-neo/arrow_down.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowDown = createASIcon('ArrowDown', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, ); +const ArrowDown = createASIcon( + "ArrowDown", + { + xmlns: "http://www.w3.org/2000/svg", + width: "18", + height: "11", + fill: "none", + viewBox: "0 0 18 11", + }, + + + , +); export default ArrowDown; diff --git a/src/icons-neo/arrow_down_variant.tsx b/src/icons-neo/arrow_down_variant.tsx index b5e54aa0..fee6c15d 100644 --- a/src/icons-neo/arrow_down_variant.tsx +++ b/src/icons-neo/arrow_down_variant.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowDownVariant = createASIcon('ArrowDownVariant', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, ); +const ArrowDownVariant = createASIcon( + "ArrowDownVariant", + { + xmlns: "http://www.w3.org/2000/svg", + width: "18", + height: "11", + fill: "none", + viewBox: "0 0 18 11", + }, + + + , +); export default ArrowDownVariant; diff --git a/src/icons-neo/arrow_left.tsx b/src/icons-neo/arrow_left.tsx index c85d8490..8bfe1cf6 100644 --- a/src/icons-neo/arrow_left.tsx +++ b/src/icons-neo/arrow_left.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowLeft = createASIcon('ArrowLeft', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "10", - "height": "18", - "fill": "none", - "viewBox": "0 0 10 18" -}, ); +const ArrowLeft = createASIcon( + "ArrowLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "10", + height: "18", + fill: "none", + viewBox: "0 0 10 18", + }, + + + , +); export default ArrowLeft; diff --git a/src/icons-neo/arrow_right_ios.tsx b/src/icons-neo/arrow_right_ios.tsx index d25e91d8..fe9e98b5 100644 --- a/src/icons-neo/arrow_right_ios.tsx +++ b/src/icons-neo/arrow_right_ios.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowRightIos = createASIcon('ArrowRightIos', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "11", - "height": "18", - "fill": "none", - "viewBox": "0 0 11 18" -}, ); +const ArrowRightIos = createASIcon( + "ArrowRightIos", + { + xmlns: "http://www.w3.org/2000/svg", + width: "11", + height: "18", + fill: "none", + viewBox: "0 0 11 18", + }, + + + , +); export default ArrowRightIos; diff --git a/src/icons-neo/arrow_up.tsx b/src/icons-neo/arrow_up.tsx index 641c0e7a..a4a5694d 100644 --- a/src/icons-neo/arrow_up.tsx +++ b/src/icons-neo/arrow_up.tsx @@ -1,13 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; -import createASIcon from '../createASIcon'; -import React from 'react'; - -const ArrowUp = createASIcon('ArrowUp', { - "xmlns": "http://www.w3.org/2000/svg", - "width": "18", - "height": "11", - "fill": "none", - "viewBox": "0 0 18 11" -}, ); +const ArrowUp = createASIcon( + "ArrowUp", + { + xmlns: "http://www.w3.org/2000/svg", + width: "18", + height: "11", + fill: "none", + viewBox: "0 0 18 11", + }, + + + , +); export default ArrowUp; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts new file mode 100644 index 00000000..d54982b0 --- /dev/null +++ b/src/icons-neo/index.ts @@ -0,0 +1,14 @@ +export { default as AdjustProfile } from './adjust_profile'; +export { default as AlertCircle } from './alert-circle'; +export { default as AlertRed } from './alert-red'; +export { default as AlertWhite } from './alert-white'; +export { default as Alert } from './alert'; +export { default as AlertTriangle } from './alertTriangle'; +export { default as Apple } from './apple'; +export { default as ArrowRight } from './arrow-right'; +export { default as ArrowDown } from './arrow_down'; +export { default as ArrowDownVariant } from './arrow_down_variant'; +export { default as ArrowLeft } from './arrow_left'; +export { default as ArrowRightIos } from './arrow_right_ios'; +export { default as ArrowUp } from './arrow_up'; + From 034e703f6f1570fed3f8a03776f8a8270d47a55b Mon Sep 17 00:00:00 2001 From: booi-dev Date: Wed, 29 May 2024 13:05:13 +0530 Subject: [PATCH 08/34] fix: run all script --- .DS_Store | Bin 8196 -> 8196 bytes icons-nodes/adjust_profile.node.json | 18 - icons-nodes/alert-circle.node.json | 15 - icons-nodes/alert-red.node.json | 19 - icons-nodes/alert-white.node.json | 18 - icons-nodes/alert.node.json | 20 - icons-nodes/alertTriangle.node.json | 11 - icons-nodes/apple.node.json | 10 - icons-nodes/arrow-right.node.json | 15 - icons-nodes/arrow_down.node.json | 14 - icons-nodes/arrow_down_variant.node.json | 14 - icons-nodes/arrow_left.node.json | 14 - icons-nodes/arrow_right_ios.node.json | 14 - icons-nodes/arrow_up.node.json | 14 - icons-nodes/index.ts | 46 - icons-objs/adjust_profile.new.json | 148 - icons-objs/adjust_profile.obj.json | 152 - icons-objs/alert-circle.new.json | 91 - icons-objs/alert-circle.obj.json | 95 - icons-objs/alert-red.new.json | 79 - icons-objs/alert-red.obj.json | 83 - icons-objs/alert-white.new.json | 77 - icons-objs/alert-white.obj.json | 81 - icons-objs/alert.new.json | 34 - icons-objs/alert.obj.json | 38 - icons-objs/alertTriangle.new.json | 21 - icons-objs/alertTriangle.obj.json | 25 - icons-objs/apple.new.json | 20 - icons-objs/apple.obj.json | 24 - icons-objs/arrow-right.new.json | 123 - icons-objs/arrow-right.obj.json | 127 - icons-objs/arrow_down.new.json | 24 - icons-objs/arrow_down.obj.json | 28 - icons-objs/arrow_down_variant.new.json | 24 - icons-objs/arrow_down_variant.obj.json | 28 - icons-objs/arrow_left.new.json | 24 - icons-objs/arrow_left.obj.json | 28 - icons-objs/arrow_right_ios.new.json | 24 - icons-objs/arrow_right_ios.obj.json | 28 - icons-objs/arrow_up.new.json | 24 - icons-objs/arrow_up.obj.json | 28 - icons-objs/text.svg | 2 - icons/CrownBig.svg | 18 + icons/adjust_profile.svg | 28 - icons/alert-circle.svg | 28 - icons/alert-red.svg | 23 - icons/alert-white.svg | 22 - icons/alert.svg | 16 - icons/alertTriangle.svg | 13 - icons/apple.svg | 12 - icons/arrow-right.svg | 29 - icons/arrow_down.svg | 16 - icons/arrow_down_variant.svg | 16 - icons/arrow_left.svg | 16 - icons/arrow_right_ios.svg | 16 - icons/arrow_up.svg | 16 - icons/cancel.svg | 9 + icons/cartIcon.svg | 19 + icons/celebrate.svg | 26 + icons/check.svg | 9 + icons/clear.svg | 17 + icons/co-catUpload.svg | 39 + icons/color_palette.svg | 12 + icons/confetti.svg | 25 + icons/copy.svg | 10 + icons/copyIcon.svg | 17 + icons/copyReferral.svg | 18 + icons/coupon.svg | 25 + icons/createProfile.svg | 20 + icons/crown.svg | 22 + icons/crowon.svg | 16 + icons/cup.svg | 32 + icons/curveArrow.svg | 12 + icons/custom-profile.svg | 19 + icons/dollar.svg | 10 + icons/drawer.svg | 20 + package.json | 9 +- pnpm-lock.yaml | 12153 -------------------- scripts/buildIcons.mjs | 21 +- scripts/exportStoryTemplate.mjs | 60 + scripts/generateIcons.mjs | 22 - scripts/generateStories.mjs | 25 + scripts/processSvg.mjs | 43 +- scripts/removeDir.mjs | 15 + scripts/writeSvgChildren.mjs | 56 +- src/Icon.ts | 14 +- src/components/WithBg.tsx | 36 + src/constant.ts | 4 + src/defaultAttributes.ts | 6 +- src/icons-neo/CrownBig.tsx | 29 + src/icons-neo/cancel.tsx | 21 + src/icons-neo/cartIcon.tsx | 28 + src/icons-neo/celebrate.tsx | 35 + src/icons-neo/check.tsx | 18 + src/icons-neo/clear.tsx | 26 + src/icons-neo/co-catUpload.tsx | 48 + src/icons-neo/color_palette.tsx | 22 + src/icons-neo/confetti.tsx | 34 + src/icons-neo/copy.tsx | 25 + src/icons-neo/copyIcon.tsx | 26 + src/icons-neo/copyReferral.tsx | 34 + src/icons-neo/coupon.tsx | 34 + src/icons-neo/createProfile.tsx | 29 + src/icons-neo/crown.tsx | 38 + src/icons-neo/crowon.tsx | 25 + src/icons-neo/cup.tsx | 42 + src/icons-neo/curveArrow.tsx | 22 + src/icons-neo/custom-profile.tsx | 33 + src/icons-neo/dollar.tsx | 22 + src/icons-neo/drawer.tsx | 29 + src/icons-neo/index.ts | 34 +- src/stories-neo/Cancel.stories.tsx | 54 + src/stories-neo/CartIcon.stories.tsx | 54 + src/stories-neo/Celebrate.stories.tsx | 54 + src/stories-neo/Check.stories.tsx | 54 + src/stories-neo/Clear.stories.tsx | 54 + src/stories-neo/CoCatUpload.stories.tsx | 54 + src/stories-neo/ColorPalette.stories.tsx | 54 + src/stories-neo/Confetti.stories.tsx | 54 + src/stories-neo/Copy.stories.tsx | 54 + src/stories-neo/CopyIcon.stories.tsx | 54 + src/stories-neo/CopyReferral.stories.tsx | 54 + src/stories-neo/Coupon.stories.tsx | 54 + src/stories-neo/CreateProfile.stories.tsx | 54 + src/stories-neo/Crown.stories.tsx | 54 + src/stories-neo/CrownBig.stories.tsx | 54 + src/stories-neo/Crowon.stories.tsx | 54 + src/stories-neo/Cup.stories.tsx | 54 + src/stories-neo/CurveArrow.stories.tsx | 54 + src/stories-neo/CustomProfile.stories.tsx | 54 + src/stories-neo/Dollar.stories.tsx | 54 + src/stories-neo/Drawer.stories.tsx | 54 + src/styles/tailwind.css | 35 +- svg-children/CrownBig.svg | 1 + svg-children/adjust_profile.svg | 1 - svg-children/alert-circle.svg | 1 - svg-children/alert-red.svg | 1 - svg-children/alert-white.svg | 1 - svg-children/alert.svg | 1 - svg-children/alertTriangle.svg | 1 - svg-children/apple.svg | 1 - svg-children/arrow-right.svg | 1 - svg-children/arrow_down.svg | 1 - svg-children/arrow_down_variant.svg | 1 - svg-children/arrow_left.svg | 1 - svg-children/arrow_right_ios.svg | 1 - svg-children/arrow_up.svg | 1 - svg-children/cancel.svg | 1 + svg-children/cartIcon.svg | 1 + svg-children/celebrate.svg | 1 + svg-children/check.svg | 1 + svg-children/clear.svg | 1 + svg-children/co-catUpload.svg | 1 + svg-children/color_palette.svg | 1 + svg-children/confetti.svg | 1 + svg-children/copy.svg | 1 + svg-children/copyIcon.svg | 1 + svg-children/copyReferral.svg | 1 + svg-children/coupon.svg | 1 + svg-children/createProfile.svg | 1 + svg-children/crown.svg | 1 + svg-children/crowon.svg | 1 + svg-children/cup.svg | 1 + svg-children/curveArrow.svg | 1 + svg-children/custom-profile.svg | 1 + svg-children/dollar.svg | 1 + svg-children/drawer.svg | 1 + yarn-error.log | 172 +- 168 files changed, 2599 insertions(+), 14262 deletions(-) delete mode 100644 icons-nodes/adjust_profile.node.json delete mode 100644 icons-nodes/alert-circle.node.json delete mode 100644 icons-nodes/alert-red.node.json delete mode 100644 icons-nodes/alert-white.node.json delete mode 100644 icons-nodes/alert.node.json delete mode 100644 icons-nodes/alertTriangle.node.json delete mode 100644 icons-nodes/apple.node.json delete mode 100644 icons-nodes/arrow-right.node.json delete mode 100644 icons-nodes/arrow_down.node.json delete mode 100644 icons-nodes/arrow_down_variant.node.json delete mode 100644 icons-nodes/arrow_left.node.json delete mode 100644 icons-nodes/arrow_right_ios.node.json delete mode 100644 icons-nodes/arrow_up.node.json delete mode 100644 icons-nodes/index.ts delete mode 100644 icons-objs/adjust_profile.new.json delete mode 100644 icons-objs/adjust_profile.obj.json delete mode 100644 icons-objs/alert-circle.new.json delete mode 100644 icons-objs/alert-circle.obj.json delete mode 100644 icons-objs/alert-red.new.json delete mode 100644 icons-objs/alert-red.obj.json delete mode 100644 icons-objs/alert-white.new.json delete mode 100644 icons-objs/alert-white.obj.json delete mode 100644 icons-objs/alert.new.json delete mode 100644 icons-objs/alert.obj.json delete mode 100644 icons-objs/alertTriangle.new.json delete mode 100644 icons-objs/alertTriangle.obj.json delete mode 100644 icons-objs/apple.new.json delete mode 100644 icons-objs/apple.obj.json delete mode 100644 icons-objs/arrow-right.new.json delete mode 100644 icons-objs/arrow-right.obj.json delete mode 100644 icons-objs/arrow_down.new.json delete mode 100644 icons-objs/arrow_down.obj.json delete mode 100644 icons-objs/arrow_down_variant.new.json delete mode 100644 icons-objs/arrow_down_variant.obj.json delete mode 100644 icons-objs/arrow_left.new.json delete mode 100644 icons-objs/arrow_left.obj.json delete mode 100644 icons-objs/arrow_right_ios.new.json delete mode 100644 icons-objs/arrow_right_ios.obj.json delete mode 100644 icons-objs/arrow_up.new.json delete mode 100644 icons-objs/arrow_up.obj.json delete mode 100644 icons-objs/text.svg create mode 100644 icons/CrownBig.svg delete mode 100644 icons/adjust_profile.svg delete mode 100644 icons/alert-circle.svg delete mode 100644 icons/alert-red.svg delete mode 100644 icons/alert-white.svg delete mode 100644 icons/alert.svg delete mode 100644 icons/alertTriangle.svg delete mode 100644 icons/apple.svg delete mode 100644 icons/arrow-right.svg delete mode 100644 icons/arrow_down.svg delete mode 100644 icons/arrow_down_variant.svg delete mode 100644 icons/arrow_left.svg delete mode 100644 icons/arrow_right_ios.svg delete mode 100644 icons/arrow_up.svg create mode 100644 icons/cancel.svg create mode 100644 icons/cartIcon.svg create mode 100644 icons/celebrate.svg create mode 100644 icons/check.svg create mode 100644 icons/clear.svg create mode 100644 icons/co-catUpload.svg create mode 100644 icons/color_palette.svg create mode 100644 icons/confetti.svg create mode 100644 icons/copy.svg create mode 100644 icons/copyIcon.svg create mode 100644 icons/copyReferral.svg create mode 100644 icons/coupon.svg create mode 100644 icons/createProfile.svg create mode 100644 icons/crown.svg create mode 100644 icons/crowon.svg create mode 100644 icons/cup.svg create mode 100644 icons/curveArrow.svg create mode 100644 icons/custom-profile.svg create mode 100644 icons/dollar.svg create mode 100644 icons/drawer.svg delete mode 100644 pnpm-lock.yaml create mode 100644 scripts/exportStoryTemplate.mjs delete mode 100644 scripts/generateIcons.mjs create mode 100644 scripts/generateStories.mjs create mode 100644 scripts/removeDir.mjs create mode 100644 src/components/WithBg.tsx create mode 100644 src/icons-neo/CrownBig.tsx create mode 100644 src/icons-neo/cancel.tsx create mode 100644 src/icons-neo/cartIcon.tsx create mode 100644 src/icons-neo/celebrate.tsx create mode 100644 src/icons-neo/check.tsx create mode 100644 src/icons-neo/clear.tsx create mode 100644 src/icons-neo/co-catUpload.tsx create mode 100644 src/icons-neo/color_palette.tsx create mode 100644 src/icons-neo/confetti.tsx create mode 100644 src/icons-neo/copy.tsx create mode 100644 src/icons-neo/copyIcon.tsx create mode 100644 src/icons-neo/copyReferral.tsx create mode 100644 src/icons-neo/coupon.tsx create mode 100644 src/icons-neo/createProfile.tsx create mode 100644 src/icons-neo/crown.tsx create mode 100644 src/icons-neo/crowon.tsx create mode 100644 src/icons-neo/cup.tsx create mode 100644 src/icons-neo/curveArrow.tsx create mode 100644 src/icons-neo/custom-profile.tsx create mode 100644 src/icons-neo/dollar.tsx create mode 100644 src/icons-neo/drawer.tsx create mode 100644 src/stories-neo/Cancel.stories.tsx create mode 100644 src/stories-neo/CartIcon.stories.tsx create mode 100644 src/stories-neo/Celebrate.stories.tsx create mode 100644 src/stories-neo/Check.stories.tsx create mode 100644 src/stories-neo/Clear.stories.tsx create mode 100644 src/stories-neo/CoCatUpload.stories.tsx create mode 100644 src/stories-neo/ColorPalette.stories.tsx create mode 100644 src/stories-neo/Confetti.stories.tsx create mode 100644 src/stories-neo/Copy.stories.tsx create mode 100644 src/stories-neo/CopyIcon.stories.tsx create mode 100644 src/stories-neo/CopyReferral.stories.tsx create mode 100644 src/stories-neo/Coupon.stories.tsx create mode 100644 src/stories-neo/CreateProfile.stories.tsx create mode 100644 src/stories-neo/Crown.stories.tsx create mode 100644 src/stories-neo/CrownBig.stories.tsx create mode 100644 src/stories-neo/Crowon.stories.tsx create mode 100644 src/stories-neo/Cup.stories.tsx create mode 100644 src/stories-neo/CurveArrow.stories.tsx create mode 100644 src/stories-neo/CustomProfile.stories.tsx create mode 100644 src/stories-neo/Dollar.stories.tsx create mode 100644 src/stories-neo/Drawer.stories.tsx create mode 100644 svg-children/CrownBig.svg delete mode 100644 svg-children/adjust_profile.svg delete mode 100644 svg-children/alert-circle.svg delete mode 100644 svg-children/alert-red.svg delete mode 100644 svg-children/alert-white.svg delete mode 100644 svg-children/alert.svg delete mode 100644 svg-children/alertTriangle.svg delete mode 100644 svg-children/apple.svg delete mode 100644 svg-children/arrow-right.svg delete mode 100644 svg-children/arrow_down.svg delete mode 100644 svg-children/arrow_down_variant.svg delete mode 100644 svg-children/arrow_left.svg delete mode 100644 svg-children/arrow_right_ios.svg delete mode 100644 svg-children/arrow_up.svg create mode 100644 svg-children/cancel.svg create mode 100644 svg-children/cartIcon.svg create mode 100644 svg-children/celebrate.svg create mode 100644 svg-children/check.svg create mode 100644 svg-children/clear.svg create mode 100644 svg-children/co-catUpload.svg create mode 100644 svg-children/color_palette.svg create mode 100644 svg-children/confetti.svg create mode 100644 svg-children/copy.svg create mode 100644 svg-children/copyIcon.svg create mode 100644 svg-children/copyReferral.svg create mode 100644 svg-children/coupon.svg create mode 100644 svg-children/createProfile.svg create mode 100644 svg-children/crown.svg create mode 100644 svg-children/crowon.svg create mode 100644 svg-children/cup.svg create mode 100644 svg-children/curveArrow.svg create mode 100644 svg-children/custom-profile.svg create mode 100644 svg-children/dollar.svg create mode 100644 svg-children/drawer.svg diff --git a/.DS_Store b/.DS_Store index 96ba1f4f9f8e9f37a7fbddce6e76ff9faa0d3a7a..fd80e26f3429662c02429053c8e7d57aacc575db 100644 GIT binary patch delta 40 wcmZp1XmOa}gHU^hRb@@5`^=S-Vrg`hril&e035~+761SM delta 50 zcmZp1XmOa}C7U^hRb%4Qyc=S - \ No newline at end of file diff --git a/icons/CrownBig.svg b/icons/CrownBig.svg new file mode 100644 index 00000000..336a58c7 --- /dev/null +++ b/icons/CrownBig.svg @@ -0,0 +1,18 @@ + + + + diff --git a/icons/adjust_profile.svg b/icons/adjust_profile.svg deleted file mode 100644 index 9706f8c6..00000000 --- a/icons/adjust_profile.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg deleted file mode 100644 index efac32c9..00000000 --- a/icons/alert-circle.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - diff --git a/icons/alert-red.svg b/icons/alert-red.svg deleted file mode 100644 index fd5edfce..00000000 --- a/icons/alert-red.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - diff --git a/icons/alert-white.svg b/icons/alert-white.svg deleted file mode 100644 index ba038e40..00000000 --- a/icons/alert-white.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/icons/alert.svg b/icons/alert.svg deleted file mode 100644 index eb675e81..00000000 --- a/icons/alert.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - diff --git a/icons/alertTriangle.svg b/icons/alertTriangle.svg deleted file mode 100644 index 8bf5ddba..00000000 --- a/icons/alertTriangle.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/icons/apple.svg b/icons/apple.svg deleted file mode 100644 index 5aa30c14..00000000 --- a/icons/apple.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg deleted file mode 100644 index 0312dd6f..00000000 --- a/icons/arrow-right.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/icons/arrow_down.svg b/icons/arrow_down.svg deleted file mode 100644 index 99b4ee4a..00000000 --- a/icons/arrow_down.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - diff --git a/icons/arrow_down_variant.svg b/icons/arrow_down_variant.svg deleted file mode 100644 index 99b4ee4a..00000000 --- a/icons/arrow_down_variant.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - diff --git a/icons/arrow_left.svg b/icons/arrow_left.svg deleted file mode 100644 index 475620f1..00000000 --- a/icons/arrow_left.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - diff --git a/icons/arrow_right_ios.svg b/icons/arrow_right_ios.svg deleted file mode 100644 index d5a0a69b..00000000 --- a/icons/arrow_right_ios.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - diff --git a/icons/arrow_up.svg b/icons/arrow_up.svg deleted file mode 100644 index 3a34e816..00000000 --- a/icons/arrow_up.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - diff --git a/icons/cancel.svg b/icons/cancel.svg new file mode 100644 index 00000000..776afe12 --- /dev/null +++ b/icons/cancel.svg @@ -0,0 +1,9 @@ + + + diff --git a/icons/cartIcon.svg b/icons/cartIcon.svg new file mode 100644 index 00000000..8971f0c8 --- /dev/null +++ b/icons/cartIcon.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons/celebrate.svg b/icons/celebrate.svg new file mode 100644 index 00000000..84317483 --- /dev/null +++ b/icons/celebrate.svg @@ -0,0 +1,26 @@ + + + + + + + + + diff --git a/icons/check.svg b/icons/check.svg new file mode 100644 index 00000000..2e7f188b --- /dev/null +++ b/icons/check.svg @@ -0,0 +1,9 @@ + + + diff --git a/icons/clear.svg b/icons/clear.svg new file mode 100644 index 00000000..0e095cd1 --- /dev/null +++ b/icons/clear.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons/co-catUpload.svg b/icons/co-catUpload.svg new file mode 100644 index 00000000..ab041dd8 --- /dev/null +++ b/icons/co-catUpload.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons/color_palette.svg b/icons/color_palette.svg new file mode 100644 index 00000000..235c86b7 --- /dev/null +++ b/icons/color_palette.svg @@ -0,0 +1,12 @@ + + + diff --git a/icons/confetti.svg b/icons/confetti.svg new file mode 100644 index 00000000..191dfa99 --- /dev/null +++ b/icons/confetti.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons/copy.svg b/icons/copy.svg new file mode 100644 index 00000000..ff287622 --- /dev/null +++ b/icons/copy.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons/copyIcon.svg b/icons/copyIcon.svg new file mode 100644 index 00000000..3d531127 --- /dev/null +++ b/icons/copyIcon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons/copyReferral.svg b/icons/copyReferral.svg new file mode 100644 index 00000000..e916d79f --- /dev/null +++ b/icons/copyReferral.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons/coupon.svg b/icons/coupon.svg new file mode 100644 index 00000000..cff89970 --- /dev/null +++ b/icons/coupon.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/icons/createProfile.svg b/icons/createProfile.svg new file mode 100644 index 00000000..4d10bf09 --- /dev/null +++ b/icons/createProfile.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/icons/crown.svg b/icons/crown.svg new file mode 100644 index 00000000..9976905e --- /dev/null +++ b/icons/crown.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/icons/crowon.svg b/icons/crowon.svg new file mode 100644 index 00000000..ec1d003a --- /dev/null +++ b/icons/crowon.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons/cup.svg b/icons/cup.svg new file mode 100644 index 00000000..23552324 --- /dev/null +++ b/icons/cup.svg @@ -0,0 +1,32 @@ + + + + + + + + + diff --git a/icons/curveArrow.svg b/icons/curveArrow.svg new file mode 100644 index 00000000..996657e7 --- /dev/null +++ b/icons/curveArrow.svg @@ -0,0 +1,12 @@ + + + diff --git a/icons/custom-profile.svg b/icons/custom-profile.svg new file mode 100644 index 00000000..4fafc079 --- /dev/null +++ b/icons/custom-profile.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons/dollar.svg b/icons/dollar.svg new file mode 100644 index 00000000..13d476de --- /dev/null +++ b/icons/dollar.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons/drawer.svg b/icons/drawer.svg new file mode 100644 index 00000000..d80ad08a --- /dev/null +++ b/icons/drawer.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/package.json b/package.json index 205d61ba..722f36f6 100644 --- a/package.json +++ b/package.json @@ -12,11 +12,10 @@ "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "o:svgs": "node ./scripts/optimizeSvgs.mjs", - "gen:svgs": "node ./scripts/generateIcons.mjs", - "gen:nodes": "node ./scripts/writeIconNodes.mjs", - "gen:objs": "node ./scripts/writeSvgObjs.mjs", - "gen:cobjs": "node ./scripts/writeSvgChildren.mjs", + "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs --exportFileName index.ts", + "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", + "gen:unicons": "npm-run-all -s o:svgs gen:childsvgs build:icons remove:dir", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", @@ -36,7 +35,6 @@ "@storybook/addon-essentials": "^7.6.7", "@storybook/addon-interactions": "^7.6.7", "@storybook/addon-links": "^7.6.7", - "@storybook/addon-onboarding": "^1.0.10", "@storybook/addon-postcss": "^2.0.0", "@storybook/addon-styling-webpack": "^0.0.6", "@storybook/blocks": "^7.6.7", @@ -51,6 +49,7 @@ "chromatic": "^10.6.1", "css-loader": "^6.7.3", "husky": "^8.0.2", + "npm-run-all": "^4.1.5", "postcss": "^8.4.38", "prettier": "^3.2.5", "react": "^18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml deleted file mode 100644 index dc3d49bd..00000000 --- a/pnpm-lock.yaml +++ /dev/null @@ -1,12153 +0,0 @@ -lockfileVersion: '9.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -importers: - - .: - dependencies: - '@changesets/cli': - specifier: ^2.27.1 - version: 2.27.1 - clsx: - specifier: ^2.1.0 - version: 2.1.0 - concurrently: - specifier: ^8.2.2 - version: 8.2.2 - minimist: - specifier: ^1.2.8 - version: 1.2.8 - rollup: - specifier: ^4.9.6 - version: 4.9.6 - svgson: - specifier: ^5.3.1 - version: 5.3.1 - tailwind-merge: - specifier: ^2.2.1 - version: 2.2.1 - tinycolor2: - specifier: ^1.6.0 - version: 1.6.0 - tsup: - specifier: ^8.0.1 - version: 8.0.1(@swc/core@1.3.103)(postcss@8.4.38)(typescript@4.9.5) - devDependencies: - '@storybook/addon-essentials': - specifier: ^7.6.7 - version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-interactions': - specifier: ^7.6.7 - version: 7.6.8 - '@storybook/addon-links': - specifier: ^7.6.7 - version: 7.6.8(react@18.2.0) - '@storybook/addon-onboarding': - specifier: ^1.0.10 - version: 1.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-postcss': - specifier: ^2.0.0 - version: 2.0.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - '@storybook/addon-styling-webpack': - specifier: ^0.0.6 - version: 0.0.6(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - '@storybook/blocks': - specifier: ^7.6.7 - version: 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/cli': - specifier: ^7.6.7 - version: 7.6.8 - '@storybook/react': - specifier: ^7.6.8 - version: 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) - '@storybook/react-webpack5': - specifier: ^7.6.7 - version: 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0) - '@storybook/test': - specifier: ^7.6.7 - version: 7.6.8 - '@types/react': - specifier: ^18.0.26 - version: 18.2.48 - '@types/react-dom': - specifier: ^18.0.10 - version: 18.2.18 - autoprefixer: - specifier: ^10.4.17 - version: 10.4.17(postcss@8.4.38) - babel-loader: - specifier: ^9.1.0 - version: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - chromatic: - specifier: ^10.6.1 - version: 10.6.1 - css-loader: - specifier: ^6.7.3 - version: 6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - husky: - specifier: ^8.0.2 - version: 8.0.3 - postcss: - specifier: ^8.4.38 - version: 8.4.38 - prettier: - specifier: ^3.2.5 - version: 3.2.5 - react: - specifier: ^18.2.0 - version: 18.2.0 - react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) - storybook: - specifier: ^7.6.7 - version: 7.6.8 - svgo: - specifier: ^3.3.2 - version: 3.3.2 - tailwindcss: - specifier: ^3.4.1 - version: 3.4.1 - typescript: - specifier: ^4.9.4 - version: 4.9.5 - webpack: - specifier: ^5.75.0 - version: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - -packages: - - '@adobe/css-tools@4.3.2': - resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==} - - '@alloc/quick-lru@5.2.0': - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: '>=10'} - - '@ampproject/remapping@2.2.1': - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} - - '@aw-web-design/x-default-browser@1.4.126': - resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} - hasBin: true - - '@babel/code-frame@7.23.5': - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.23.5': - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.23.7': - resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.23.6': - resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@7.22.5': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.23.6': - resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-create-class-features-plugin@7.23.7': - resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-regexp-features-plugin@7.22.15': - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@0.4.4': - resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - '@babel/helper-environment-visitor@7.22.20': - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.23.0': - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.22.5': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@7.23.0': - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.22.15': - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@7.23.3': - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@7.22.5': - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-remap-async-to-generator@7.22.20': - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@7.22.20': - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-simple-access@7.22.5': - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.22.6': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.23.4': - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@7.23.5': - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-wrap-function@7.22.20': - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.23.8': - resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.23.4': - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.23.6': - resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7': - resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-async-generators@7.8.4': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-properties@7.12.13': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-static-block@7.14.5': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-dynamic-import@7.8.3': - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-namespace-from@7.8.3': - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-flow@7.23.3': - resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@7.23.3': - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@7.23.3': - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-meta@7.10.4': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-json-strings@7.8.3': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@7.23.3': - resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@7.23.3': - resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@7.23.3': - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.23.7': - resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.23.3': - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.23.3': - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.23.4': - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.23.3': - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.23.4': - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.23.8': - resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.23.3': - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.23.3': - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.23.3': - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.23.3': - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dynamic-import@7.23.4': - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.23.3': - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.23.4': - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-flow-strip-types@7.23.3': - resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.23.6': - resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.23.3': - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.23.4': - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.23.3': - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.23.4': - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.23.3': - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.23.3': - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.23.3': - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.23.3': - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.23.3': - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.23.3': - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4': - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.23.4': - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.23.4': - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.23.3': - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.23.4': - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.23.4': - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.23.3': - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.23.3': - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.23.4': - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.23.3': - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-display-name@7.23.3': - resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-development@7.22.5': - resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.23.4': - resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-pure-annotations@7.23.3': - resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.23.3': - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-reserved-words@7.23.3': - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.23.3': - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.23.3': - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.23.3': - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.23.3': - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.23.3': - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@7.23.6': - resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.23.3': - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.23.3': - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.23.3': - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.23.3': - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/preset-env@7.23.8': - resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-flow@7.23.3': - resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/preset-react@7.23.3': - resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-typescript@7.23.3': - resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/register@7.23.7': - resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - - '@babel/runtime@7.23.8': - resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.22.15': - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.23.7': - resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.23.6': - resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} - engines: {node: '>=6.9.0'} - - '@base2/pretty-print-object@1.0.1': - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - - '@changesets/apply-release-plan@7.0.0': - resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} - - '@changesets/assemble-release-plan@6.0.0': - resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} - - '@changesets/changelog-git@0.2.0': - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - - '@changesets/cli@2.27.1': - resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} - hasBin: true - - '@changesets/config@3.0.0': - resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} - - '@changesets/errors@0.2.0': - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - - '@changesets/get-dependents-graph@2.0.0': - resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} - - '@changesets/get-release-plan@4.0.0': - resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} - - '@changesets/get-version-range-type@0.4.0': - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} - - '@changesets/parse@0.4.0': - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - - '@changesets/types@4.1.0': - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - - '@changesets/types@6.0.0': - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - - '@changesets/write@0.3.0': - resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} - - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} - - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' - - '@esbuild/aix-ppc64@0.19.11': - resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - - '@esbuild/android-arm64@0.18.20': - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm64@0.19.11': - resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.18.20': - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-arm@0.19.11': - resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.18.20': - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/android-x64@0.19.11': - resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.18.20': - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-arm64@0.19.11': - resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.18.20': - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/darwin-x64@0.19.11': - resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.18.20': - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-arm64@0.19.11': - resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.18.20': - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.19.11': - resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.18.20': - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm64@0.19.11': - resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.18.20': - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-arm@0.19.11': - resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.18.20': - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-ia32@0.19.11': - resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.18.20': - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-loong64@0.19.11': - resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.18.20': - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-mips64el@0.19.11': - resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.18.20': - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-ppc64@0.19.11': - resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.18.20': - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-riscv64@0.19.11': - resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.18.20': - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-s390x@0.19.11': - resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.18.20': - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/linux-x64@0.19.11': - resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-x64@0.18.20': - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/netbsd-x64@0.19.11': - resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-x64@0.18.20': - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/openbsd-x64@0.19.11': - resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.18.20': - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/sunos-x64@0.19.11': - resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.18.20': - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-arm64@0.19.11': - resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.18.20': - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-ia32@0.19.11': - resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.18.20': - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@esbuild/win32-x64@0.19.11': - resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@fal-works/esbuild-plugin-global-externals@2.1.2': - resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - - '@floating-ui/core@1.5.3': - resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==} - - '@floating-ui/dom@1.5.4': - resolution: {integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==} - - '@floating-ui/react-dom@2.0.5': - resolution: {integrity: sha512-UsBK30Bg+s6+nsgblXtZmwHhgS2vmbuQK22qgt2pTQM6M3X6H1+cQcLXqgRY3ihVLcZJE6IvqDQozhsnIVqK/Q==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@floating-ui/utils@0.2.1': - resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@istanbuljs/load-nyc-config@1.1.0': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/transform@29.7.0': - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/types@27.5.1': - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jridgewell/gen-mapping@0.3.3': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.1': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.1.2': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@0.3.5': - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} - - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - - '@jridgewell/trace-mapping@0.3.21': - resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==} - - '@juggle/resize-observer@3.4.0': - resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} - - '@manypkg/find-root@1.1.0': - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - - '@manypkg/get-packages@1.1.3': - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - - '@mdx-js/react@2.3.0': - resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} - peerDependencies: - react: '>=16' - - '@ndelangen/get-tarball@3.0.9': - resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@pmmmwh/react-refresh-webpack-plugin@0.5.11': - resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - - '@radix-ui/number@1.0.1': - resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} - - '@radix-ui/primitive@1.0.1': - resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} - - '@radix-ui/react-arrow@1.0.3': - resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-collection@1.0.3': - resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-compose-refs@1.0.1': - resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-context@1.0.1': - resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-direction@1.0.1': - resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-dismissable-layer@1.0.4': - resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-focus-guards@1.0.1': - resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-focus-scope@1.0.3': - resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-id@1.0.1': - resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-popper@1.1.2': - resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-portal@1.0.3': - resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-primitive@1.0.3': - resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-roving-focus@1.0.4': - resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-select@1.2.2': - resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-separator@1.0.3': - resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-slot@1.0.2': - resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-toggle-group@1.0.4': - resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-toggle@1.0.3': - resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-toolbar@1.0.4': - resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-use-callback-ref@1.0.1': - resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-controllable-state@1.0.1': - resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-escape-keydown@1.0.3': - resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-layout-effect@1.0.1': - resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-previous@1.0.1': - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-rect@1.0.1': - resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-size@1.0.1': - resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-visually-hidden@1.0.3': - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/rect@1.0.1': - resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} - - '@rollup/rollup-android-arm-eabi@4.9.6': - resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.9.6': - resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.9.6': - resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.9.6': - resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-linux-arm-gnueabihf@4.9.6': - resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.9.6': - resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.9.6': - resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.9.6': - resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.9.6': - resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.9.6': - resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.9.6': - resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.9.6': - resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.9.6': - resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==} - cpu: [x64] - os: [win32] - - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - - '@storybook/addon-actions@7.6.8': - resolution: {integrity: sha512-/KQlr/nLsAazJuSVUoMjQdwAeeXkKEtElKdqXrqI1LVOi5a7kMgB+bmn9aKX+7VBQLfQ36Btyty+FaY7bRtehQ==} - - '@storybook/addon-backgrounds@7.6.8': - resolution: {integrity: sha512-b+Oj41z2W/Pv6oCXmcjGdNkOStbVItrlDoIeUGyDKrngzH9Kpv5u2XZTHkZWGWusLhOVq8ENBDqj6ENRL6kDtw==} - - '@storybook/addon-controls@7.6.8': - resolution: {integrity: sha512-vjBwO1KbjB3l74qOVvLvks4LJjAIStr2n4j7Grdhqf2eeQvj122gT51dXstndtMNFqNHD4y3eImwNAbuaYrrnw==} - - '@storybook/addon-docs@7.6.8': - resolution: {integrity: sha512-vl7jNKT8x8Hnwn38l5cUr6TQZFCmx09VxarGUrMEO4mwTOoVRL2ofoh9JKFXhCiCHlMI9R0lnupGB/LAplWgPg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/addon-essentials@7.6.8': - resolution: {integrity: sha512-UoRZWPkDYL/UWsfAJk4q4nn5nayYdOvPApVsF/ZDnGsiv1zB2RpqbkiD1bfxPlGEVCoB+NQIN2s867gEpf+DjA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/addon-highlight@7.6.8': - resolution: {integrity: sha512-3mUfdLxaegCKWSm0i245RhnmEgkE+uLnOkE7h2kiztrWGqYuzGBKjgfZuVrftqsEWWc7LlJ1xdDZsIgs5Z06gA==} - - '@storybook/addon-interactions@7.6.8': - resolution: {integrity: sha512-E1ZMrJ/4larCPW92AFuY71I9s8Ri+DEdwNtVnU/WV55NA+E9oRKt5/qOrJLcjQorViwh9KOHeeuc8kagA2hjnA==} - - '@storybook/addon-links@7.6.8': - resolution: {integrity: sha512-lw+xMvzfhyOR5I5792rGCf31OfVsiNG+uCc6CEewjKdC+e4GZDXzAkLIrLVUvbf6iUvHzERD63Y5nKz2bt5yZA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - react: - optional: true - - '@storybook/addon-measure@7.6.8': - resolution: {integrity: sha512-76ItcwATq3BRPEtGV5Apby3E+7tOn6d5dtNpBYBZOdjUsj6E+uFtdmfHrc1Bt1ersJ7hRDCgsHArqOGXeLuDrw==} - - '@storybook/addon-onboarding@1.0.10': - resolution: {integrity: sha512-tK7JjJYIpOM4LowBoIM/8ymYQ70qVRmu7pGqSOQ82AW15ob5u36HJ753y0hVH/KPj6k7J1aSgAEgVGXLmgwvKw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/addon-outline@7.6.8': - resolution: {integrity: sha512-eTHreyvxYLIPt5AbMyDO3CEgGClQFt+CtA/RgSjpyv9MgYXPsZp/h1ZHpYYhSPRYnRE4//YnPMuk7eLf4udaag==} - - '@storybook/addon-postcss@2.0.0': - resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==} - engines: {node: '>=10', yarn: ^1.17.0} - - '@storybook/addon-styling-webpack@0.0.6': - resolution: {integrity: sha512-JjM2FXFiHpjbJsp7nRUEMhYBRpK6ukBKsbtWzCrAGOfUgoElcGwPY8KhSKSnRknIhebonGK1bxalh3u8bGZ/dw==} - peerDependencies: - webpack: ^5.0.0 - - '@storybook/addon-toolbars@7.6.8': - resolution: {integrity: sha512-Akr9Pfw+AzQBRPVdo8yjcdS4IiOyEIBPVn/OAcbLi6a2zLYBdn99yKi21P0o03TJjNy32A254iAQQ7zyjIwEtA==} - - '@storybook/addon-viewport@7.6.8': - resolution: {integrity: sha512-9fvaTudqTA7HYygOWq8gnlmR5XLLjMgK4RoZqMP8OhzX0Vkkg72knPI8lyrnHwze/yMcR1e2lmbdLm55rPq6QA==} - - '@storybook/blocks@7.6.8': - resolution: {integrity: sha512-9cjwqj+VLmVHD8lU1xIGbZiu2xPQ3A+cAobmam045wvEB/wYhcrF0K0lBwHLqUWTcNdOzZy5uaoaCu/1G5AmDg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/builder-manager@7.6.8': - resolution: {integrity: sha512-4CZo1RHPlDJA7G+lJoVdi+/3/L1ERxVxtvwuGgk8CxVDt6vFNpoc7fEGryNv3GRzKN1/luNYNU1MTnCUSn0B2g==} - - '@storybook/builder-webpack5@7.6.8': - resolution: {integrity: sha512-g4gYcHrrV/8Xve4Q/DJfXk8Bxkq5cxzy7KIBkb8PK5h+MFUiS/xoZc5qXk/WuX256zj2JnZRV//2yf61OhNd6g==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/channels@7.6.8': - resolution: {integrity: sha512-aPgQcSjeyZDhAfr/slCphVfYGCihxuFCaCVlZuJA4uTaGEUkn+kPW2jP0yLtlSN33J79wFXsMLPQYwIS3aQ4Ew==} - - '@storybook/cli@7.6.8': - resolution: {integrity: sha512-Is8nkgsbIOu+Jk9Z7x5sgMPgGs9RTVDum3cz9eA4UspPiIBJsf7nGHAWOtc+mCIm6Z3eeNbT1YMOWxz9EuqboA==} - hasBin: true - - '@storybook/client-logger@7.6.8': - resolution: {integrity: sha512-WyK+RNSYk+sy0pxk8np1MnUXSWFdy54WqtT7u64vDFs9Jxfa1oMZ+Vl6XhaFQYR++tKC7VabLcI6vZ0pOoE9Jw==} - - '@storybook/codemod@7.6.8': - resolution: {integrity: sha512-3Gk+ZsD35DUgqbbRNdX547kzZK/ajIbgwynmR0FuPhZhhZuYI4+2eMNzdmI/Oe9Nov4R16senQuAZjw/Dc5LrA==} - - '@storybook/components@7.6.8': - resolution: {integrity: sha512-ghrQkws7F2s9xwdiQq2ezQoOozCiYF9g/vnh+qttd4UgKqXDWoILb8LJGKtS7C0u0vV/Ui59EYUyDIVBT6wHlw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/core-client@7.6.8': - resolution: {integrity: sha512-Avt0R0F9U+PEndPS23LHyIBxbwVCeF/VCIuIfD1eTYwE9nSLzvJXqlxARfFyhYV43LQcC5fIKjxfrsyUjM5vbQ==} - - '@storybook/core-common@7.6.8': - resolution: {integrity: sha512-TRbiv5AF2m88ixyh31yqn6FgWDYZO6e6IxbJolRvEKD4b9opfPJ5e1ocb/QPz9sBUmsrX59ghMjO8R6dDYzdwA==} - - '@storybook/core-events@7.6.8': - resolution: {integrity: sha512-c1onJHG71JKbU4hMZC31rVTSbcfhcXaB0ikGnb7rJzlUZ1YkWnb0wf0/ikQR0seDOpR3HS+WQ0M3FIpqANyETg==} - - '@storybook/core-server@7.6.8': - resolution: {integrity: sha512-/csAFNuAhF11f6D9neYNavmKPFK/ZxTskaktc4iDwBRgBM95kZ6DBFjg9ErRi5Q8Z/i92wk6qORkq4bkN/lI9w==} - - '@storybook/core-webpack@7.6.8': - resolution: {integrity: sha512-UOTW2WhKmB8baCLc1eRssmz11sBv+iDRyS2WFK+WONkiGy3pQrpxfq2OVXXMFYkSHGXqj/jSKfKXSmNQBbkyAQ==} - - '@storybook/csf-plugin@7.6.8': - resolution: {integrity: sha512-KYh7VwTHhXz/V9weuGY3pK9messE56TJHUD+0SO9dF2BVNKsKpAOVcjzrE6masiAFX35Dz/t9ywy8iFcfAo0dg==} - - '@storybook/csf-tools@7.6.8': - resolution: {integrity: sha512-ea6QnQRvhPOpSUbfioLlJYRLpJldNZcocgUJwOJ/e3TM6M67BZBzeDnVOJkuUKejrp++KF22GEIkbGAWErIlnA==} - - '@storybook/csf@0.1.2': - resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==} - - '@storybook/docs-mdx@0.1.0': - resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} - - '@storybook/docs-tools@7.6.8': - resolution: {integrity: sha512-zIbrje4JLFpfK05y3SkDNtIth/vTOEaJVa/zaHuwS1gUX73Pq3jwF2eMGVabeVWi6hvxGeZXhnIsymh/Hpbn5w==} - - '@storybook/global@5.0.0': - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - - '@storybook/instrumenter@7.6.8': - resolution: {integrity: sha512-AZZoMmQJ753uIeNJpjV+qUSREMu1gfucqslo858uPxpWwhWmr6pI9a5V19w5sedGXT/I9WiTt8hQVmkg4lsWbA==} - - '@storybook/manager-api@7.6.8': - resolution: {integrity: sha512-BGVZb0wMTd8Hi8rUYPRzdIhWRw73qXlEupwEYyGtH63sg+aD67wyAo8/pMEpQBH4kVss7VheWY2JGpRJeFVUxw==} - - '@storybook/manager@7.6.8': - resolution: {integrity: sha512-INoXXoHXyw9PPMJAOAhwf9u2GNDDNdv1JAI1fhrbCAECzDabHT9lRVUo6v8I5XMc+YdMHLM1Vz38DbB+w18hFw==} - - '@storybook/mdx2-csf@1.1.0': - resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} - - '@storybook/node-logger@6.5.16': - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} - - '@storybook/node-logger@7.6.8': - resolution: {integrity: sha512-SVvwZAcOLdkstqnAbE5hVYsriXh6OXjLcwFEBpAYi1meQ0R70iNALVSPEfIDK1r7M163Jngsq2hRnHvbLoQNkg==} - - '@storybook/postinstall@7.6.8': - resolution: {integrity: sha512-9ixyNpoT1w3WmSooCzndAWDnw4fENA1WUBcdqrzlcgaSBKiAHad1k/Yct/uBAU95l/uQ13NgXK3mx4+S6unx/g==} - - '@storybook/preset-react-webpack@7.6.8': - resolution: {integrity: sha512-S7z2IKonfZyvaETPwDHaOsw2hnG6Kny6aVnWj1/oAMHLRkAo08v/uxXc3of27HmCng3sKoPtEKypQa6yV863MA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - - '@storybook/preview-api@7.6.8': - resolution: {integrity: sha512-rtP9Yo8ZV1NWhtA3xCOAb1vU70KCV3D2U4E3rOb2prqJ2CEQ/MQbrB7KUTDRSQdT7VFbjsLQWVCTUcNo29U8JQ==} - - '@storybook/preview@7.6.8': - resolution: {integrity: sha512-f54EXmJcIkc5A7nQmtnCUtNFNfEOoTuPYFK7pDfcK/bVU+g63zzWhBAeIUZ8yioLKGqZPTzFEhXkpa+OqsT0Jg==} - - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': - resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} - peerDependencies: - typescript: '>= 4.x' - webpack: '>= 4' - - '@storybook/react-dom-shim@7.6.8': - resolution: {integrity: sha512-NIvtjdXCTwd0VA/zCaCuCYv7L35nze7qDsFW6JhSHyqB7fKyIEMSbluktO2VISotHOSkgZ2zA+rGpk3O8yh6lg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/react-webpack5@7.6.8': - resolution: {integrity: sha512-wE4dTeqLmahPLJ+QScTp32JDWd/FY/hvZjok9KFoKfLcdpsjQc7nG/MQrq6Sl+Gv5QdqxSxnuWusOzlBFM2XEg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - - '@storybook/react@7.6.8': - resolution: {integrity: sha512-yMqcCNskCxqoYSGWO1qu6Jdju9zhEEwd8tOC7AgIC8sAB7K8FTxZu0d6+QFpeg9fGq+hyAmRM4GrT9Fq9IKwwQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/router@7.6.8': - resolution: {integrity: sha512-pFoq22w1kEwduqMpGX3FPSSukdWLMX6UQa2Cw4MDW+hzp3vhC7+3MVaBG5ShQAjGv46NNcSgsIUkyarlU5wd/A==} - - '@storybook/telemetry@7.6.8': - resolution: {integrity: sha512-hHUS3fyHjKR3ZdbG+/OVI+pwXXKOmS8L8GMuWKlpUovvCYBLm0/Q0MUQ9XaLuByOCzvAurqB3Owp3ZV7GiY30Q==} - - '@storybook/test@7.6.8': - resolution: {integrity: sha512-8TnWp0r3C/2OJur/VPBkjxFRPbpIgsCNACHbZHEz7+7U/NSj02K9nn6Q84kk6fT9qSSJU24csGKNk3fU8bDPfA==} - - '@storybook/theming@7.6.8': - resolution: {integrity: sha512-0ervBgeYGieifjISlFS7x5QZF9vNgLtHHlYKdkrAsACTK+VfB0JglVwFdLrgzAKxQRlVompaxl3TecFGWlvhtw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/types@7.6.8': - resolution: {integrity: sha512-+mABX20OhwJjqULocG5Betfidwrlk+Kq+grti+LAYwYsdBwxctBNSrqK8P9r8XDFL6PbppZeExGiHKwGu6WsKQ==} - - '@swc/core-darwin-arm64@1.3.103': - resolution: {integrity: sha512-Dqqz48mvdm/3PHPPA6YeAEofkF9H5Krgqd/baPf0dXcarzng6U9Ilv2aCtDjq7dfI9jfkVCW5zuwq98PE2GEdw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.3.103': - resolution: {integrity: sha512-mhUVSCEAyFLqtrDtwr9qPbe891J8cKxq53CD873/ZsUnyasHMPyWXzTvy9qjmbYyfDIArm6fGqjF5YsDKwGGNg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.3.103': - resolution: {integrity: sha512-rYLmwxr01ZHOI6AzooqwB0DOkMm0oU8Jznk6uutV1lHgcwyxsNiC1Css8yf77Xr/sYTvKvuTfBjThqa5H716pA==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.3.103': - resolution: {integrity: sha512-w+5XFpUqxiAGUBiyRyYR28Ghddp5uVyo+dHAkCnY1u3V6RsZkY3vRwmoXT7/HxVGV7csodJ1P9Cp9VaRnNvTKA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.3.103': - resolution: {integrity: sha512-lS5p8ewAIar7adX6t0OrkICTcw92PXrn3ZmYyG5hvfjUg4RPQFjMfFMDQSne32ZJhGXHBf0LVm1R8wHwkcpwgA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.3.103': - resolution: {integrity: sha512-Lf2cHDoEPNB6TwexHBEZCsAO2C7beb0YljhtQS+QfjWLLVqCiwt5LRCPuKN2Bav7el9KZXOI5baXedUeFj0oFg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.3.103': - resolution: {integrity: sha512-HR1Y9iiLEO3F49P47vjbHczBza9RbdXWRWC8NpcOcGJ4Wnw0c2DLWAh416fGH3VYCF/19EuglLEXhvSj0NXGuA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.3.103': - resolution: {integrity: sha512-3/GfROD1GPyf2hi6R0l4iZ5nrrKG8IU29hYhZCb7r0ZqhL/58kktVPlkib8X/EAJI8xbhM/NMl76h8ElrnyH5w==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.3.103': - resolution: {integrity: sha512-9ejEFjfgPi0ibNmtuiRbYq9p4RRV6oH1DN9XjkYM8zh2qHlpZHKQZ3n4eHS0VtJO4rEGZxL8ebcnTNs62wqJig==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.3.103': - resolution: {integrity: sha512-/1RvaOmZolXurWAUdnELYynVlFUiT0hj3PyTPoo+YK6+KV7er4EqUalRsoUf3zzGepQuhKFZFDpQn6Xi9kJX1A==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.3.103': - resolution: {integrity: sha512-PYtt8KzRXIFDwxeD7BA9ylmXNQ4hRVcmDVuAmL3yvL9rgx7Tn3qn6T37wiMVZnP1OjqGyhuHRPNycd+ssr+byw==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.2': - resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} - - '@swc/types@0.1.5': - resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} - - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} - - '@testing-library/jest-dom@6.2.0': - resolution: {integrity: sha512-+BVQlJ9cmEn5RDMUS8c2+TU6giLvzaHZ8sU/x0Jj7fk+6/46wPdwlgOPcpxS17CjcanBi/3VmGMqVr2rmbUmNw==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true - - '@testing-library/user-event@14.3.0': - resolution: {integrity: sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@types/aria-query@5.0.4': - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - - '@types/babel__generator@7.6.8': - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - - '@types/babel__traverse@7.20.5': - resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} - - '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - - '@types/chai@4.3.11': - resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==} - - '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - - '@types/cross-spawn@6.0.6': - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} - - '@types/detect-port@1.3.5': - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - - '@types/doctrine@0.0.3': - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - - '@types/doctrine@0.0.9': - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - - '@types/ejs@3.1.5': - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - - '@types/emscripten@1.39.10': - resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==} - - '@types/escodegen@0.0.6': - resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} - - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - - '@types/eslint@8.56.2': - resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} - - '@types/estree@0.0.51': - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - - '@types/express-serve-static-core@4.17.41': - resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} - - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} - - '@types/find-cache-dir@3.2.1': - resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - - '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - - '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - - '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/lodash@4.14.202': - resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} - - '@types/mdx@2.0.10': - resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==} - - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - - '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - - '@types/mime@3.0.4': - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - - '@types/minimist@1.2.5': - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - - '@types/node-fetch@2.6.10': - resolution: {integrity: sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA==} - - '@types/node@12.20.55': - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - - '@types/node@18.19.7': - resolution: {integrity: sha512-IGRJfoNX10N/PfrReRZ1br/7SQ+2vF/tK3KXNwzXz82D32z5dMQEoOlFew18nLSN+vMNcLY4GrKfzwi/yWI8/w==} - - '@types/node@20.11.1': - resolution: {integrity: sha512-DsXojJUES2M+FE8CpptJTKpg+r54moV9ZEncPstni1WHFmTcCzeFLnMFfyhCVS8XNOy/OQG+8lVxRLRrVHmV5A==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - - '@types/npmlog@4.1.6': - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} - - '@types/parse-json@4.0.2': - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - - '@types/pretty-hrtime@1.0.3': - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - - '@types/prop-types@15.7.11': - resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} - - '@types/qs@6.9.11': - resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - - '@types/react-dom@18.2.18': - resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} - - '@types/react@18.2.48': - resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} - - '@types/resolve@1.20.6': - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - - '@types/scheduler@0.16.8': - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} - - '@types/semver@7.5.6': - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - - '@types/serve-static@1.15.5': - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - - '@types/uuid@9.0.7': - resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==} - - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - '@types/yargs@16.0.9': - resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} - - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - - '@vitest/expect@0.34.7': - resolution: {integrity: sha512-G9iEtwrD6ZQ4MVHZufif9Iqz3eLtuwBBNx971fNAGPaugM7ftAWjQN+ob2zWhtzURp8RK3zGXOxVb01mFo3zAQ==} - - '@vitest/spy@0.34.7': - resolution: {integrity: sha512-NMMSzOY2d8L0mcOt4XcliDOS1ISyGlAXuQtERWVOoVHnKwmG+kKhinAiGw3dTtMQWybfa89FG8Ucg9tiC/FhTQ==} - - '@vitest/utils@0.34.7': - resolution: {integrity: sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==} - - '@webassemblyjs/ast@1.11.6': - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} - - '@webassemblyjs/floating-point-hex-parser@1.11.6': - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - '@webassemblyjs/helper-api-error@1.11.6': - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - - '@webassemblyjs/helper-buffer@1.11.6': - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - - '@webassemblyjs/helper-numbers@1.11.6': - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - - '@webassemblyjs/helper-wasm-bytecode@1.11.6': - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - - '@webassemblyjs/helper-wasm-section@1.11.6': - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} - - '@webassemblyjs/ieee754@1.11.6': - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - - '@webassemblyjs/leb128@1.11.6': - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - - '@webassemblyjs/utf8@1.11.6': - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - - '@webassemblyjs/wasm-edit@1.11.6': - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} - - '@webassemblyjs/wasm-gen@1.11.6': - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} - - '@webassemblyjs/wasm-opt@1.11.6': - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} - - '@webassemblyjs/wasm-parser@1.11.6': - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} - - '@webassemblyjs/wast-printer@1.11.6': - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} - - '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - - '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' - - '@yarnpkg/fslib@2.10.3': - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@yarnpkg/libzip@2.3.0': - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} - - acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true - - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - - agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} - - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - - ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - - ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - - ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - - ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - - ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - - any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - - app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - - aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - - are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - - arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - - aria-hidden@1.2.3: - resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} - engines: {node: '>=10'} - - aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} - - aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - - array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} - - array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} - engines: {node: '>= 0.4'} - - arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - - assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} - - assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - - ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} - - async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - - asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - - autoprefixer@10.4.17: - resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - - available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - - babel-core@7.0.0-bridge.0: - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-loader@9.1.3: - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - - babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - - babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - - babel-plugin-polyfill-corejs2@0.4.7: - resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@0.8.7: - resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@0.5.4: - resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} - - better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} - - big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - - big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - - binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - - bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - - body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - - bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - - braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - - breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} - - browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - - browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} - - browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - - bundle-require@4.0.2: - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - esbuild: '>=0.17' - - bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} - - bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - - cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - - call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - - camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - - camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - - caniuse-lite@1.0.30001576: - resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} - - caniuse-lite@1.0.30001579: - resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} - - case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} - - chai@4.4.1: - resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} - engines: {node: '>=4'} - - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - - check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} - - chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - - chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - - chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - - chromatic@10.6.1: - resolution: {integrity: sha512-bd4C5sEEtN83uUmbc4Fu+x7+lJIPdMUdu4D6HRDQEIDl/Tatc8+By4bZluH1pzg/MbP9vllkL6Ua9vF4EEA7VA==} - hasBin: true - peerDependencies: - chromatic-cypress: ^0.4.0 || ^1.0.0 - chromatic-playwright: ^0.4.0 || ^1.0.0 - peerDependenciesMeta: - chromatic-cypress: - optional: true - chromatic-playwright: - optional: true - - chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} - - ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - - citty@0.1.5: - resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==} - - clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} - - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - - cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - - cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - - cli-table3@0.6.3: - resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} - engines: {node: 10.* || >= 12.*} - - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - - clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} - engines: {node: '>=6'} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - - colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - - combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - - commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - - commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - - commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - - commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - - commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - - common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - - commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - - compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} - - compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} - - concurrently@8.2.2: - resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==} - engines: {node: ^14.13.0 || >=16.0.0} - hasBin: true - - consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} - - console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - - constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - - content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} - - content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} - - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - - cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} - - core-js-compat@3.35.0: - resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==} - - core-js-pure@3.35.0: - resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==} - - core-js@3.35.1: - resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==} - - core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} - - cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - - crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - - css-loader@3.6.0: - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - - css-loader@6.9.0: - resolution: {integrity: sha512-3I5Nu4ytWlHvOP6zItjiHlefBNtrH+oehq8tnQa2kO305qpVyx9XNIT1CXIj5bgCJs7qICBCkgCYxQLKPANoLA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - - css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} - - css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - - css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - - csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - - csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - - csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - - csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - - date-fns@2.30.0: - resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} - engines: {node: '>=0.11'} - - debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - - dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - - deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} - - deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} - - deep-rename-keys@0.2.1: - resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} - engines: {node: '>=0.10.0'} - - deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - - default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} - - define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - - defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - - del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} - - delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - - delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - - depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - - destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - - detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - - detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} - - detect-port@1.5.1: - resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} - hasBin: true - - didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - - diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - - dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - - dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - - dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} - - dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - - dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} - - domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - - domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - - domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} - - domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} - - dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - - dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - - dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} - - duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} - - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - - ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - electron-to-chromium@1.4.630: - resolution: {integrity: sha512-osHqhtjojpCsACVnuD11xO5g9xaCyw7Qqn/C2KParkMv42i8jrJJgx3g7mkHfpxwhy9MnOJr8+pKOdZ7qzgizg==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - - emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - - encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - - end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - - endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} - - enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} - - enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} - - entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - - envinfo@7.11.0: - resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==} - engines: {node: '>=4'} - hasBin: true - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} - - es-abstract@1.22.3: - resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} - engines: {node: '>= 0.4'} - - es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - - es-module-lexer@1.4.1: - resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} - - es-set-tostringtag@2.0.2: - resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} - engines: {node: '>= 0.4'} - - es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} - - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - - esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} - - esbuild-register@3.5.0: - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} - peerDependencies: - esbuild: '>=0.12 <1' - - esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} - hasBin: true - - esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} - hasBin: true - - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - - escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - - eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - - esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - - eventemitter3@2.0.3: - resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} - - events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - - execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} - - express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: '>= 0.10.0'} - - extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - - extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - - external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - - extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} - - fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fastq@1.16.0: - resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} - - fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - - fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - - fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - - file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} - - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - - fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} - - find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} - - find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} - - find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} - - find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} - - flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} - - flow-parser@0.226.0: - resolution: {integrity: sha512-YlH+Y/P/5s0S7Vg14RwXlJMF/JsGfkG7gcKB/zljyoqaPNX9YVsGzx+g6MLTbhZaWbPhs4347aTpmSb9GgiPtw==} - engines: {node: '>=0.4.0'} - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} - - fork-ts-checker-webpack-plugin@8.0.0: - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - webpack: ^5.11.0 - - form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - - forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - - fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - - fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - - fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - - fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - - fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} - - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - - fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - - fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - - fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} - - fs-monkey@1.0.5: - resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - - get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} - - get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} - - get-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} - - get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - - get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - - get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - - giget@1.2.1: - resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==} - hasBin: true - - github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - - glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - - gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true - - handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true - - hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} - - has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} - - has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - - hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} - - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - - html-entities@2.4.0: - resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==} - - html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true - - html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - - html-webpack-plugin@5.6.0: - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: ^5.20.0 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} - - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - - https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} - - human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - - husky@8.0.3: - resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} - engines: {node: '>=14'} - hasBin: true - - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - - icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} - - icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore@5.3.0: - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} - engines: {node: '>= 4'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - internal-slot@1.0.6: - resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} - engines: {node: '>= 0.4'} - - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - - ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} - - ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - - is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} - - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - - is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} - - is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} - - is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - - is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} - - is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - - is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - - is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} - - is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} - - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - - is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: '>= 0.4'} - - is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - - is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} - - is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - - is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} - - isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - - istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} - - istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} - - jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} - - jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true - - jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-mock@27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} - - jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true - - joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - - jscodeshift@0.15.1: - resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - peerDependenciesMeta: - '@babel/preset-env': - optional: true - - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} - - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - - klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} - - lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} - - leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - - lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - - lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - load-tsconfig@0.2.5: - resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} - - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - - loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} - - loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - - locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} - - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - - lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} - - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - - lru-cache@10.1.0: - resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} - engines: {node: 14 || >=16.14} - - lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - - magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} - - make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - - make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} - - makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - - map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - - map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - - map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - - markdown-to-jsx@7.4.0: - resolution: {integrity: sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' - - mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} - - mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - - mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - - media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} - - memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} - - memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} - - meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - - mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - - minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} - - minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} - - minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - - minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} - - minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} - - mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - - mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - - mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - - ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - - neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - - node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - - node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} - - node-fetch-native@1.6.1: - resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} - - node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - - node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - - npm-run-path@5.2.0: - resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - nypm@0.3.4: - resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==} - engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} - - object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - - object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - - objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - - ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} - - on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - - on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} - - open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - - ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - - outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - - p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} - - param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - - path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - - path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} - - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - - pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - - peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} - - pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - - picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - - pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} - - pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - - pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} - - pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} - - polished@4.2.2: - resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} - engines: {node: '>=10'} - - postcss-import@15.1.0: - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-js@4.0.1: - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 - - postcss-load-config@4.0.2: - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - - postcss-loader@4.3.0: - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^4.0.0 || ^5.0.0 - - postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} - - postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} - - postcss-modules-local-by-default@4.0.3: - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} - - postcss-modules-scope@3.1.0: - resolution: {integrity: sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} - - postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-nested@6.0.1: - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - - postcss-selector-parser@6.0.15: - resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} - engines: {node: '>=4'} - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} - - postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} - - preferred-pm@3.1.2: - resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} - engines: {node: '>=10'} - - prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - - prettier@3.2.5: - resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} - engines: {node: '>=14'} - hasBin: true - - pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - - pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} - - process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - - progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - - prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - - prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - - proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} - - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - - pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - - pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} - - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} - - pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - - puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} - - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} - - qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} - engines: {node: '>=0.6'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - - ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} - - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - - range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - - raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} - - react-colorful@5.6.1: - resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - react-confetti@6.1.0: - resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==} - engines: {node: '>=10.18'} - peerDependencies: - react: ^16.3.0 || ^17.0.1 || ^18.0.0 - - react-docgen-typescript@2.2.2: - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' - - react-docgen@7.0.3: - resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} - engines: {node: '>=16.14.0'} - - react-dom@18.2.0: - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: ^18.2.0 - - react-element-to-jsx-string@15.0.0: - resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - - react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - - react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - - react-is@18.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} - - react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - - react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} - - react-remove-scroll-bar@2.3.4: - resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react-remove-scroll@2.5.5: - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react-style-singleton@2.2.1: - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} - - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - - read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} - - readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - recast@0.23.4: - resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} - engines: {node: '>= 4'} - - redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} - - regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} - - regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - - regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: '>= 0.4'} - - regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} - - regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - - relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - - remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} - - remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} - - rename-keys@1.2.0: - resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} - engines: {node: '>= 0.8.0'} - - renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - - restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - hasBin: true - - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - hasBin: true - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true - - rollup@4.9.6: - resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - - safe-array-concat@1.1.0: - resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} - engines: {node: '>=0.4'} - - safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-regex-test@1.0.2: - resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} - engines: {node: '>= 0.4'} - - safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} - - schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} - - schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} - - semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} - - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} - - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - - set-function-length@1.2.0: - resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} - engines: {node: '>= 0.4'} - - set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: '>= 0.4'} - - setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - - shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} - - shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - - side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - simple-update-notifier@2.0.0: - resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} - engines: {node: '>=10'} - - sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - - source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - - source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} - - space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - - spawn-command@0.0.2: - resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} - - spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} - - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - - stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - - stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} - - store2@2.14.2: - resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} - - storybook@7.6.8: - resolution: {integrity: sha512-ugRtDSs2eTgHMOZ3wKXbUEbPnlJ2XImPbnvxNssK14py2mHKwPnhSqLNrjlQMkmkO13GdjalLDyj4lZtoYdo0Q==} - hasBin: true - - stream-shift@1.0.2: - resolution: {integrity: sha512-rV4Bovi9xx0BFzOb/X0B2GqoIjvqPCttZdu0Wgtx2Dxkj7ETyWl9gmqJ4EutWRLvtZWm8dxE+InQZX1IryZn/w==} - - stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} - - string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} - - string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - - strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - - strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - style-loader@1.3.0: - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - - style-loader@3.3.4: - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - - sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true - - svgson@5.3.1: - resolution: {integrity: sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA==} - - swc-loader@0.2.3: - resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} - peerDependencies: - '@swc/core': ^1.2.147 - webpack: '>=2' - - synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - - tailwind-merge@2.2.1: - resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} - - tailwindcss@3.4.1: - resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} - engines: {node: '>=14.0.0'} - hasBin: true - - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} - - tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} - - tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: '>=10'} - - telejson@7.2.0: - resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} - - temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - - temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} - - tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} - - term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - - terser-webpack-plugin@5.3.10: - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - - terser@5.26.0: - resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} - engines: {node: '>=10'} - hasBin: true - - test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} - - thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} - - thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - - through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} - - tiny-invariant@1.3.1: - resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} - - tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - - tinyspy@2.2.0: - resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} - engines: {node: '>=14.0.0'} - - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - - tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - tocbot@4.25.0: - resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==} - - toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - - tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - - tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} - - tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - - trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - - ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} - - ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - - tsup@8.0.1: - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - '@microsoft/api-extractor': ^7.36.0 - '@swc/core': ^1 - postcss: ^8.4.12 - typescript: '>=4.5.0' - peerDependenciesMeta: - '@microsoft/api-extractor': - optional: true - '@swc/core': - optional: true - postcss: - optional: true - typescript: - optional: true - - tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true - - tween-functions@1.2.0: - resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} - - type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - - type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - - type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} - - typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: '>= 0.4'} - - typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: '>= 0.4'} - - typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: '>= 0.4'} - - typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} - - typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - - typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - - ufo@1.3.2: - resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} - - uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} - hasBin: true - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - - unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - - unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - - unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} - - unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - - unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} - - unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} - - universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - - universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - - unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - - unplugin@1.6.0: - resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==} - - untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - - update-browserslist-db@1.0.13: - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} - - use-callback-ref@1.3.1: - resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - use-resize-observer@9.1.0: - resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} - peerDependencies: - react: 16.8.0 - 18 - react-dom: 16.8.0 - 18 - - use-sidecar@1.1.2: - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - - utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - - uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true - - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - - vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - - walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - - watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} - - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - - webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - - webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - - webpack-dev-middleware@6.1.1: - resolution: {integrity: sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.0.0 - peerDependenciesMeta: - webpack: - optional: true - - webpack-hot-middleware@2.26.0: - resolution: {integrity: sha512-okzjec5sAEy4t+7rzdT8eRyxsk0FDSmBPN2KwX4Qd+6+oQCfe5Ve07+u7cJvofgB+B4w5/4dO4Pz0jhhHyyPLQ==} - - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - - webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - - webpack-virtual-modules@0.6.1: - resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} - - webpack@5.89.0: - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - - whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} - - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - - which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} - - which-typed-array@1.1.13: - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - - wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - - wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - - wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - - write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - ws@6.2.2: - resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@8.16.0: - resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - xml-lexer@0.2.2: - resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} - - xml-reader@2.4.3: - resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} - - xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - - yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} - - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - -snapshots: - - '@adobe/css-tools@4.3.2': {} - - '@alloc/quick-lru@5.2.0': {} - - '@ampproject/remapping@2.2.1': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - - '@aw-web-design/x-default-browser@1.4.126': - dependencies: - default-browser-id: 3.0.0 - - '@babel/code-frame@7.23.5': - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - - '@babel/compat-data@7.23.5': {} - - '@babel/core@7.23.7': - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helpers': 7.23.8 - '@babel/parser': 7.23.6 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - convert-source-map: 2.0.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.23.6': - dependencies: - '@babel/types': 7.23.6 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - jsesc: 2.5.2 - - '@babel/helper-annotate-as-pure@7.22.5': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-compilation-targets@7.23.6': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - - '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@7.22.20': {} - - '@babel/helper-function-name@7.23.0': - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - - '@babel/helper-hoist-variables@7.22.5': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-member-expression-to-functions@7.23.0': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-module-imports@7.22.15': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - - '@babel/helper-optimise-call-expression@7.22.5': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-plugin-utils@7.22.5': {} - - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - - '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - - '@babel/helper-simple-access@7.22.5': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-split-export-declaration@7.22.6': - dependencies: - '@babel/types': 7.23.6 - - '@babel/helper-string-parser@7.23.4': {} - - '@babel/helper-validator-identifier@7.22.20': {} - - '@babel/helper-validator-option@7.23.5': {} - - '@babel/helper-wrap-function@7.22.20': - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - - '@babel/helpers@7.23.8': - dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - - '@babel/highlight@7.23.4': - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - - '@babel/parser@7.23.6': - dependencies: - '@babel/types': 7.23.6 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) - - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7) - - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) - - '@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7) - - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) - - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - - '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) - - '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) - - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7) - - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) - - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) - - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) - - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) - '@babel/types': 7.23.6 - - '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 - - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) - - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/preset-env@7.23.8(@babel/core@7.23.7)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7) - babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7) - babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7) - core-js-compat: 3.35.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/preset-flow@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7) - - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.6 - esutils: 2.0.3 - - '@babel/preset-react@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7) - '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7) - - '@babel/preset-typescript@7.23.3(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7) - - '@babel/register@7.23.7(@babel/core@7.23.7)': - dependencies: - '@babel/core': 7.23.7 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.6 - source-map-support: 0.5.21 - - '@babel/regjsgen@0.8.0': {} - - '@babel/runtime@7.23.8': - dependencies: - regenerator-runtime: 0.14.1 - - '@babel/template@7.22.15': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - - '@babel/traverse@7.23.7': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/types@7.23.6': - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - - '@base2/pretty-print-object@1.0.1': {} - - '@changesets/apply-release-plan@7.0.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/config': 3.0.0 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 2.8.8 - resolve-from: 5.0.0 - semver: 7.5.4 - - '@changesets/assemble-release-plan@6.0.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - semver: 7.5.4 - - '@changesets/changelog-git@0.2.0': - dependencies: - '@changesets/types': 6.0.0 - - '@changesets/cli@2.27.1': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/apply-release-plan': 7.0.0 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.0 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/get-release-plan': 4.0.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@changesets/write': 0.3.0 - '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.6 - ansi-colors: 4.1.3 - chalk: 2.4.2 - ci-info: 3.9.0 - enquirer: 2.4.1 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.1.2 - resolve-from: 5.0.0 - semver: 7.5.4 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 4.2.3 - - '@changesets/config@3.0.0': - dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/logger': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - - '@changesets/errors@0.2.0': - dependencies: - extendable-error: 0.1.7 - - '@changesets/get-dependents-graph@2.0.0': - dependencies: - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.5.4 - - '@changesets/get-release-plan@4.0.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/config': 3.0.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - - '@changesets/get-version-range-type@0.4.0': {} - - '@changesets/git@3.0.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - is-subdir: 1.2.0 - micromatch: 4.0.5 - spawndamnit: 2.0.0 - - '@changesets/logger@0.1.0': - dependencies: - chalk: 2.4.2 - - '@changesets/parse@0.4.0': - dependencies: - '@changesets/types': 6.0.0 - js-yaml: 3.14.1 - - '@changesets/pre@2.0.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - - '@changesets/read@0.6.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/parse': 0.4.0 - '@changesets/types': 6.0.0 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - - '@changesets/types@4.1.0': {} - - '@changesets/types@6.0.0': {} - - '@changesets/write@0.3.0': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 6.0.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 2.8.8 - - '@colors/colors@1.5.0': - optional: true - - '@discoveryjs/json-ext@0.5.7': {} - - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': - dependencies: - react: 18.2.0 - - '@esbuild/aix-ppc64@0.19.11': - optional: true - - '@esbuild/android-arm64@0.18.20': - optional: true - - '@esbuild/android-arm64@0.19.11': - optional: true - - '@esbuild/android-arm@0.18.20': - optional: true - - '@esbuild/android-arm@0.19.11': - optional: true - - '@esbuild/android-x64@0.18.20': - optional: true - - '@esbuild/android-x64@0.19.11': - optional: true - - '@esbuild/darwin-arm64@0.18.20': - optional: true - - '@esbuild/darwin-arm64@0.19.11': - optional: true - - '@esbuild/darwin-x64@0.18.20': - optional: true - - '@esbuild/darwin-x64@0.19.11': - optional: true - - '@esbuild/freebsd-arm64@0.18.20': - optional: true - - '@esbuild/freebsd-arm64@0.19.11': - optional: true - - '@esbuild/freebsd-x64@0.18.20': - optional: true - - '@esbuild/freebsd-x64@0.19.11': - optional: true - - '@esbuild/linux-arm64@0.18.20': - optional: true - - '@esbuild/linux-arm64@0.19.11': - optional: true - - '@esbuild/linux-arm@0.18.20': - optional: true - - '@esbuild/linux-arm@0.19.11': - optional: true - - '@esbuild/linux-ia32@0.18.20': - optional: true - - '@esbuild/linux-ia32@0.19.11': - optional: true - - '@esbuild/linux-loong64@0.18.20': - optional: true - - '@esbuild/linux-loong64@0.19.11': - optional: true - - '@esbuild/linux-mips64el@0.18.20': - optional: true - - '@esbuild/linux-mips64el@0.19.11': - optional: true - - '@esbuild/linux-ppc64@0.18.20': - optional: true - - '@esbuild/linux-ppc64@0.19.11': - optional: true - - '@esbuild/linux-riscv64@0.18.20': - optional: true - - '@esbuild/linux-riscv64@0.19.11': - optional: true - - '@esbuild/linux-s390x@0.18.20': - optional: true - - '@esbuild/linux-s390x@0.19.11': - optional: true - - '@esbuild/linux-x64@0.18.20': - optional: true - - '@esbuild/linux-x64@0.19.11': - optional: true - - '@esbuild/netbsd-x64@0.18.20': - optional: true - - '@esbuild/netbsd-x64@0.19.11': - optional: true - - '@esbuild/openbsd-x64@0.18.20': - optional: true - - '@esbuild/openbsd-x64@0.19.11': - optional: true - - '@esbuild/sunos-x64@0.18.20': - optional: true - - '@esbuild/sunos-x64@0.19.11': - optional: true - - '@esbuild/win32-arm64@0.18.20': - optional: true - - '@esbuild/win32-arm64@0.19.11': - optional: true - - '@esbuild/win32-ia32@0.18.20': - optional: true - - '@esbuild/win32-ia32@0.19.11': - optional: true - - '@esbuild/win32-x64@0.18.20': - optional: true - - '@esbuild/win32-x64@0.19.11': - optional: true - - '@fal-works/esbuild-plugin-global-externals@2.1.2': {} - - '@floating-ui/core@1.5.3': - dependencies: - '@floating-ui/utils': 0.2.1 - - '@floating-ui/dom@1.5.4': - dependencies: - '@floating-ui/core': 1.5.3 - '@floating-ui/utils': 0.2.1 - - '@floating-ui/react-dom@2.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@floating-ui/dom': 1.5.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@floating-ui/utils@0.2.1': {} - - '@isaacs/cliui@8.0.2': - dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 - - '@istanbuljs/load-nyc-config@1.1.0': - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - - '@istanbuljs/schema@0.1.3': {} - - '@jest/schemas@29.6.3': - dependencies: - '@sinclair/typebox': 0.27.8 - - '@jest/transform@29.7.0': - dependencies: - '@babel/core': 7.23.7 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.21 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - - '@jest/types@27.5.1': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.11.1 - '@types/yargs': 16.0.9 - chalk: 4.1.2 - - '@jest/types@29.6.3': - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.11.1 - '@types/yargs': 17.0.32 - chalk: 4.1.2 - - '@jridgewell/gen-mapping@0.3.3': - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.21 - - '@jridgewell/resolve-uri@3.1.1': {} - - '@jridgewell/set-array@1.1.2': {} - - '@jridgewell/source-map@0.3.5': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.21 - - '@jridgewell/sourcemap-codec@1.4.15': {} - - '@jridgewell/trace-mapping@0.3.21': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - - '@juggle/resize-observer@3.4.0': {} - - '@manypkg/find-root@1.1.0': - dependencies: - '@babel/runtime': 7.23.8 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - - '@manypkg/get-packages@1.1.3': - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - - '@mdx-js/react@2.3.0(react@18.2.0)': - dependencies: - '@types/mdx': 2.0.10 - '@types/react': 18.2.48 - react: 18.2.0 - - '@ndelangen/get-tarball@3.0.9': - dependencies: - gunzip-maybe: 1.4.2 - pump: 3.0.0 - tar-fs: 2.1.1 - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.16.0 - - '@pkgjs/parseargs@0.11.0': - optional: true - - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(type-fest@2.19.0)(webpack-hot-middleware@2.26.0)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.35.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.4.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - optionalDependencies: - type-fest: 2.19.0 - webpack-hot-middleware: 2.26.0 - - '@radix-ui/number@1.0.1': - dependencies: - '@babel/runtime': 7.23.8 - - '@radix-ui/primitive@1.0.1': - dependencies: - '@babel/runtime': 7.23.8 - - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-context@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-direction@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-id@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@floating-ui/react-dom': 2.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/rect': 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-slot@1.0.2(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/rect': 1.0.1 - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.48)(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0) - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.48 - - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - '@types/react-dom': 18.2.18 - - '@radix-ui/rect@1.0.1': - dependencies: - '@babel/runtime': 7.23.8 - - '@rollup/rollup-android-arm-eabi@4.9.6': - optional: true - - '@rollup/rollup-android-arm64@4.9.6': - optional: true - - '@rollup/rollup-darwin-arm64@4.9.6': - optional: true - - '@rollup/rollup-darwin-x64@4.9.6': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.9.6': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.9.6': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.9.6': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.9.6': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.9.6': - optional: true - - '@rollup/rollup-linux-x64-musl@4.9.6': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.9.6': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.9.6': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.9.6': - optional: true - - '@sinclair/typebox@0.27.8': {} - - '@storybook/addon-actions@7.6.8': - dependencies: - '@storybook/core-events': 7.6.8 - '@storybook/global': 5.0.0 - '@types/uuid': 9.0.7 - dequal: 2.0.3 - polished: 4.2.2 - uuid: 9.0.1 - - '@storybook/addon-backgrounds@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - memoizerific: 1.11.3 - ts-dedent: 2.2.0 - - '@storybook/addon-controls@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - lodash: 4.17.21 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - react - - react-dom - - supports-color - - '@storybook/addon-docs@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@jest/transform': 29.7.0 - '@mdx-js/react': 2.3.0(react@18.2.0) - '@storybook/blocks': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.8 - '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-plugin': 7.6.8 - '@storybook/csf-tools': 7.6.8 - '@storybook/global': 5.0.0 - '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.6.8 - '@storybook/postinstall': 7.6.8 - '@storybook/preview-api': 7.6.8 - '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.8 - fs-extra: 11.2.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - remark-external-links: 8.0.0 - remark-slug: 6.1.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - supports-color - - '@storybook/addon-essentials@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addon-actions': 7.6.8 - '@storybook/addon-backgrounds': 7.6.8 - '@storybook/addon-controls': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-docs': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-highlight': 7.6.8 - '@storybook/addon-measure': 7.6.8 - '@storybook/addon-outline': 7.6.8 - '@storybook/addon-toolbars': 7.6.8 - '@storybook/addon-viewport': 7.6.8 - '@storybook/core-common': 7.6.8 - '@storybook/manager-api': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 7.6.8 - '@storybook/preview-api': 7.6.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - supports-color - - '@storybook/addon-highlight@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - - '@storybook/addon-interactions@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - '@storybook/types': 7.6.8 - jest-mock: 27.5.1 - polished: 4.2.2 - ts-dedent: 2.2.0 - - '@storybook/addon-links@7.6.8(react@18.2.0)': - dependencies: - '@storybook/csf': 0.1.2 - '@storybook/global': 5.0.0 - ts-dedent: 2.2.0 - optionalDependencies: - react: 18.2.0 - - '@storybook/addon-measure@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - tiny-invariant: 1.3.1 - - '@storybook/addon-onboarding@1.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/telemetry': 7.6.8 - react: 18.2.0 - react-confetti: 6.1.0(react@18.2.0) - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/addon-outline@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - ts-dedent: 2.2.0 - - '@storybook/addon-postcss@2.0.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': - dependencies: - '@storybook/node-logger': 6.5.16 - css-loader: 3.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - postcss: 7.0.39 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - style-loader: 1.3.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - transitivePeerDependencies: - - webpack - - '@storybook/addon-styling-webpack@0.0.6(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': - dependencies: - '@storybook/node-logger': 7.6.8 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - '@storybook/addon-toolbars@7.6.8': {} - - '@storybook/addon-viewport@7.6.8': - dependencies: - memoizerific: 1.11.3 - - '@storybook/blocks@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/channels': 7.6.8 - '@storybook/client-logger': 7.6.8 - '@storybook/components': 7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 7.6.8 - '@storybook/csf': 0.1.2 - '@storybook/docs-tools': 7.6.8 - '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 7.6.8 - '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.8 - '@types/lodash': 4.14.202 - color-convert: 2.0.1 - dequal: 2.0.3 - lodash: 4.17.21 - markdown-to-jsx: 7.4.0(react@18.2.0) - memoizerific: 1.11.3 - polished: 4.2.2 - react: 18.2.0 - react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-dom: 18.2.0(react@18.2.0) - telejson: 7.2.0 - tocbot: 4.25.0 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - supports-color - - '@storybook/builder-manager@7.6.8': - dependencies: - '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.6.8 - '@storybook/manager': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@types/ejs': 3.1.5 - '@types/find-cache-dir': 3.2.1 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) - browser-assert: 1.2.1 - ejs: 3.1.9 - esbuild: 0.18.20 - esbuild-plugin-alias: 0.2.1 - express: 4.18.2 - find-cache-dir: 3.3.2 - fs-extra: 11.2.0 - process: 0.11.10 - util: 0.12.5 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/builder-webpack5@7.6.8(esbuild@0.19.11)(typescript@4.9.5)': - dependencies: - '@babel/core': 7.23.7 - '@storybook/channels': 7.6.8 - '@storybook/client-logger': 7.6.8 - '@storybook/core-common': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/core-webpack': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/preview': 7.6.8 - '@storybook/preview-api': 7.6.8 - '@swc/core': 1.3.103 - '@types/node': 18.19.7 - '@types/semver': 7.5.6 - babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - browser-assert: 1.2.1 - case-sensitive-paths-webpack-plugin: 2.4.0 - constants-browserify: 1.0.0 - css-loader: 6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - es-module-lexer: 1.4.1 - express: 4.18.2 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - magic-string: 0.30.5 - path-browserify: 1.0.1 - process: 0.11.10 - semver: 7.5.4 - style-loader: 3.3.4(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - swc-loader: 0.2.3(@swc/core@1.3.103)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - ts-dedent: 2.2.0 - url: 0.11.3 - util: 0.12.5 - util-deprecate: 1.0.2 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - webpack-dev-middleware: 6.1.1(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - webpack-hot-middleware: 2.26.0 - webpack-virtual-modules: 0.5.0 - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - '@rspack/core' - - '@swc/helpers' - - encoding - - esbuild - - supports-color - - uglify-js - - webpack-cli - - '@storybook/channels@7.6.8': - dependencies: - '@storybook/client-logger': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/global': 5.0.0 - qs: 6.11.2 - telejson: 7.2.0 - tiny-invariant: 1.3.1 - - '@storybook/cli@7.6.8': - dependencies: - '@babel/core': 7.23.7 - '@babel/preset-env': 7.23.8(@babel/core@7.23.7) - '@babel/types': 7.23.6 - '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 7.6.8 - '@storybook/core-common': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/core-server': 7.6.8 - '@storybook/csf-tools': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/telemetry': 7.6.8 - '@storybook/types': 7.6.8 - '@types/semver': 7.5.6 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 - chalk: 4.1.2 - commander: 6.2.1 - cross-spawn: 7.0.3 - detect-indent: 6.1.0 - envinfo: 7.11.0 - execa: 5.1.1 - express: 4.18.2 - find-up: 5.0.0 - fs-extra: 11.2.0 - get-npm-tarball-url: 2.1.0 - get-port: 5.1.1 - giget: 1.2.1 - globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)) - leven: 3.1.0 - ora: 5.4.1 - prettier: 2.8.8 - prompts: 2.4.2 - puppeteer-core: 2.1.1 - read-pkg-up: 7.0.1 - semver: 7.5.4 - simple-update-notifier: 2.0.0 - strip-json-comments: 3.1.1 - tempy: 1.0.1 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - '@storybook/client-logger@7.6.8': - dependencies: - '@storybook/global': 5.0.0 - - '@storybook/codemod@7.6.8': - dependencies: - '@babel/core': 7.23.7 - '@babel/preset-env': 7.23.8(@babel/core@7.23.7) - '@babel/types': 7.23.6 - '@storybook/csf': 0.1.2 - '@storybook/csf-tools': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/types': 7.6.8 - '@types/cross-spawn': 6.0.6 - cross-spawn: 7.0.3 - globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)) - lodash: 4.17.21 - prettier: 2.8.8 - recast: 0.23.4 - transitivePeerDependencies: - - supports-color - - '@storybook/components@7.6.8(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.8 - '@storybook/csf': 0.1.2 - '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.8 - memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - '@storybook/core-client@7.6.8': - dependencies: - '@storybook/client-logger': 7.6.8 - '@storybook/preview-api': 7.6.8 - - '@storybook/core-common@7.6.8': - dependencies: - '@storybook/core-events': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/types': 7.6.8 - '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.7 - '@types/node-fetch': 2.6.10 - '@types/pretty-hrtime': 1.0.3 - chalk: 4.1.2 - esbuild: 0.18.20 - esbuild-register: 3.5.0(esbuild@0.18.20) - file-system-cache: 2.3.0 - find-cache-dir: 3.3.2 - find-up: 5.0.0 - fs-extra: 11.2.0 - glob: 10.3.10 - handlebars: 4.7.8 - lazy-universal-dotenv: 4.0.0 - node-fetch: 2.7.0 - picomatch: 2.3.1 - pkg-dir: 5.0.0 - pretty-hrtime: 1.0.3 - resolve-from: 5.0.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/core-events@7.6.8': - dependencies: - ts-dedent: 2.2.0 - - '@storybook/core-server@7.6.8': - dependencies: - '@aw-web-design/x-default-browser': 1.4.126 - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.6.8 - '@storybook/channels': 7.6.8 - '@storybook/core-common': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/csf': 0.1.2 - '@storybook/csf-tools': 7.6.8 - '@storybook/docs-mdx': 0.1.0 - '@storybook/global': 5.0.0 - '@storybook/manager': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/preview-api': 7.6.8 - '@storybook/telemetry': 7.6.8 - '@storybook/types': 7.6.8 - '@types/detect-port': 1.3.5 - '@types/node': 18.19.7 - '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.6 - better-opn: 3.0.2 - chalk: 4.1.2 - cli-table3: 0.6.3 - compression: 1.7.4 - detect-port: 1.5.1 - express: 4.18.2 - fs-extra: 11.2.0 - globby: 11.1.0 - ip: 2.0.0 - lodash: 4.17.21 - open: 8.4.2 - pretty-hrtime: 1.0.3 - prompts: 2.4.2 - read-pkg-up: 7.0.1 - semver: 7.5.4 - telejson: 7.2.0 - tiny-invariant: 1.3.1 - ts-dedent: 2.2.0 - util: 0.12.5 - util-deprecate: 1.0.2 - watchpack: 2.4.0 - ws: 8.16.0 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - '@storybook/core-webpack@7.6.8': - dependencies: - '@storybook/core-common': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/types': 7.6.8 - '@types/node': 18.19.7 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/csf-plugin@7.6.8': - dependencies: - '@storybook/csf-tools': 7.6.8 - unplugin: 1.6.0 - transitivePeerDependencies: - - supports-color - - '@storybook/csf-tools@7.6.8': - dependencies: - '@babel/generator': 7.23.6 - '@babel/parser': 7.23.6 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - '@storybook/csf': 0.1.2 - '@storybook/types': 7.6.8 - fs-extra: 11.2.0 - recast: 0.23.4 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - supports-color - - '@storybook/csf@0.1.2': - dependencies: - type-fest: 2.19.0 - - '@storybook/docs-mdx@0.1.0': {} - - '@storybook/docs-tools@7.6.8': - dependencies: - '@storybook/core-common': 7.6.8 - '@storybook/preview-api': 7.6.8 - '@storybook/types': 7.6.8 - '@types/doctrine': 0.0.3 - assert: 2.1.0 - doctrine: 3.0.0 - lodash: 4.17.21 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/global@5.0.0': {} - - '@storybook/instrumenter@7.6.8': - dependencies: - '@storybook/channels': 7.6.8 - '@storybook/client-logger': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.6.8 - '@vitest/utils': 0.34.7 - util: 0.12.5 - - '@storybook/manager-api@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/channels': 7.6.8 - '@storybook/client-logger': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/csf': 0.1.2 - '@storybook/global': 5.0.0 - '@storybook/router': 7.6.8 - '@storybook/theming': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.8 - dequal: 2.0.3 - lodash: 4.17.21 - memoizerific: 1.11.3 - store2: 2.14.2 - telejson: 7.2.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - react - - react-dom - - '@storybook/manager@7.6.8': {} - - '@storybook/mdx2-csf@1.1.0': {} - - '@storybook/node-logger@6.5.16': - dependencies: - '@types/npmlog': 4.1.6 - chalk: 4.1.2 - core-js: 3.35.1 - npmlog: 5.0.1 - pretty-hrtime: 1.0.3 - - '@storybook/node-logger@7.6.8': {} - - '@storybook/postinstall@7.6.8': {} - - '@storybook/preset-react-webpack@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0)': - dependencies: - '@babel/preset-flow': 7.23.3(@babel/core@7.23.7) - '@babel/preset-react': 7.23.3(@babel/core@7.23.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(type-fest@2.19.0)(webpack-hot-middleware@2.26.0)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - '@storybook/core-webpack': 7.6.8 - '@storybook/docs-tools': 7.6.8 - '@storybook/node-logger': 7.6.8 - '@storybook/react': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - '@types/node': 18.19.7 - '@types/semver': 7.5.6 - babel-plugin-add-react-displayname: 0.0.5 - fs-extra: 11.2.0 - magic-string: 0.30.5 - react: 18.2.0 - react-docgen: 7.0.3 - react-dom: 18.2.0(react@18.2.0) - react-refresh: 0.14.0 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - optionalDependencies: - '@babel/core': 7.23.7 - typescript: 4.9.5 - transitivePeerDependencies: - - '@swc/core' - - '@types/webpack' - - encoding - - esbuild - - sockjs-client - - supports-color - - type-fest - - uglify-js - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@storybook/preview-api@7.6.8': - dependencies: - '@storybook/channels': 7.6.8 - '@storybook/client-logger': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/csf': 0.1.2 - '@storybook/global': 5.0.0 - '@storybook/types': 7.6.8 - '@types/qs': 6.9.11 - dequal: 2.0.3 - lodash: 4.17.21 - memoizerific: 1.11.3 - qs: 6.11.2 - synchronous-promise: 2.0.17 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - - '@storybook/preview@7.6.8': {} - - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11))': - dependencies: - debug: 4.3.4 - endent: 2.1.0 - find-cache-dir: 3.3.2 - flat-cache: 3.2.0 - micromatch: 4.0.5 - react-docgen-typescript: 2.2.2(typescript@4.9.5) - tslib: 2.6.2 - typescript: 4.9.5 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - transitivePeerDependencies: - - supports-color - - '@storybook/react-dom-shim@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@storybook/react-webpack5@7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0)': - dependencies: - '@storybook/builder-webpack5': 7.6.8(esbuild@0.19.11)(typescript@4.9.5) - '@storybook/preset-react-webpack': 7.6.8(@babel/core@7.23.7)(@swc/core@1.3.103)(esbuild@0.19.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-hot-middleware@2.26.0) - '@storybook/react': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5) - '@types/node': 18.19.7 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - optionalDependencies: - '@babel/core': 7.23.7 - typescript: 4.9.5 - transitivePeerDependencies: - - '@rspack/core' - - '@swc/core' - - '@swc/helpers' - - '@types/webpack' - - encoding - - esbuild - - sockjs-client - - supports-color - - type-fest - - uglify-js - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@storybook/react@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5)': - dependencies: - '@storybook/client-logger': 7.6.8 - '@storybook/core-client': 7.6.8 - '@storybook/docs-tools': 7.6.8 - '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.6.8 - '@storybook/react-dom-shim': 7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.8 - '@types/escodegen': 0.0.6 - '@types/estree': 0.0.51 - '@types/node': 18.19.7 - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - acorn-walk: 7.2.0 - escodegen: 2.1.0 - html-tags: 3.3.1 - lodash: 4.17.21 - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - ts-dedent: 2.2.0 - type-fest: 2.19.0 - util-deprecate: 1.0.2 - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/router@7.6.8': - dependencies: - '@storybook/client-logger': 7.6.8 - memoizerific: 1.11.3 - qs: 6.11.2 - - '@storybook/telemetry@7.6.8': - dependencies: - '@storybook/client-logger': 7.6.8 - '@storybook/core-common': 7.6.8 - '@storybook/csf-tools': 7.6.8 - chalk: 4.1.2 - detect-package-manager: 2.0.1 - fetch-retry: 5.0.6 - fs-extra: 11.2.0 - read-pkg-up: 7.0.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/test@7.6.8': - dependencies: - '@storybook/client-logger': 7.6.8 - '@storybook/core-events': 7.6.8 - '@storybook/instrumenter': 7.6.8 - '@storybook/preview-api': 7.6.8 - '@testing-library/dom': 9.3.4 - '@testing-library/jest-dom': 6.2.0 - '@testing-library/user-event': 14.3.0(@testing-library/dom@9.3.4) - '@types/chai': 4.3.11 - '@vitest/expect': 0.34.7 - '@vitest/spy': 0.34.7 - chai: 4.4.1 - util: 0.12.5 - transitivePeerDependencies: - - '@jest/globals' - - '@types/jest' - - jest - - vitest - - '@storybook/theming@7.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.6.8 - '@storybook/global': 5.0.0 - memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@storybook/types@7.6.8': - dependencies: - '@storybook/channels': 7.6.8 - '@types/babel__core': 7.20.5 - '@types/express': 4.17.21 - file-system-cache: 2.3.0 - - '@swc/core-darwin-arm64@1.3.103': - optional: true - - '@swc/core-darwin-x64@1.3.103': - optional: true - - '@swc/core-linux-arm-gnueabihf@1.3.103': - optional: true - - '@swc/core-linux-arm64-gnu@1.3.103': - optional: true - - '@swc/core-linux-arm64-musl@1.3.103': - optional: true - - '@swc/core-linux-x64-gnu@1.3.103': - optional: true - - '@swc/core-linux-x64-musl@1.3.103': - optional: true - - '@swc/core-win32-arm64-msvc@1.3.103': - optional: true - - '@swc/core-win32-ia32-msvc@1.3.103': - optional: true - - '@swc/core-win32-x64-msvc@1.3.103': - optional: true - - '@swc/core@1.3.103': - dependencies: - '@swc/counter': 0.1.2 - '@swc/types': 0.1.5 - optionalDependencies: - '@swc/core-darwin-arm64': 1.3.103 - '@swc/core-darwin-x64': 1.3.103 - '@swc/core-linux-arm-gnueabihf': 1.3.103 - '@swc/core-linux-arm64-gnu': 1.3.103 - '@swc/core-linux-arm64-musl': 1.3.103 - '@swc/core-linux-x64-gnu': 1.3.103 - '@swc/core-linux-x64-musl': 1.3.103 - '@swc/core-win32-arm64-msvc': 1.3.103 - '@swc/core-win32-ia32-msvc': 1.3.103 - '@swc/core-win32-x64-msvc': 1.3.103 - - '@swc/counter@0.1.2': {} - - '@swc/types@0.1.5': {} - - '@testing-library/dom@9.3.4': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/runtime': 7.23.8 - '@types/aria-query': 5.0.4 - aria-query: 5.1.3 - chalk: 4.1.2 - dom-accessibility-api: 0.5.16 - lz-string: 1.5.0 - pretty-format: 27.5.1 - - '@testing-library/jest-dom@6.2.0': - dependencies: - '@adobe/css-tools': 4.3.2 - '@babel/runtime': 7.23.8 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.6.3 - lodash: 4.17.21 - redent: 3.0.0 - - '@testing-library/user-event@14.3.0(@testing-library/dom@9.3.4)': - dependencies: - '@testing-library/dom': 9.3.4 - - '@trysound/sax@0.2.0': {} - - '@types/aria-query@5.0.4': {} - - '@types/babel__core@7.20.5': - dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.5 - - '@types/babel__generator@7.6.8': - dependencies: - '@babel/types': 7.23.6 - - '@types/babel__template@7.4.4': - dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - - '@types/babel__traverse@7.20.5': - dependencies: - '@babel/types': 7.23.6 - - '@types/body-parser@1.19.5': - dependencies: - '@types/connect': 3.4.38 - '@types/node': 20.11.1 - - '@types/chai@4.3.11': {} - - '@types/connect@3.4.38': - dependencies: - '@types/node': 20.11.1 - - '@types/cross-spawn@6.0.6': - dependencies: - '@types/node': 20.11.1 - - '@types/detect-port@1.3.5': {} - - '@types/doctrine@0.0.3': {} - - '@types/doctrine@0.0.9': {} - - '@types/ejs@3.1.5': {} - - '@types/emscripten@1.39.10': {} - - '@types/escodegen@0.0.6': {} - - '@types/eslint-scope@3.7.7': - dependencies: - '@types/eslint': 8.56.2 - '@types/estree': 1.0.5 - - '@types/eslint@8.56.2': - dependencies: - '@types/estree': 1.0.5 - '@types/json-schema': 7.0.15 - - '@types/estree@0.0.51': {} - - '@types/estree@1.0.5': {} - - '@types/express-serve-static-core@4.17.41': - dependencies: - '@types/node': 20.11.1 - '@types/qs': 6.9.11 - '@types/range-parser': 1.2.7 - '@types/send': 0.17.4 - - '@types/express@4.17.21': - dependencies: - '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.41 - '@types/qs': 6.9.11 - '@types/serve-static': 1.15.5 - - '@types/find-cache-dir@3.2.1': {} - - '@types/graceful-fs@4.1.9': - dependencies: - '@types/node': 20.11.1 - - '@types/html-minifier-terser@6.1.0': {} - - '@types/http-errors@2.0.4': {} - - '@types/istanbul-lib-coverage@2.0.6': {} - - '@types/istanbul-lib-report@3.0.3': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - - '@types/istanbul-reports@3.0.4': - dependencies: - '@types/istanbul-lib-report': 3.0.3 - - '@types/json-schema@7.0.15': {} - - '@types/lodash@4.14.202': {} - - '@types/mdx@2.0.10': {} - - '@types/mime-types@2.1.4': {} - - '@types/mime@1.3.5': {} - - '@types/mime@3.0.4': {} - - '@types/minimist@1.2.5': {} - - '@types/node-fetch@2.6.10': - dependencies: - '@types/node': 18.19.7 - form-data: 4.0.0 - - '@types/node@12.20.55': {} - - '@types/node@18.19.7': - dependencies: - undici-types: 5.26.5 - - '@types/node@20.11.1': - dependencies: - undici-types: 5.26.5 - - '@types/normalize-package-data@2.4.4': {} - - '@types/npmlog@4.1.6': - dependencies: - '@types/node': 20.11.1 - - '@types/parse-json@4.0.2': {} - - '@types/pretty-hrtime@1.0.3': {} - - '@types/prop-types@15.7.11': {} - - '@types/qs@6.9.11': {} - - '@types/range-parser@1.2.7': {} - - '@types/react-dom@18.2.18': - dependencies: - '@types/react': 18.2.48 - - '@types/react@18.2.48': - dependencies: - '@types/prop-types': 15.7.11 - '@types/scheduler': 0.16.8 - csstype: 3.1.3 - - '@types/resolve@1.20.6': {} - - '@types/scheduler@0.16.8': {} - - '@types/semver@7.5.6': {} - - '@types/send@0.17.4': - dependencies: - '@types/mime': 1.3.5 - '@types/node': 20.11.1 - - '@types/serve-static@1.15.5': - dependencies: - '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 20.11.1 - - '@types/unist@2.0.10': {} - - '@types/uuid@9.0.7': {} - - '@types/yargs-parser@21.0.3': {} - - '@types/yargs@16.0.9': - dependencies: - '@types/yargs-parser': 21.0.3 - - '@types/yargs@17.0.32': - dependencies: - '@types/yargs-parser': 21.0.3 - - '@vitest/expect@0.34.7': - dependencies: - '@vitest/spy': 0.34.7 - '@vitest/utils': 0.34.7 - chai: 4.4.1 - - '@vitest/spy@0.34.7': - dependencies: - tinyspy: 2.2.0 - - '@vitest/utils@0.34.7': - dependencies: - diff-sequences: 29.6.3 - loupe: 2.3.7 - pretty-format: 29.7.0 - - '@webassemblyjs/ast@1.11.6': - dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - - '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - - '@webassemblyjs/helper-api-error@1.11.6': {} - - '@webassemblyjs/helper-buffer@1.11.6': {} - - '@webassemblyjs/helper-numbers@1.11.6': - dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 - - '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - - '@webassemblyjs/helper-wasm-section@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - - '@webassemblyjs/ieee754@1.11.6': - dependencies: - '@xtuc/ieee754': 1.2.0 - - '@webassemblyjs/leb128@1.11.6': - dependencies: - '@xtuc/long': 4.2.2 - - '@webassemblyjs/utf8@1.11.6': {} - - '@webassemblyjs/wasm-edit@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 - - '@webassemblyjs/wasm-gen@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - - '@webassemblyjs/wasm-opt@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - - '@webassemblyjs/wasm-parser@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - - '@webassemblyjs/wast-printer@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 - - '@xtuc/ieee754@1.2.0': {} - - '@xtuc/long@4.2.2': {} - - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': - dependencies: - esbuild: 0.18.20 - tslib: 2.6.2 - - '@yarnpkg/fslib@2.10.3': - dependencies: - '@yarnpkg/libzip': 2.3.0 - tslib: 1.14.1 - - '@yarnpkg/libzip@2.3.0': - dependencies: - '@types/emscripten': 1.39.10 - tslib: 1.14.1 - - accepts@1.3.8: - dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 - - acorn-import-assertions@1.9.0(acorn@8.11.3): - dependencies: - acorn: 8.11.3 - - acorn-jsx@5.3.2(acorn@7.4.1): - dependencies: - acorn: 7.4.1 - - acorn-walk@7.2.0: {} - - acorn@7.4.1: {} - - acorn@8.11.3: {} - - address@1.2.2: {} - - agent-base@5.1.1: {} - - aggregate-error@3.1.0: - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - - ajv-formats@2.1.1(ajv@8.12.0): - optionalDependencies: - ajv: 8.12.0 - - ajv-keywords@3.5.2(ajv@6.12.6): - dependencies: - ajv: 6.12.6 - - ajv-keywords@5.1.0(ajv@8.12.0): - dependencies: - ajv: 8.12.0 - fast-deep-equal: 3.1.3 - - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - - ajv@8.12.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - - ansi-colors@4.1.3: {} - - ansi-html-community@0.0.8: {} - - ansi-regex@5.0.1: {} - - ansi-regex@6.0.1: {} - - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 - - ansi-styles@5.2.0: {} - - ansi-styles@6.2.1: {} - - any-promise@1.3.0: {} - - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - - app-root-dir@1.0.2: {} - - aproba@2.0.0: {} - - are-we-there-yet@2.0.0: - dependencies: - delegates: 1.0.0 - readable-stream: 3.6.2 - - arg@5.0.2: {} - - argparse@1.0.10: - dependencies: - sprintf-js: 1.0.3 - - aria-hidden@1.2.3: - dependencies: - tslib: 2.6.2 - - aria-query@5.1.3: - dependencies: - deep-equal: 2.2.3 - - aria-query@5.3.0: - dependencies: - dequal: 2.0.3 - - array-buffer-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - - array-flatten@1.1.1: {} - - array-union@2.1.0: {} - - array.prototype.flat@1.3.2: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.2 - - arraybuffer.prototype.slice@1.0.2: - dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 - - arrify@1.0.1: {} - - assert@2.1.0: - dependencies: - call-bind: 1.0.5 - is-nan: 1.3.2 - object-is: 1.1.5 - object.assign: 4.1.5 - util: 0.12.5 - - assertion-error@1.1.0: {} - - ast-types@0.16.1: - dependencies: - tslib: 2.6.2 - - async-limiter@1.0.1: {} - - async@3.2.5: {} - - asynckit@0.4.0: {} - - autoprefixer@10.4.17(postcss@8.4.38): - dependencies: - browserslist: 4.22.2 - caniuse-lite: 1.0.30001579 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - available-typed-arrays@1.0.5: {} - - babel-core@7.0.0-bridge.0(@babel/core@7.23.7): - dependencies: - '@babel/core': 7.23.7 - - babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - '@babel/core': 7.23.7 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - babel-plugin-add-react-displayname@0.0.5: {} - - babel-plugin-istanbul@6.1.1: - dependencies: - '@babel/helper-plugin-utils': 7.22.5 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.1 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7): - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7): - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) - core-js-compat: 3.35.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7): - dependencies: - '@babel/core': 7.23.7 - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7) - transitivePeerDependencies: - - supports-color - - balanced-match@1.0.2: {} - - base64-js@1.5.1: {} - - better-opn@3.0.2: - dependencies: - open: 8.4.2 - - better-path-resolve@1.0.0: - dependencies: - is-windows: 1.0.2 - - big-integer@1.6.52: {} - - big.js@5.2.2: {} - - binary-extensions@2.2.0: {} - - bl@4.1.0: - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.2 - - body-parser@1.20.1: - dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - - boolbase@1.0.0: {} - - bplist-parser@0.2.0: - dependencies: - big-integer: 1.6.52 - - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - - breakword@1.0.6: - dependencies: - wcwidth: 1.0.1 - - browser-assert@1.2.1: {} - - browserify-zlib@0.1.4: - dependencies: - pako: 0.2.9 - - browserslist@4.22.2: - dependencies: - caniuse-lite: 1.0.30001576 - electron-to-chromium: 1.4.630 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) - - bser@2.1.1: - dependencies: - node-int64: 0.4.0 - - buffer-crc32@0.2.13: {} - - buffer-from@1.1.2: {} - - buffer@5.7.1: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - - bundle-require@4.0.2(esbuild@0.19.11): - dependencies: - esbuild: 0.19.11 - load-tsconfig: 0.2.5 - - bytes@3.0.0: {} - - bytes@3.1.2: {} - - cac@6.7.14: {} - - call-bind@1.0.5: - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.2.0 - - callsites@3.1.0: {} - - camel-case@4.1.2: - dependencies: - pascal-case: 3.1.2 - tslib: 2.6.2 - - camelcase-css@2.0.1: {} - - camelcase-keys@6.2.2: - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - - camelcase@5.3.1: {} - - caniuse-lite@1.0.30001576: {} - - caniuse-lite@1.0.30001579: {} - - case-sensitive-paths-webpack-plugin@2.4.0: {} - - chai@4.4.1: - dependencies: - assertion-error: 1.1.0 - check-error: 1.0.3 - deep-eql: 4.1.3 - get-func-name: 2.0.2 - loupe: 2.3.7 - pathval: 1.1.1 - type-detect: 4.0.8 - - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - - chalk@3.0.0: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chardet@0.7.0: {} - - check-error@1.0.3: - dependencies: - get-func-name: 2.0.2 - - chokidar@3.5.3: - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - - chownr@1.1.4: {} - - chownr@2.0.0: {} - - chromatic@10.6.1: {} - - chrome-trace-event@1.0.3: {} - - ci-info@3.9.0: {} - - citty@0.1.5: - dependencies: - consola: 3.2.3 - - clean-css@5.3.3: - dependencies: - source-map: 0.6.1 - - clean-stack@2.2.0: {} - - cli-cursor@3.1.0: - dependencies: - restore-cursor: 3.1.0 - - cli-spinners@2.9.2: {} - - cli-table3@0.6.3: - dependencies: - string-width: 4.2.3 - optionalDependencies: - '@colors/colors': 1.5.0 - - cliui@6.0.0: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - - cliui@8.0.1: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - - clone-deep@4.0.1: - dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 - - clone@1.0.4: {} - - clsx@2.1.0: {} - - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 - - color-name@1.1.3: {} - - color-name@1.1.4: {} - - color-support@1.1.3: {} - - colorette@2.0.20: {} - - combined-stream@1.0.8: - dependencies: - delayed-stream: 1.0.0 - - commander@2.20.3: {} - - commander@4.1.1: {} - - commander@6.2.1: {} - - commander@7.2.0: {} - - commander@8.3.0: {} - - common-path-prefix@3.0.0: {} - - commondir@1.0.1: {} - - compressible@2.0.18: - dependencies: - mime-db: 1.52.0 - - compression@1.7.4: - dependencies: - accepts: 1.3.8 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - - concat-map@0.0.1: {} - - concat-stream@1.6.2: - dependencies: - buffer-from: 1.1.2 - inherits: 2.0.4 - readable-stream: 2.3.8 - typedarray: 0.0.6 - - concurrently@8.2.2: - dependencies: - chalk: 4.1.2 - date-fns: 2.30.0 - lodash: 4.17.21 - rxjs: 7.8.1 - shell-quote: 1.8.1 - spawn-command: 0.0.2 - supports-color: 8.1.1 - tree-kill: 1.2.2 - yargs: 17.7.2 - - consola@3.2.3: {} - - console-control-strings@1.1.0: {} - - constants-browserify@1.0.0: {} - - content-disposition@0.5.4: - dependencies: - safe-buffer: 5.2.1 - - content-type@1.0.5: {} - - convert-source-map@2.0.0: {} - - cookie-signature@1.0.6: {} - - cookie@0.5.0: {} - - core-js-compat@3.35.0: - dependencies: - browserslist: 4.22.2 - - core-js-pure@3.35.0: {} - - core-js@3.35.1: {} - - core-util-is@1.0.3: {} - - cosmiconfig@7.1.0: - dependencies: - '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - - cross-spawn@5.1.0: - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - - cross-spawn@7.0.3: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - - crypto-random-string@2.0.0: {} - - css-loader@3.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - camelcase: 5.3.1 - cssesc: 3.0.0 - icss-utils: 4.1.1 - loader-utils: 1.4.2 - normalize-path: 3.0.0 - postcss: 7.0.39 - postcss-modules-extract-imports: 2.0.0 - postcss-modules-local-by-default: 3.0.3 - postcss-modules-scope: 2.2.0 - postcss-modules-values: 3.0.0 - postcss-value-parser: 4.2.0 - schema-utils: 2.7.1 - semver: 6.3.1 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - css-loader@6.9.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.38) - postcss-modules-scope: 3.1.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) - postcss-value-parser: 4.2.0 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - css-select@4.3.0: - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 4.3.1 - domutils: 2.8.0 - nth-check: 2.1.1 - - css-select@5.1.0: - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 5.0.3 - domutils: 3.1.0 - nth-check: 2.1.1 - - css-tree@2.2.1: - dependencies: - mdn-data: 2.0.28 - source-map-js: 1.0.2 - - css-tree@2.3.1: - dependencies: - mdn-data: 2.0.30 - source-map-js: 1.0.2 - - css-what@6.1.0: {} - - css.escape@1.5.1: {} - - cssesc@3.0.0: {} - - csso@5.0.5: - dependencies: - css-tree: 2.2.1 - - csstype@3.1.3: {} - - csv-generate@3.4.3: {} - - csv-parse@4.16.3: {} - - csv-stringify@5.6.5: {} - - csv@5.5.3: - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - - date-fns@2.30.0: - dependencies: - '@babel/runtime': 7.23.8 - - debug@2.6.9: - dependencies: - ms: 2.0.0 - - debug@4.3.4: - dependencies: - ms: 2.1.2 - - decamelize-keys@1.1.1: - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - - decamelize@1.2.0: {} - - dedent@0.7.0: {} - - deep-eql@4.1.3: - dependencies: - type-detect: 4.0.8 - - deep-equal@2.2.3: - dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 - es-get-iterator: 1.1.3 - get-intrinsic: 1.2.2 - is-arguments: 1.1.1 - is-array-buffer: 3.0.2 - is-date-object: 1.0.5 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - isarray: 2.0.5 - object-is: 1.1.5 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - side-channel: 1.0.4 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.1 - which-typed-array: 1.1.13 - - deep-rename-keys@0.2.1: - dependencies: - kind-of: 3.2.2 - rename-keys: 1.2.0 - - deepmerge@4.3.1: {} - - default-browser-id@3.0.0: - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 - - defaults@1.0.4: - dependencies: - clone: 1.0.4 - - define-data-property@1.1.1: - dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - - define-lazy-prop@2.0.0: {} - - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 - object-keys: 1.1.1 - - defu@6.1.4: {} - - del@6.1.1: - dependencies: - globby: 11.1.0 - graceful-fs: 4.2.11 - is-glob: 4.0.3 - is-path-cwd: 2.2.0 - is-path-inside: 3.0.3 - p-map: 4.0.0 - rimraf: 3.0.2 - slash: 3.0.0 - - delayed-stream@1.0.0: {} - - delegates@1.0.0: {} - - depd@2.0.0: {} - - dequal@2.0.3: {} - - destroy@1.2.0: {} - - detect-indent@6.1.0: {} - - detect-node-es@1.1.0: {} - - detect-package-manager@2.0.1: - dependencies: - execa: 5.1.1 - - detect-port@1.5.1: - dependencies: - address: 1.2.2 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - - didyoumean@1.2.2: {} - - diff-sequences@29.6.3: {} - - dir-glob@3.0.1: - dependencies: - path-type: 4.0.0 - - dlv@1.1.3: {} - - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - - dom-accessibility-api@0.5.16: {} - - dom-accessibility-api@0.6.3: {} - - dom-converter@0.2.0: - dependencies: - utila: 0.4.0 - - dom-serializer@1.4.1: - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 - - dom-serializer@2.0.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 - - domelementtype@2.3.0: {} - - domhandler@4.3.1: - dependencies: - domelementtype: 2.3.0 - - domhandler@5.0.3: - dependencies: - domelementtype: 2.3.0 - - domutils@2.8.0: - dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 - - domutils@3.1.0: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - - dot-case@3.0.4: - dependencies: - no-case: 3.0.4 - tslib: 2.6.2 - - dotenv-expand@10.0.0: {} - - dotenv@16.3.1: {} - - duplexify@3.7.1: - dependencies: - end-of-stream: 1.4.4 - inherits: 2.0.4 - readable-stream: 2.3.8 - stream-shift: 1.0.2 - - eastasianwidth@0.2.0: {} - - ee-first@1.1.1: {} - - ejs@3.1.9: - dependencies: - jake: 10.8.7 - - electron-to-chromium@1.4.630: {} - - emoji-regex@8.0.0: {} - - emoji-regex@9.2.2: {} - - emojis-list@3.0.0: {} - - encodeurl@1.0.2: {} - - end-of-stream@1.4.4: - dependencies: - once: 1.4.0 - - endent@2.1.0: - dependencies: - dedent: 0.7.0 - fast-json-parse: 1.0.3 - objectorarray: 1.0.5 - - enhanced-resolve@5.15.0: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - - enquirer@2.4.1: - dependencies: - ansi-colors: 4.1.3 - strip-ansi: 6.0.1 - - entities@2.2.0: {} - - entities@4.5.0: {} - - envinfo@7.11.0: {} - - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - - error-stack-parser@2.1.4: - dependencies: - stackframe: 1.3.4 - - es-abstract@1.22.3: - dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.12 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.1.0 - safe-regex-test: 1.0.2 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 - - es-get-iterator@1.1.3: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - is-arguments: 1.1.1 - is-map: 2.0.2 - is-set: 2.0.2 - is-string: 1.0.7 - isarray: 2.0.5 - stop-iteration-iterator: 1.0.0 - - es-module-lexer@1.4.1: {} - - es-set-tostringtag@2.0.2: - dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 - - es-shim-unscopables@1.0.2: - dependencies: - hasown: 2.0.0 - - es-to-primitive@1.2.1: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - - esbuild-plugin-alias@0.2.1: {} - - esbuild-register@3.5.0(esbuild@0.18.20): - dependencies: - debug: 4.3.4 - esbuild: 0.18.20 - transitivePeerDependencies: - - supports-color - - esbuild@0.18.20: - optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 - - esbuild@0.19.11: - optionalDependencies: - '@esbuild/aix-ppc64': 0.19.11 - '@esbuild/android-arm': 0.19.11 - '@esbuild/android-arm64': 0.19.11 - '@esbuild/android-x64': 0.19.11 - '@esbuild/darwin-arm64': 0.19.11 - '@esbuild/darwin-x64': 0.19.11 - '@esbuild/freebsd-arm64': 0.19.11 - '@esbuild/freebsd-x64': 0.19.11 - '@esbuild/linux-arm': 0.19.11 - '@esbuild/linux-arm64': 0.19.11 - '@esbuild/linux-ia32': 0.19.11 - '@esbuild/linux-loong64': 0.19.11 - '@esbuild/linux-mips64el': 0.19.11 - '@esbuild/linux-ppc64': 0.19.11 - '@esbuild/linux-riscv64': 0.19.11 - '@esbuild/linux-s390x': 0.19.11 - '@esbuild/linux-x64': 0.19.11 - '@esbuild/netbsd-x64': 0.19.11 - '@esbuild/openbsd-x64': 0.19.11 - '@esbuild/sunos-x64': 0.19.11 - '@esbuild/win32-arm64': 0.19.11 - '@esbuild/win32-ia32': 0.19.11 - '@esbuild/win32-x64': 0.19.11 - - escalade@3.1.1: {} - - escape-html@1.0.3: {} - - escape-string-regexp@1.0.5: {} - - escodegen@2.1.0: - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - - eslint-scope@5.1.1: - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - - esprima@4.0.1: {} - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@4.3.0: {} - - estraverse@5.3.0: {} - - esutils@2.0.3: {} - - etag@1.8.1: {} - - eventemitter3@2.0.3: {} - - events@3.3.0: {} - - execa@5.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - execa@8.0.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.2.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - - express@4.18.2: - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.1 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.11.0 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - - extend@3.0.2: {} - - extendable-error@0.1.7: {} - - external-editor@3.1.0: - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - - extract-zip@1.7.0: - dependencies: - concat-stream: 1.6.2 - debug: 2.6.9 - mkdirp: 0.5.6 - yauzl: 2.10.0 - transitivePeerDependencies: - - supports-color - - fast-deep-equal@3.1.3: {} - - fast-glob@3.3.2: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 - - fast-json-parse@1.0.3: {} - - fast-json-stable-stringify@2.1.0: {} - - fastq@1.16.0: - dependencies: - reusify: 1.0.4 - - fb-watchman@2.0.2: - dependencies: - bser: 2.1.1 - - fd-slicer@1.1.0: - dependencies: - pend: 1.2.0 - - fetch-retry@5.0.6: {} - - file-system-cache@2.3.0: - dependencies: - fs-extra: 11.1.1 - ramda: 0.29.0 - - filelist@1.0.4: - dependencies: - minimatch: 5.1.6 - - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - - finalhandler@1.2.0: - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - - find-cache-dir@2.1.0: - dependencies: - commondir: 1.0.1 - make-dir: 2.1.0 - pkg-dir: 3.0.0 - - find-cache-dir@3.3.2: - dependencies: - commondir: 1.0.1 - make-dir: 3.1.0 - pkg-dir: 4.2.0 - - find-cache-dir@4.0.0: - dependencies: - common-path-prefix: 3.0.0 - pkg-dir: 7.0.0 - - find-up@3.0.0: - dependencies: - locate-path: 3.0.0 - - find-up@4.1.0: - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 - - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - - find-up@6.3.0: - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - - find-yarn-workspace-root2@1.2.16: - dependencies: - micromatch: 4.0.5 - pkg-dir: 4.2.0 - - flat-cache@3.2.0: - dependencies: - flatted: 3.2.9 - keyv: 4.5.4 - rimraf: 3.0.2 - - flatted@3.2.9: {} - - flow-parser@0.226.0: {} - - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - - foreground-child@3.1.1: - dependencies: - cross-spawn: 7.0.3 - signal-exit: 4.1.0 - - fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - '@babel/code-frame': 7.23.5 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.1.0 - deepmerge: 4.3.1 - fs-extra: 10.1.0 - memfs: 3.5.3 - minimatch: 3.1.2 - node-abort-controller: 3.1.1 - schema-utils: 3.3.0 - semver: 7.5.4 - tapable: 2.2.1 - typescript: 4.9.5 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - form-data@4.0.0: - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 - - forwarded@0.2.0: {} - - fraction.js@4.3.7: {} - - fresh@0.5.2: {} - - fs-constants@1.0.0: {} - - fs-extra@10.1.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-extra@11.1.1: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-extra@11.2.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-extra@7.0.1: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - - fs-extra@8.1.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - - fs-minipass@2.1.0: - dependencies: - minipass: 3.3.6 - - fs-monkey@1.0.5: {} - - fs.realpath@1.0.0: {} - - fsevents@2.3.3: - optional: true - - function-bind@1.1.2: {} - - function.prototype.name@1.1.6: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - functions-have-names: 1.2.3 - - functions-have-names@1.2.3: {} - - gauge@3.0.2: - dependencies: - aproba: 2.0.0 - color-support: 1.1.3 - console-control-strings: 1.1.0 - has-unicode: 2.0.1 - object-assign: 4.1.1 - signal-exit: 3.0.7 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wide-align: 1.1.5 - - gensync@1.0.0-beta.2: {} - - get-caller-file@2.0.5: {} - - get-func-name@2.0.2: {} - - get-intrinsic@1.2.2: - dependencies: - function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - - get-nonce@1.0.1: {} - - get-npm-tarball-url@2.1.0: {} - - get-package-type@0.1.0: {} - - get-port@5.1.1: {} - - get-stream@6.0.1: {} - - get-stream@8.0.1: {} - - get-symbol-description@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - - giget@1.2.1: - dependencies: - citty: 0.1.5 - consola: 3.2.3 - defu: 6.1.4 - node-fetch-native: 1.6.1 - nypm: 0.3.4 - ohash: 1.1.3 - pathe: 1.1.2 - tar: 6.2.0 - - github-slugger@1.5.0: {} - - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - glob-to-regexp@0.4.1: {} - - glob@10.3.10: - dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 - minimatch: 9.0.3 - minipass: 7.0.4 - path-scurry: 1.10.1 - - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - globals@11.12.0: {} - - globalthis@1.0.3: - dependencies: - define-properties: 1.2.1 - - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.3.0 - merge2: 1.4.1 - slash: 3.0.0 - - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - - graceful-fs@4.2.11: {} - - grapheme-splitter@1.0.4: {} - - gunzip-maybe@1.4.2: - dependencies: - browserify-zlib: 0.1.4 - is-deflate: 1.0.0 - is-gzip: 1.0.0 - peek-stream: 1.1.3 - pumpify: 1.5.1 - through2: 2.0.5 - - handlebars@4.7.8: - dependencies: - minimist: 1.2.8 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.17.4 - - hard-rejection@2.1.0: {} - - has-bigints@1.0.2: {} - - has-flag@3.0.0: {} - - has-flag@4.0.0: {} - - has-property-descriptors@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - - has-proto@1.0.1: {} - - has-symbols@1.0.3: {} - - has-tostringtag@1.0.0: - dependencies: - has-symbols: 1.0.3 - - has-unicode@2.0.1: {} - - hasown@2.0.0: - dependencies: - function-bind: 1.1.2 - - he@1.2.0: {} - - hosted-git-info@2.8.9: {} - - html-entities@2.4.0: {} - - html-minifier-terser@6.1.0: - dependencies: - camel-case: 4.1.2 - clean-css: 5.3.3 - commander: 8.3.0 - he: 1.2.0 - param-case: 3.0.4 - relateurl: 0.2.7 - terser: 5.26.0 - - html-tags@3.3.1: {} - - html-webpack-plugin@5.6.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - '@types/html-minifier-terser': 6.1.0 - html-minifier-terser: 6.1.0 - lodash: 4.17.21 - pretty-error: 4.0.0 - tapable: 2.2.1 - optionalDependencies: - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - htmlparser2@6.1.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - domutils: 2.8.0 - entities: 2.2.0 - - http-errors@2.0.0: - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - - https-proxy-agent@4.0.0: - dependencies: - agent-base: 5.1.1 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - - human-id@1.0.2: {} - - human-signals@2.1.0: {} - - human-signals@5.0.0: {} - - husky@8.0.3: {} - - iconv-lite@0.4.24: - dependencies: - safer-buffer: 2.1.2 - - icss-utils@4.1.1: - dependencies: - postcss: 7.0.39 - - icss-utils@5.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - ieee754@1.2.1: {} - - ignore@5.3.0: {} - - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - imurmurhash@0.1.4: {} - - indent-string@4.0.0: {} - - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - - inherits@2.0.4: {} - - internal-slot@1.0.6: - dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 - - invariant@2.2.4: - dependencies: - loose-envify: 1.4.0 - - ip@2.0.0: {} - - ipaddr.js@1.9.1: {} - - is-absolute-url@3.0.3: {} - - is-arguments@1.1.1: - dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - - is-array-buffer@3.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - - is-arrayish@0.2.1: {} - - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.2.0 - - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - - is-buffer@1.1.6: {} - - is-callable@1.2.7: {} - - is-core-module@2.13.1: - dependencies: - hasown: 2.0.0 - - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.0 - - is-deflate@1.0.0: {} - - is-docker@2.2.1: {} - - is-extglob@2.1.1: {} - - is-fullwidth-code-point@3.0.0: {} - - is-generator-function@1.0.10: - dependencies: - has-tostringtag: 1.0.0 - - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - - is-gzip@1.0.0: {} - - is-interactive@1.0.0: {} - - is-map@2.0.2: {} - - is-nan@1.3.2: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - - is-negative-zero@2.0.2: {} - - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - - is-number@7.0.0: {} - - is-path-cwd@2.2.0: {} - - is-path-inside@3.0.3: {} - - is-plain-obj@1.1.0: {} - - is-plain-object@2.0.4: - dependencies: - isobject: 3.0.1 - - is-plain-object@5.0.0: {} - - is-regex@1.1.4: - dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - - is-set@2.0.2: {} - - is-shared-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.5 - - is-stream@2.0.1: {} - - is-stream@3.0.0: {} - - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - - is-subdir@1.2.0: - dependencies: - better-path-resolve: 1.0.0 - - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - - is-typed-array@1.1.12: - dependencies: - which-typed-array: 1.1.13 - - is-unicode-supported@0.1.0: {} - - is-weakmap@2.0.1: {} - - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.5 - - is-weakset@2.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - - is-windows@1.0.2: {} - - is-wsl@2.2.0: - dependencies: - is-docker: 2.2.1 - - isarray@1.0.0: {} - - isarray@2.0.5: {} - - isexe@2.0.0: {} - - isobject@3.0.1: {} - - istanbul-lib-coverage@3.2.2: {} - - istanbul-lib-instrument@5.2.1: - dependencies: - '@babel/core': 7.23.7 - '@babel/parser': 7.23.6 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - jackspeak@2.3.6: - dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 - - jake@10.8.7: - dependencies: - async: 3.2.5 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 - - jest-haste-map@29.7.0: - dependencies: - '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.11.1 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.11 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - jest-worker: 29.7.0 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.3 - - jest-mock@27.5.1: - dependencies: - '@jest/types': 27.5.1 - '@types/node': 20.11.1 - - jest-regex-util@29.6.3: {} - - jest-util@29.7.0: - dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.11.1 - chalk: 4.1.2 - ci-info: 3.9.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 - - jest-worker@27.5.1: - dependencies: - '@types/node': 20.11.1 - merge-stream: 2.0.0 - supports-color: 8.1.1 - - jest-worker@29.7.0: - dependencies: - '@types/node': 20.11.1 - jest-util: 29.7.0 - merge-stream: 2.0.0 - supports-color: 8.1.1 - - jiti@1.21.0: {} - - joycon@3.1.1: {} - - js-tokens@4.0.0: {} - - js-yaml@3.14.1: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - - jscodeshift@0.15.1(@babel/preset-env@7.23.8(@babel/core@7.23.7)): - dependencies: - '@babel/core': 7.23.7 - '@babel/parser': 7.23.6 - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7) - '@babel/preset-flow': 7.23.3(@babel/core@7.23.7) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7) - '@babel/register': 7.23.7(@babel/core@7.23.7) - babel-core: 7.0.0-bridge.0(@babel/core@7.23.7) - chalk: 4.1.2 - flow-parser: 0.226.0 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.23.4 - temp: 0.8.4 - write-file-atomic: 2.4.3 - optionalDependencies: - '@babel/preset-env': 7.23.8(@babel/core@7.23.7) - transitivePeerDependencies: - - supports-color - - jsesc@0.5.0: {} - - jsesc@2.5.2: {} - - json-buffer@3.0.1: {} - - json-parse-even-better-errors@2.3.1: {} - - json-schema-traverse@0.4.1: {} - - json-schema-traverse@1.0.0: {} - - json5@1.0.2: - dependencies: - minimist: 1.2.8 - - json5@2.2.3: {} - - jsonfile@4.0.0: - optionalDependencies: - graceful-fs: 4.2.11 - - jsonfile@6.1.0: - dependencies: - universalify: 2.0.1 - optionalDependencies: - graceful-fs: 4.2.11 - - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - - kind-of@3.2.2: - dependencies: - is-buffer: 1.1.6 - - kind-of@6.0.3: {} - - kleur@3.0.3: {} - - kleur@4.1.5: {} - - klona@2.0.6: {} - - lazy-universal-dotenv@4.0.0: - dependencies: - app-root-dir: 1.0.2 - dotenv: 16.3.1 - dotenv-expand: 10.0.0 - - leven@3.1.0: {} - - lilconfig@2.1.0: {} - - lilconfig@3.0.0: {} - - lines-and-columns@1.2.4: {} - - load-tsconfig@0.2.5: {} - - load-yaml-file@0.2.0: - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - - loader-runner@4.3.0: {} - - loader-utils@1.4.2: - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 1.0.2 - - loader-utils@2.0.4: - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - - locate-path@3.0.0: - dependencies: - p-locate: 3.0.0 - path-exists: 3.0.0 - - locate-path@5.0.0: - dependencies: - p-locate: 4.1.0 - - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - - locate-path@7.2.0: - dependencies: - p-locate: 6.0.0 - - lodash.debounce@4.0.8: {} - - lodash.sortby@4.7.0: {} - - lodash.startcase@4.4.0: {} - - lodash@4.17.21: {} - - log-symbols@4.1.0: - dependencies: - chalk: 4.1.2 - is-unicode-supported: 0.1.0 - - loose-envify@1.4.0: - dependencies: - js-tokens: 4.0.0 - - loupe@2.3.7: - dependencies: - get-func-name: 2.0.2 - - lower-case@2.0.2: - dependencies: - tslib: 2.6.2 - - lru-cache@10.1.0: {} - - lru-cache@4.1.5: - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - - lru-cache@5.1.1: - dependencies: - yallist: 3.1.1 - - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - - lz-string@1.5.0: {} - - magic-string@0.30.5: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - - make-dir@2.1.0: - dependencies: - pify: 4.0.1 - semver: 5.7.2 - - make-dir@3.1.0: - dependencies: - semver: 6.3.1 - - makeerror@1.0.12: - dependencies: - tmpl: 1.0.5 - - map-obj@1.0.1: {} - - map-obj@4.3.0: {} - - map-or-similar@1.5.0: {} - - markdown-to-jsx@7.4.0(react@18.2.0): - dependencies: - react: 18.2.0 - - mdast-util-definitions@4.0.0: - dependencies: - unist-util-visit: 2.0.3 - - mdast-util-to-string@1.1.0: {} - - mdn-data@2.0.28: {} - - mdn-data@2.0.30: {} - - media-typer@0.3.0: {} - - memfs@3.5.3: - dependencies: - fs-monkey: 1.0.5 - - memoizerific@1.11.3: - dependencies: - map-or-similar: 1.5.0 - - meow@6.1.1: - dependencies: - '@types/minimist': 1.2.5 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 - - merge-descriptors@1.0.1: {} - - merge-stream@2.0.0: {} - - merge2@1.4.1: {} - - methods@1.1.2: {} - - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - - mime-db@1.52.0: {} - - mime-types@2.1.35: - dependencies: - mime-db: 1.52.0 - - mime@1.6.0: {} - - mime@2.6.0: {} - - mimic-fn@2.1.0: {} - - mimic-fn@4.0.0: {} - - min-indent@1.0.1: {} - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.1 - - minimatch@9.0.3: - dependencies: - brace-expansion: 2.0.1 - - minimist-options@4.1.0: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - - minimist@1.2.8: {} - - minipass@3.3.6: - dependencies: - yallist: 4.0.0 - - minipass@5.0.0: {} - - minipass@7.0.4: {} - - minizlib@2.1.2: - dependencies: - minipass: 3.3.6 - yallist: 4.0.0 - - mixme@0.5.10: {} - - mkdirp-classic@0.5.3: {} - - mkdirp@0.5.6: - dependencies: - minimist: 1.2.8 - - mkdirp@1.0.4: {} - - ms@2.0.0: {} - - ms@2.1.2: {} - - ms@2.1.3: {} - - mz@2.7.0: - dependencies: - any-promise: 1.3.0 - object-assign: 4.1.1 - thenify-all: 1.6.0 - - nanoid@3.3.7: {} - - negotiator@0.6.3: {} - - neo-async@2.6.2: {} - - no-case@3.0.4: - dependencies: - lower-case: 2.0.2 - tslib: 2.6.2 - - node-abort-controller@3.1.1: {} - - node-dir@0.1.17: - dependencies: - minimatch: 3.1.2 - - node-fetch-native@1.6.1: {} - - node-fetch@2.7.0: - dependencies: - whatwg-url: 5.0.0 - - node-int64@0.4.0: {} - - node-releases@2.0.14: {} - - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 5.7.2 - validate-npm-package-license: 3.0.4 - - normalize-path@3.0.0: {} - - normalize-range@0.1.2: {} - - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - - npm-run-path@5.2.0: - dependencies: - path-key: 4.0.0 - - npmlog@5.0.1: - dependencies: - are-we-there-yet: 2.0.0 - console-control-strings: 1.1.0 - gauge: 3.0.2 - set-blocking: 2.0.0 - - nth-check@2.1.1: - dependencies: - boolbase: 1.0.0 - - nypm@0.3.4: - dependencies: - citty: 0.1.5 - execa: 8.0.1 - pathe: 1.1.2 - ufo: 1.3.2 - - object-assign@4.1.1: {} - - object-hash@3.0.0: {} - - object-inspect@1.13.1: {} - - object-is@1.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - - object-keys@1.1.1: {} - - object.assign@4.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - - objectorarray@1.0.5: {} - - ohash@1.1.3: {} - - on-finished@2.4.1: - dependencies: - ee-first: 1.1.1 - - on-headers@1.0.2: {} - - once@1.4.0: - dependencies: - wrappy: 1.0.2 - - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 - - onetime@6.0.0: - dependencies: - mimic-fn: 4.0.0 - - open@8.4.2: - dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - - ora@5.4.1: - dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.9.2 - is-interactive: 1.0.0 - is-unicode-supported: 0.1.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - - os-tmpdir@1.0.2: {} - - outdent@0.5.0: {} - - p-filter@2.1.0: - dependencies: - p-map: 2.1.0 - - p-limit@2.3.0: - dependencies: - p-try: 2.2.0 - - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-limit@4.0.0: - dependencies: - yocto-queue: 1.0.0 - - p-locate@3.0.0: - dependencies: - p-limit: 2.3.0 - - p-locate@4.1.0: - dependencies: - p-limit: 2.3.0 - - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - p-locate@6.0.0: - dependencies: - p-limit: 4.0.0 - - p-map@2.1.0: {} - - p-map@4.0.0: - dependencies: - aggregate-error: 3.1.0 - - p-try@2.2.0: {} - - pako@0.2.9: {} - - param-case@3.0.4: - dependencies: - dot-case: 3.0.4 - tslib: 2.6.2 - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.23.5 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - - parseurl@1.3.3: {} - - pascal-case@3.1.2: - dependencies: - no-case: 3.0.4 - tslib: 2.6.2 - - path-browserify@1.0.1: {} - - path-exists@3.0.0: {} - - path-exists@4.0.0: {} - - path-exists@5.0.0: {} - - path-is-absolute@1.0.1: {} - - path-key@3.1.1: {} - - path-key@4.0.0: {} - - path-parse@1.0.7: {} - - path-scurry@1.10.1: - dependencies: - lru-cache: 10.1.0 - minipass: 7.0.4 - - path-to-regexp@0.1.7: {} - - path-type@4.0.0: {} - - pathe@1.1.2: {} - - pathval@1.1.1: {} - - peek-stream@1.1.3: - dependencies: - buffer-from: 1.1.2 - duplexify: 3.7.1 - through2: 2.0.5 - - pend@1.2.0: {} - - picocolors@0.2.1: {} - - picocolors@1.0.0: {} - - picomatch@2.3.1: {} - - pify@2.3.0: {} - - pify@4.0.1: {} - - pirates@4.0.6: {} - - pkg-dir@3.0.0: - dependencies: - find-up: 3.0.0 - - pkg-dir@4.2.0: - dependencies: - find-up: 4.1.0 - - pkg-dir@5.0.0: - dependencies: - find-up: 5.0.0 - - pkg-dir@7.0.0: - dependencies: - find-up: 6.3.0 - - polished@4.2.2: - dependencies: - '@babel/runtime': 7.23.8 - - postcss-import@15.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 - - postcss-js@4.0.1(postcss@8.4.38): - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.38 - - postcss-load-config@4.0.2(postcss@8.4.38): - dependencies: - lilconfig: 3.0.0 - yaml: 2.3.4 - optionalDependencies: - postcss: 8.4.38 - - postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.6 - loader-utils: 2.0.4 - postcss: 7.0.39 - schema-utils: 3.3.0 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - postcss-modules-extract-imports@2.0.0: - dependencies: - postcss: 7.0.39 - - postcss-modules-extract-imports@3.0.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-modules-local-by-default@3.0.3: - dependencies: - icss-utils: 4.1.1 - postcss: 7.0.39 - postcss-selector-parser: 6.0.15 - postcss-value-parser: 4.2.0 - - postcss-modules-local-by-default@4.0.3(postcss@8.4.38): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-selector-parser: 6.0.15 - postcss-value-parser: 4.2.0 - - postcss-modules-scope@2.2.0: - dependencies: - postcss: 7.0.39 - postcss-selector-parser: 6.0.15 - - postcss-modules-scope@3.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.0.15 - - postcss-modules-values@3.0.0: - dependencies: - icss-utils: 4.1.1 - postcss: 7.0.39 - - postcss-modules-values@4.0.0(postcss@8.4.38): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - - postcss-nested@6.0.1(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.0.15 - - postcss-selector-parser@6.0.15: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-value-parser@4.2.0: {} - - postcss@7.0.39: - dependencies: - picocolors: 0.2.1 - source-map: 0.6.1 - - postcss@8.4.38: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.2.0 - - preferred-pm@3.1.2: - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 - - prettier@2.8.8: {} - - prettier@3.2.5: {} - - pretty-error@4.0.0: - dependencies: - lodash: 4.17.21 - renderkid: 3.0.0 - - pretty-format@27.5.1: - dependencies: - ansi-regex: 5.0.1 - ansi-styles: 5.2.0 - react-is: 17.0.2 - - pretty-format@29.7.0: - dependencies: - '@jest/schemas': 29.6.3 - ansi-styles: 5.2.0 - react-is: 18.2.0 - - pretty-hrtime@1.0.3: {} - - process-nextick-args@2.0.1: {} - - process@0.11.10: {} - - progress@2.0.3: {} - - prompts@2.4.2: - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 - - prop-types@15.8.1: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - - proxy-addr@2.0.7: - dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 - - proxy-from-env@1.1.0: {} - - pseudomap@1.0.2: {} - - pump@2.0.1: - dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 - - pump@3.0.0: - dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 - - pumpify@1.5.1: - dependencies: - duplexify: 3.7.1 - inherits: 2.0.4 - pump: 2.0.1 - - punycode@1.4.1: {} - - punycode@2.3.1: {} - - puppeteer-core@2.1.1: - dependencies: - '@types/mime-types': 2.1.4 - debug: 4.3.4 - extract-zip: 1.7.0 - https-proxy-agent: 4.0.0 - mime: 2.6.0 - mime-types: 2.1.35 - progress: 2.0.3 - proxy-from-env: 1.1.0 - rimraf: 2.7.1 - ws: 6.2.2 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - qs@6.11.0: - dependencies: - side-channel: 1.0.4 - - qs@6.11.2: - dependencies: - side-channel: 1.0.4 - - queue-microtask@1.2.3: {} - - quick-lru@4.0.1: {} - - ramda@0.29.0: {} - - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - - range-parser@1.2.1: {} - - raw-body@2.5.1: - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - - react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - react-confetti@6.1.0(react@18.2.0): - dependencies: - react: 18.2.0 - tween-functions: 1.2.0 - - react-docgen-typescript@2.2.2(typescript@4.9.5): - dependencies: - typescript: 4.9.5 - - react-docgen@7.0.3: - dependencies: - '@babel/core': 7.23.7 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 - '@types/doctrine': 0.0.9 - '@types/resolve': 1.20.6 - doctrine: 3.0.0 - resolve: 1.22.8 - strip-indent: 4.0.0 - transitivePeerDependencies: - - supports-color - - react-dom@18.2.0(react@18.2.0): - dependencies: - loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 - - react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@base2/pretty-print-object': 1.0.1 - is-plain-object: 5.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-is: 18.1.0 - - react-is@16.13.1: {} - - react-is@17.0.2: {} - - react-is@18.1.0: {} - - react-is@18.2.0: {} - - react-refresh@0.14.0: {} - - react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0): - dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) - tslib: 2.6.2 - optionalDependencies: - '@types/react': 18.2.48 - - react-remove-scroll@2.5.5(@types/react@18.2.48)(react@18.2.0): - dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) - tslib: 2.6.2 - use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.48 - - react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0): - dependencies: - get-nonce: 1.0.1 - invariant: 2.2.4 - react: 18.2.0 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 18.2.48 - - react@18.2.0: - dependencies: - loose-envify: 1.4.0 - - read-cache@1.0.0: - dependencies: - pify: 2.3.0 - - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - - read-pkg@5.2.0: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - - read-yaml-file@1.1.0: - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - - readable-stream@2.3.8: - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - - readable-stream@3.6.2: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 - - recast@0.23.4: - dependencies: - assert: 2.1.0 - ast-types: 0.16.1 - esprima: 4.0.1 - source-map: 0.6.1 - tslib: 2.6.2 - - redent@3.0.0: - dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 - - regenerate-unicode-properties@10.1.1: - dependencies: - regenerate: 1.4.2 - - regenerate@1.4.2: {} - - regenerator-runtime@0.14.1: {} - - regenerator-transform@0.15.2: - dependencies: - '@babel/runtime': 7.23.8 - - regexp.prototype.flags@1.5.1: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - set-function-name: 2.0.1 - - regexpu-core@5.3.2: - dependencies: - '@babel/regjsgen': 0.8.0 - regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 - - regjsparser@0.9.1: - dependencies: - jsesc: 0.5.0 - - relateurl@0.2.7: {} - - remark-external-links@8.0.0: - dependencies: - extend: 3.0.2 - is-absolute-url: 3.0.3 - mdast-util-definitions: 4.0.0 - space-separated-tokens: 1.1.5 - unist-util-visit: 2.0.3 - - remark-slug@6.1.0: - dependencies: - github-slugger: 1.5.0 - mdast-util-to-string: 1.1.0 - unist-util-visit: 2.0.3 - - rename-keys@1.2.0: {} - - renderkid@3.0.0: - dependencies: - css-select: 4.3.0 - dom-converter: 0.2.0 - htmlparser2: 6.1.0 - lodash: 4.17.21 - strip-ansi: 6.0.1 - - require-directory@2.1.1: {} - - require-from-string@2.0.2: {} - - require-main-filename@2.0.0: {} - - resolve-from@4.0.0: {} - - resolve-from@5.0.0: {} - - resolve@1.22.8: - dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - restore-cursor@3.1.0: - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - - reusify@1.0.4: {} - - rimraf@2.6.3: - dependencies: - glob: 7.2.3 - - rimraf@2.7.1: - dependencies: - glob: 7.2.3 - - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - - rollup@4.9.6: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.9.6 - '@rollup/rollup-android-arm64': 4.9.6 - '@rollup/rollup-darwin-arm64': 4.9.6 - '@rollup/rollup-darwin-x64': 4.9.6 - '@rollup/rollup-linux-arm-gnueabihf': 4.9.6 - '@rollup/rollup-linux-arm64-gnu': 4.9.6 - '@rollup/rollup-linux-arm64-musl': 4.9.6 - '@rollup/rollup-linux-riscv64-gnu': 4.9.6 - '@rollup/rollup-linux-x64-gnu': 4.9.6 - '@rollup/rollup-linux-x64-musl': 4.9.6 - '@rollup/rollup-win32-arm64-msvc': 4.9.6 - '@rollup/rollup-win32-ia32-msvc': 4.9.6 - '@rollup/rollup-win32-x64-msvc': 4.9.6 - fsevents: 2.3.3 - - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - - rxjs@7.8.1: - dependencies: - tslib: 2.6.2 - - safe-array-concat@1.1.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - isarray: 2.0.5 - - safe-buffer@5.1.2: {} - - safe-buffer@5.2.1: {} - - safe-regex-test@1.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-regex: 1.1.4 - - safer-buffer@2.1.2: {} - - scheduler@0.23.0: - dependencies: - loose-envify: 1.4.0 - - schema-utils@2.7.1: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - - schema-utils@3.3.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - - schema-utils@4.2.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - ajv-keywords: 5.1.0(ajv@8.12.0) - - semver@5.7.2: {} - - semver@6.3.1: {} - - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - - send@0.18.0: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - - serialize-javascript@6.0.2: - dependencies: - randombytes: 2.1.0 - - serve-static@1.15.0: - dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.18.0 - transitivePeerDependencies: - - supports-color - - set-blocking@2.0.0: {} - - set-function-length@1.2.0: - dependencies: - define-data-property: 1.1.1 - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - - set-function-name@2.0.1: - dependencies: - define-data-property: 1.1.1 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 - - setprototypeof@1.2.0: {} - - shallow-clone@3.0.1: - dependencies: - kind-of: 6.0.3 - - shebang-command@1.2.0: - dependencies: - shebang-regex: 1.0.0 - - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - - shebang-regex@1.0.0: {} - - shebang-regex@3.0.0: {} - - shell-quote@1.8.1: {} - - side-channel@1.0.4: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 - - signal-exit@3.0.7: {} - - signal-exit@4.1.0: {} - - simple-update-notifier@2.0.0: - dependencies: - semver: 7.5.4 - - sisteransi@1.0.5: {} - - slash@3.0.0: {} - - smartwrap@2.0.2: - dependencies: - array.prototype.flat: 1.3.2 - breakword: 1.0.6 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - - source-map-js@1.0.2: {} - - source-map-js@1.2.0: {} - - source-map-support@0.5.21: - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - - source-map@0.6.1: {} - - source-map@0.7.4: {} - - source-map@0.8.0-beta.0: - dependencies: - whatwg-url: 7.1.0 - - space-separated-tokens@1.1.5: {} - - spawn-command@0.0.2: {} - - spawndamnit@2.0.0: - dependencies: - cross-spawn: 5.1.0 - signal-exit: 3.0.7 - - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 - - spdx-exceptions@2.3.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.16 - - spdx-license-ids@3.0.16: {} - - sprintf-js@1.0.3: {} - - stackframe@1.3.4: {} - - statuses@2.0.1: {} - - stop-iteration-iterator@1.0.0: - dependencies: - internal-slot: 1.0.6 - - store2@2.14.2: {} - - storybook@7.6.8: - dependencies: - '@storybook/cli': 7.6.8 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - stream-shift@1.0.2: {} - - stream-transform@2.1.3: - dependencies: - mixme: 0.5.10 - - string-width@4.2.3: - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 - - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 - - string.prototype.trim@1.2.8: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - - string.prototype.trimend@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - - string.prototype.trimstart@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - - string_decoder@1.1.1: - dependencies: - safe-buffer: 5.1.2 - - string_decoder@1.3.0: - dependencies: - safe-buffer: 5.2.1 - - strip-ansi@6.0.1: - dependencies: - ansi-regex: 5.0.1 - - strip-ansi@7.1.0: - dependencies: - ansi-regex: 6.0.1 - - strip-bom@3.0.0: {} - - strip-final-newline@2.0.0: {} - - strip-final-newline@3.0.0: {} - - strip-indent@3.0.0: - dependencies: - min-indent: 1.0.1 - - strip-indent@4.0.0: - dependencies: - min-indent: 1.0.1 - - strip-json-comments@3.1.1: {} - - style-loader@1.3.0(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - loader-utils: 2.0.4 - schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - style-loader@3.3.4(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - sucrase@3.35.0: - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - commander: 4.1.1 - glob: 10.3.10 - lines-and-columns: 1.2.4 - mz: 2.7.0 - pirates: 4.0.6 - ts-interface-checker: 0.1.13 - - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-color@8.1.1: - dependencies: - has-flag: 4.0.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svgo@3.3.2: - dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 5.1.0 - css-tree: 2.3.1 - css-what: 6.1.0 - csso: 5.0.5 - picocolors: 1.0.0 - - svgson@5.3.1: - dependencies: - deep-rename-keys: 0.2.1 - xml-reader: 2.4.3 - - swc-loader@0.2.3(@swc/core@1.3.103)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - '@swc/core': 1.3.103 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - synchronous-promise@2.0.17: {} - - tailwind-merge@2.2.1: - dependencies: - '@babel/runtime': 7.23.8 - - tailwindcss@3.4.1: - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.5.3 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 15.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38) - postcss-nested: 6.0.1(postcss@8.4.38) - postcss-selector-parser: 6.0.15 - resolve: 1.22.8 - sucrase: 3.35.0 - transitivePeerDependencies: - - ts-node - - tapable@2.2.1: {} - - tar-fs@2.1.1: - dependencies: - chownr: 1.1.4 - mkdirp-classic: 0.5.3 - pump: 3.0.0 - tar-stream: 2.2.0 - - tar-stream@2.2.0: - dependencies: - bl: 4.1.0 - end-of-stream: 1.4.4 - fs-constants: 1.0.0 - inherits: 2.0.4 - readable-stream: 3.6.2 - - tar@6.2.0: - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - - telejson@7.2.0: - dependencies: - memoizerific: 1.11.3 - - temp-dir@2.0.0: {} - - temp@0.8.4: - dependencies: - rimraf: 2.6.3 - - tempy@1.0.1: - dependencies: - del: 6.1.1 - is-stream: 2.0.1 - temp-dir: 2.0.0 - type-fest: 0.16.0 - unique-string: 2.0.0 - - term-size@2.2.1: {} - - terser-webpack-plugin@5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - '@jridgewell/trace-mapping': 0.3.21 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.2 - terser: 5.26.0 - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - optionalDependencies: - '@swc/core': 1.3.103 - esbuild: 0.19.11 - - terser@5.26.0: - dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.11.3 - commander: 2.20.3 - source-map-support: 0.5.21 - - test-exclude@6.0.0: - dependencies: - '@istanbuljs/schema': 0.1.3 - glob: 7.2.3 - minimatch: 3.1.2 - - thenify-all@1.6.0: - dependencies: - thenify: 3.3.1 - - thenify@3.3.1: - dependencies: - any-promise: 1.3.0 - - through2@2.0.5: - dependencies: - readable-stream: 2.3.8 - xtend: 4.0.2 - - tiny-invariant@1.3.1: {} - - tinycolor2@1.6.0: {} - - tinyspy@2.2.0: {} - - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 - - tmpl@1.0.5: {} - - to-fast-properties@2.0.0: {} - - to-regex-range@5.0.1: - dependencies: - is-number: 7.0.0 - - tocbot@4.25.0: {} - - toidentifier@1.0.1: {} - - tr46@0.0.3: {} - - tr46@1.0.1: - dependencies: - punycode: 2.3.1 - - tree-kill@1.2.2: {} - - trim-newlines@3.0.1: {} - - ts-dedent@2.2.0: {} - - ts-interface-checker@0.1.13: {} - - tslib@1.14.1: {} - - tslib@2.6.2: {} - - tsup@8.0.1(@swc/core@1.3.103)(postcss@8.4.38)(typescript@4.9.5): - dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) - cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 - joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.4.38) - resolve-from: 5.0.0 - rollup: 4.9.6 - source-map: 0.8.0-beta.0 - sucrase: 3.35.0 - tree-kill: 1.2.2 - optionalDependencies: - '@swc/core': 1.3.103 - postcss: 8.4.38 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - ts-node - - tty-table@4.2.3: - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.7.2 - - tween-functions@1.2.0: {} - - type-detect@4.0.8: {} - - type-fest@0.13.1: {} - - type-fest@0.16.0: {} - - type-fest@0.6.0: {} - - type-fest@0.8.1: {} - - type-fest@2.19.0: {} - - type-is@1.6.18: - dependencies: - media-typer: 0.3.0 - mime-types: 2.1.35 - - typed-array-buffer@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - - typed-array-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - - typed-array-byte-offset@1.0.0: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - - typed-array-length@1.0.4: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - is-typed-array: 1.1.12 - - typedarray@0.0.6: {} - - typescript@4.9.5: {} - - ufo@1.3.2: {} - - uglify-js@3.17.4: - optional: true - - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.5 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - - undici-types@5.26.5: {} - - unicode-canonical-property-names-ecmascript@2.0.0: {} - - unicode-match-property-ecmascript@2.0.0: - dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.1.0 - - unicode-match-property-value-ecmascript@2.1.0: {} - - unicode-property-aliases-ecmascript@2.1.0: {} - - unique-string@2.0.0: - dependencies: - crypto-random-string: 2.0.0 - - unist-util-is@4.1.0: {} - - unist-util-visit-parents@3.1.1: - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 4.1.0 - - unist-util-visit@2.0.3: - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 4.1.0 - unist-util-visit-parents: 3.1.1 - - universalify@0.1.2: {} - - universalify@2.0.1: {} - - unpipe@1.0.0: {} - - unplugin@1.6.0: - dependencies: - acorn: 8.11.3 - chokidar: 3.5.3 - webpack-sources: 3.2.3 - webpack-virtual-modules: 0.6.1 - - untildify@4.0.0: {} - - update-browserslist-db@1.0.13(browserslist@4.22.2): - dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 - - url@0.11.3: - dependencies: - punycode: 1.4.1 - qs: 6.11.2 - - use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0): - dependencies: - react: 18.2.0 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 18.2.48 - - use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@juggle/resize-observer': 3.4.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0): - dependencies: - detect-node-es: 1.1.0 - react: 18.2.0 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 18.2.48 - - util-deprecate@1.0.2: {} - - util@0.12.5: - dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.12 - which-typed-array: 1.1.13 - - utila@0.4.0: {} - - utils-merge@1.0.1: {} - - uuid@9.0.1: {} - - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - - vary@1.1.2: {} - - walker@1.0.8: - dependencies: - makeerror: 1.0.12 - - watchpack@2.4.0: - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - - webidl-conversions@3.0.1: {} - - webidl-conversions@4.0.2: {} - - webpack-dev-middleware@6.1.1(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)): - dependencies: - colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - optionalDependencies: - webpack: 5.89.0(@swc/core@1.3.103)(esbuild@0.19.11) - - webpack-hot-middleware@2.26.0: - dependencies: - ansi-html-community: 0.0.8 - html-entities: 2.4.0 - strip-ansi: 6.0.1 - - webpack-sources@3.2.3: {} - - webpack-virtual-modules@0.5.0: {} - - webpack-virtual-modules@0.6.1: {} - - webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11): - dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.11.3 - acorn-import-assertions: 1.9.0(acorn@8.11.3) - browserslist: 4.22.2 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.4.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.103)(esbuild@0.19.11)(webpack@5.89.0(@swc/core@1.3.103)(esbuild@0.19.11)) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - - whatwg-url@5.0.0: - dependencies: - tr46: 0.0.3 - webidl-conversions: 3.0.1 - - whatwg-url@7.1.0: - dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 - - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - - which-collection@1.0.1: - dependencies: - is-map: 2.0.2 - is-set: 2.0.2 - is-weakmap: 2.0.1 - is-weakset: 2.0.2 - - which-module@2.0.1: {} - - which-pm@2.0.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - - which-typed-array@1.1.13: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - - which@1.3.1: - dependencies: - isexe: 2.0.0 - - which@2.0.2: - dependencies: - isexe: 2.0.0 - - wide-align@1.1.5: - dependencies: - string-width: 4.2.3 - - wordwrap@1.0.0: {} - - wrap-ansi@6.2.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - - wrap-ansi@7.0.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 - - wrappy@1.0.2: {} - - write-file-atomic@2.4.3: - dependencies: - graceful-fs: 4.2.11 - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - - write-file-atomic@4.0.2: - dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - - ws@6.2.2: - dependencies: - async-limiter: 1.0.1 - - ws@8.16.0: {} - - xml-lexer@0.2.2: - dependencies: - eventemitter3: 2.0.3 - - xml-reader@2.4.3: - dependencies: - eventemitter3: 2.0.3 - xml-lexer: 0.2.2 - - xtend@4.0.2: {} - - y18n@4.0.3: {} - - y18n@5.0.8: {} - - yallist@2.1.2: {} - - yallist@3.1.1: {} - - yallist@4.0.0: {} - - yaml@1.10.2: {} - - yaml@2.3.4: {} - - yargs-parser@18.1.3: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - - yargs-parser@21.1.1: {} - - yargs@15.4.1: - dependencies: - cliui: 6.0.0 - decamelize: 1.2.0 - find-up: 4.1.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 4.2.3 - which-module: 2.0.1 - y18n: 4.0.3 - yargs-parser: 18.1.3 - - yargs@17.7.2: - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - - yauzl@2.10.0: - dependencies: - buffer-crc32: 0.2.13 - fd-slicer: 1.1.0 - - yocto-queue@0.1.0: {} - - yocto-queue@1.0.0: {} diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index ab0c96da..3e2f0591 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -4,19 +4,17 @@ import path from 'path' import generateExportsFile from './generateExportsFile.mjs' import generateIconFiles from './generateIconFiles.mjs' +import generateStories from './generateStories.mjs' import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' import renderIconsObject from './renderIconsObject.mjs' -// import generateStories from './generateStories.mjs' const cliArguments = getArgumentOptions(process.argv.slice(2)) const currentDir = getCurrentDirPath(import.meta.url) - const ICONS_DIR = path.resolve(currentDir, '../icons') - const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') - -const OUTPUT_FOLDER = 'icons-neo' +const OUTPUT_FOLDER_NAME = 'icons-neo' +const STORIES_OUTPUT_FOLDER_NAME = 'stories-neo' if (!fs.existsSync(OUTPUT_DIR)) { fs.mkdirSync(OUTPUT_DIR) @@ -36,7 +34,7 @@ async function buildIcons() { const { default: iconFileTemplate } = await import(path.resolve(process.cwd(), templateSrc)) generateIconFiles({ - outputFolderName: OUTPUT_FOLDER, + outputFolderName: OUTPUT_FOLDER_NAME, svgObjs: svgObjs, outputDirectory: OUTPUT_DIR, iconsDir: ICONS_DIR, @@ -47,12 +45,17 @@ async function buildIcons() { // Generates entry files for the compiler filled with icons exports generateExportsFile({ - inputEntry: path.join(OUTPUT_DIR, OUTPUT_FOLDER, exportFileName), - outputDirectory: path.join(OUTPUT_DIR, OUTPUT_FOLDER), + inputEntry: path.join(OUTPUT_DIR, OUTPUT_FOLDER_NAME, exportFileName), + outputDirectory: path.join(OUTPUT_DIR, OUTPUT_FOLDER_NAME), iconNodes: svgObjs, }) - // generateStories({ iconNodes: icons }) + generateStories({ + outputDirectory: path.join(OUTPUT_DIR, STORIES_OUTPUT_FOLDER_NAME), + iconNodes: svgObjs, + iconOutputFolderName: OUTPUT_FOLDER_NAME, + storyGroupName: 'omega', + }) } try { diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs new file mode 100644 index 00000000..3bc98f95 --- /dev/null +++ b/scripts/exportStoryTemplate.mjs @@ -0,0 +1,60 @@ +import { toPascalCase } from './helpers.mjs' + +export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing' }) => { + const iconNamePascalCase = toPascalCase(iconName) + + return `import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import ${iconNamePascalCase} from '../${iconOutputFolderName}/${iconName}' + + const meta: Meta = { + component: ${iconNamePascalCase}, + title: '${storyGroupName}/${iconNamePascalCase}', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + ` +} diff --git a/scripts/generateIcons.mjs b/scripts/generateIcons.mjs deleted file mode 100644 index 0101f596..00000000 --- a/scripts/generateIcons.mjs +++ /dev/null @@ -1,22 +0,0 @@ -import fs from 'fs' -import getArgumentOptions from 'minimist' -import path from 'path' - -import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' - -const cliArguments = getArgumentOptions(process.argv.slice(2)) - -const currentDir = getCurrentDirPath(import.meta.url) - -const ICONS_DIR = path.resolve(currentDir, '../icons') - -const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') - -if (!fs.existsSync(OUTPUT_DIR)) { - fs.mkdirSync(OUTPUT_DIR) -} - -const svgFiles = readSvgDirectory(ICONS_DIR) - -console.log('------>', svgFiles) -// diff --git a/scripts/generateStories.mjs b/scripts/generateStories.mjs new file mode 100644 index 00000000..7d274162 --- /dev/null +++ b/scripts/generateStories.mjs @@ -0,0 +1,25 @@ +import fs from 'fs' +import path from 'path' +import exportStoryTemplate from './exportStoryTemplate.mjs' +import { toPascalCase } from './helpers.mjs' + +export default ({ outputDirectory, iconNodes, iconOutputFolderName, storyGroupName }) => { + const icons = Object.keys(iconNodes) + + // Ensure the output directory exists + if (!fs.existsSync(outputDirectory)) { + fs.mkdirSync(outputDirectory, { recursive: true }) + } + + icons.forEach(async (iconName) => { + const iconNamePascalCase = toPascalCase(iconName) + const storyName = `${iconNamePascalCase}.stories.tsx` + const storyTemplate = exportStoryTemplate({ iconName, iconOutputFolderName, storyGroupName }) + + const filePath = path.join(outputDirectory, storyName) + + await fs.promises.writeFile(filePath, storyTemplate, 'utf-8') + }) + + console.log(`Successfully generated ${icons.length} stories`) +} diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 8e68d029..d637ead3 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -21,30 +21,30 @@ async function optimizeSvg(svg, path) { }, }, }, - // { - // name: 'removeAttrs', - // params: { - // attrs: '(fill|stroke.*)', - // }, - // }, - // custom plugin { - name: 'replaceStroke', - type: 'visitor', - fn: (ast) => { - const visit = (node) => { - if (node.attributes && node.attributes.stroke) { - node.attributes.stroke = 'currentColor' - } - if (node.children) { - for (const child of node.children) { - visit(child) - } - } - } - visit(ast) + name: 'removeAttrs', + params: { + attrs: '(stroke.*)', }, }, + // custom plugin + // { + // name: 'replaceStroke', + // type: 'visitor', + // fn: (ast) => { + // const visit = (node) => { + // if (node.attributes && node.attributes.stroke) { + // node.attributes.stroke = 'currentColor' + // } + // if (node.children) { + // for (const child of node.children) { + // visit(child) + // } + // } + // } + // visit(ast) + // }, + // }, ], }) @@ -58,7 +58,6 @@ async function optimizeSvg(svg, path) { */ function setAttrs(svg) { const contents = parseSync(svg) - console.log('----------->', contents) // contents.attributes = DEFAULT_ATTRS // return stringify(contents) } diff --git a/scripts/removeDir.mjs b/scripts/removeDir.mjs new file mode 100644 index 00000000..b6d28e9d --- /dev/null +++ b/scripts/removeDir.mjs @@ -0,0 +1,15 @@ +import fs from 'fs' +import getArgumentOptions from 'minimist' + +const cliArguments = getArgumentOptions(process.argv.slice(2)) + +const { targetDir } = cliArguments + +if (!targetDir) { + console.error('targetDir is required') + process.exit(1) +} + +if (fs.existsSync(svgChildrenDirectory)) { + fs.mkdirSync(targetDir) +} diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs index d7708c7c..3ef0de6c 100644 --- a/scripts/writeSvgChildren.mjs +++ b/scripts/writeSvgChildren.mjs @@ -1,44 +1,44 @@ import fs from 'fs' import path from 'path' import { stringify } from 'svgson' +import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' +import renderIconsObject from './renderIconsObject.mjs' +const currentDir = getCurrentDirPath(import.meta.url) const ICONS_DIR = path.resolve(currentDir, '../icons') const svgFiles = readSvgDirectory(ICONS_DIR) +const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, true) -const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) +const svgs = Object.keys(svgObjs) -export default async () => { - const svgs = Object.keys(svgObjs) +const svgChildrenDirectory = path.resolve(currentDir, `../svg-children`) - const svgChildrenDirectory = path.join(outputDirectory, `svg-children`) - - if (!fs.existsSync(svgChildrenDirectory)) { - fs.mkdirSync(svgChildrenDirectory) - } +if (!fs.existsSync(svgChildrenDirectory)) { + fs.mkdirSync(svgChildrenDirectory) +} - const writeSvgChildren = svgs.map(async (svgName) => { - const location = path.resolve(svgChildrenDirectory, `${svgName}.svg`) +const writeSvgChildren = svgs.map(async (svgName) => { + const location = path.resolve(svgChildrenDirectory, `${svgName}.svg`) - let { children } = svgObjs[svgName] + let { children } = svgObjs[svgName] - const childrenSvgGroup = { - name: 'g', - type: 'element', - value: '', - parent: null, - children: children, - } + const childrenSvgGroup = { + name: 'g', + type: 'element', + value: '', + parent: null, + children: children, + } - const output = stringify(childrenSvgGroup) + const output = stringify(childrenSvgGroup) - await fs.promises.writeFile(location, output, 'utf-8') + await fs.promises.writeFile(location, output, 'utf-8') - try { - await Promise.all(writeSvgChildren) - console.log('Successfully write', svgs.length, 'svg objs.') - } catch (error) { - throw new Error(`Something went wrong generating iconNode files,\n ${error}`) - } - }) -} + try { + await Promise.all(writeSvgChildren) + console.log('SVG CHILDREN successfully write') + } catch (error) { + throw new Error(`Something went wrong generating iconNode files,\n ${error}`) + } +}) diff --git a/src/Icon.ts b/src/Icon.ts index b7f078f8..824b6580 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -28,7 +28,6 @@ const Icon = forwardRef( { color = 'currentColor', size = 24, - strokeWidth = 2, inActive = false, fillColor = 'none', absoluteStrokeWidth, @@ -38,11 +37,8 @@ const Icon = forwardRef( svgChildren, ...rest }, - ref + ref, ) => { - // const groupSvgChildrenTemplate = stringify(groupSvgChildrenObj).replace(/"/g, '') - // console.log('groupSvgChildrenTemplate', groupSvgChildrenTemplate.replace(/"/g, '')) - return createElement( 'svg', { @@ -51,14 +47,14 @@ const Icon = forwardRef( ...originalAttributes, stroke: inActive ? '#777777' : color, fill: fillColor, - strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, - className: mergeClasses('asi w-[24px] h-auto shrink-0', className), + // strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, + className: mergeClasses('w-[24px] h-auto shrink-0', className), ...rest, }, - svgChildren + svgChildren, // [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...(Array.isArray(children) ? children : [children])] ) - } + }, ) export default Icon diff --git a/src/components/WithBg.tsx b/src/components/WithBg.tsx new file mode 100644 index 00000000..9e71db38 --- /dev/null +++ b/src/components/WithBg.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import DEFAULT_ICON from '../constant' +import defaultBgStyles from '../defaultBgStyles' + +type WithBgProps = { + children: React.ReactNode + bgColor?: string + bgOpacity?: number + bgSize?: number + bgBorderRadius?: number +} + +const WithBg = (props: WithBgProps) => { + const { + children, + bgColor = DEFAULT_ICON.BG_COLOR, + bgOpacity = DEFAULT_ICON.BG_OPACITY, + bgSize = DEFAULT_ICON.BG_PADDING, + bgBorderRadius = DEFAULT_ICON.BG_BORDER_RADIUS, + } = props + + return ( +
+ {children} +
+ ) +} + +export default WithBg diff --git a/src/constant.ts b/src/constant.ts index 7d4b426f..6b89ca32 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -7,6 +7,8 @@ const DEFAULT_ICON_ACCENT_COLOR = '#2279CE' const DEFAULT_ICON_BG_OPACITY = 0.5 const DEFAULT_ICON_CIRCLE_OPACITY = 0.5 const DEFAULT_ICON_OUTLINE_COLOR = '#E2E2E2' +const DEFAULT_ICON_BG_PADDING = 10 +const DEFAULT_ICON_BORDER_RADIUS = 50 const DEFAULT_ICON = { COLOR: DEFAULT_ICON_COLOR, @@ -18,6 +20,8 @@ const DEFAULT_ICON = { BG_OPACITY: DEFAULT_ICON_BG_OPACITY, CIRCLE_OPACITY: DEFAULT_ICON_CIRCLE_OPACITY, OUTLINE_COLOR: DEFAULT_ICON_OUTLINE_COLOR, + BG_PADDING: DEFAULT_ICON_BG_PADDING, + BG_BORDER_RADIUS: DEFAULT_ICON_BORDER_RADIUS, } export default DEFAULT_ICON diff --git a/src/defaultAttributes.ts b/src/defaultAttributes.ts index 511db334..b11bf6ca 100644 --- a/src/defaultAttributes.ts +++ b/src/defaultAttributes.ts @@ -2,10 +2,10 @@ export default { xmlns: 'http://www.w3.org/2000/svg', // width: 24, // height: 24, - viewBox: '0 0 24 24', - fill: 'none', + // viewBox: '0 0 24 24', + // fill: 'none', + // strokeWidth: 2, stroke: 'currentColor', - strokeWidth: 2, strokeLinecap: 'round', strokeLinejoin: 'round', } diff --git a/src/icons-neo/CrownBig.tsx b/src/icons-neo/CrownBig.tsx new file mode 100644 index 00000000..c016845f --- /dev/null +++ b/src/icons-neo/CrownBig.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CrownBig = createASIcon( + "CrownBig", + { + xmlns: "http://www.w3.org/2000/svg", + width: "50", + height: "38", + fill: "none", + viewBox: "0 0 50 38", + }, + + + + , +); + +export default CrownBig; diff --git a/src/icons-neo/cancel.tsx b/src/icons-neo/cancel.tsx new file mode 100644 index 00000000..1cce1c73 --- /dev/null +++ b/src/icons-neo/cancel.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Cancel = createASIcon( + "Cancel", + { + xmlns: "http://www.w3.org/2000/svg", + width: "66", + height: "67", + fill: "none", + viewBox: "0 0 66 67", + }, + + + , +); + +export default Cancel; diff --git a/src/icons-neo/cartIcon.tsx b/src/icons-neo/cartIcon.tsx new file mode 100644 index 00000000..df9f8843 --- /dev/null +++ b/src/icons-neo/cartIcon.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CartIcon = createASIcon( + "CartIcon", + { + xmlns: "http://www.w3.org/2000/svg", + width: "36", + height: "36", + fill: "none", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + , +); + +export default CartIcon; diff --git a/src/icons-neo/celebrate.tsx b/src/icons-neo/celebrate.tsx new file mode 100644 index 00000000..f1738acd --- /dev/null +++ b/src/icons-neo/celebrate.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Celebrate = createASIcon( + "Celebrate", + { + xmlns: "http://www.w3.org/2000/svg", + "xmlns:xlink": "http://www.w3.org/1999/xlink", + width: "64", + height: "65", + fill: "none", + viewBox: "0 0 64 65", + }, + + + + + + + + + , +); + +export default Celebrate; diff --git a/src/icons-neo/check.tsx b/src/icons-neo/check.tsx new file mode 100644 index 00000000..6a6ac94e --- /dev/null +++ b/src/icons-neo/check.tsx @@ -0,0 +1,18 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Check = createASIcon( + "Check", + { + xmlns: "http://www.w3.org/2000/svg", + width: "17", + height: "13", + fill: "none", + viewBox: "0 0 12 9", + }, + + + , +); + +export default Check; diff --git a/src/icons-neo/clear.tsx b/src/icons-neo/clear.tsx new file mode 100644 index 00000000..5ee1e8aa --- /dev/null +++ b/src/icons-neo/clear.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Clear = createASIcon( + "Clear", + { + xmlns: "http://www.w3.org/2000/svg", + width: "16", + height: "16", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + + + + + + + + , +); + +export default Clear; diff --git a/src/icons-neo/co-catUpload.tsx b/src/icons-neo/co-catUpload.tsx new file mode 100644 index 00000000..4d60337f --- /dev/null +++ b/src/icons-neo/co-catUpload.tsx @@ -0,0 +1,48 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CoCatUpload = createASIcon( + "CoCatUpload", + { + xmlns: "http://www.w3.org/2000/svg", + width: "36", + height: "36", + fill: "none", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , +); + +export default CoCatUpload; diff --git a/src/icons-neo/color_palette.tsx b/src/icons-neo/color_palette.tsx new file mode 100644 index 00000000..44fe4d9f --- /dev/null +++ b/src/icons-neo/color_palette.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ColorPalette = createASIcon( + "ColorPalette", + { + xmlns: "http://www.w3.org/2000/svg", + width: "17", + height: "17", + fill: "none", + viewBox: "0 0 17 17", + }, + + + , +); + +export default ColorPalette; diff --git a/src/icons-neo/confetti.tsx b/src/icons-neo/confetti.tsx new file mode 100644 index 00000000..6ec0df2a --- /dev/null +++ b/src/icons-neo/confetti.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Confetti = createASIcon( + "Confetti", + { + xmlns: "http://www.w3.org/2000/svg", + width: "16", + height: "16", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + + + + + + + + + + + + + + + + , +); + +export default Confetti; diff --git a/src/icons-neo/copy.tsx b/src/icons-neo/copy.tsx new file mode 100644 index 00000000..c66bbea6 --- /dev/null +++ b/src/icons-neo/copy.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Copy = createASIcon( + "Copy", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default Copy; diff --git a/src/icons-neo/copyIcon.tsx b/src/icons-neo/copyIcon.tsx new file mode 100644 index 00000000..e8ea2e58 --- /dev/null +++ b/src/icons-neo/copyIcon.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CopyIcon = createASIcon( + "CopyIcon", + { + xmlns: "http://www.w3.org/2000/svg", + width: "20", + height: "20", + fill: "none", + viewBox: "0 0 20 20", + }, + + + + + + + + + + + , +); + +export default CopyIcon; diff --git a/src/icons-neo/copyReferral.tsx b/src/icons-neo/copyReferral.tsx new file mode 100644 index 00000000..ca34eb47 --- /dev/null +++ b/src/icons-neo/copyReferral.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CopyReferral = createASIcon( + "CopyReferral", + { + xmlns: "http://www.w3.org/2000/svg", + width: "32", + height: "32", + fill: "none", + viewBox: "0 0 32 32", + }, + + + + + + + + + + + + , +); + +export default CopyReferral; diff --git a/src/icons-neo/coupon.tsx b/src/icons-neo/coupon.tsx new file mode 100644 index 00000000..47aefb67 --- /dev/null +++ b/src/icons-neo/coupon.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Coupon = createASIcon( + "Coupon", + { + xmlns: "http://www.w3.org/2000/svg", + width: "21", + height: "20", + fill: "none", + viewBox: "0 0 21 20", + }, + + + + + + + + + + + + + , +); + +export default Coupon; diff --git a/src/icons-neo/createProfile.tsx b/src/icons-neo/createProfile.tsx new file mode 100644 index 00000000..8fcf19be --- /dev/null +++ b/src/icons-neo/createProfile.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CreateProfile = createASIcon( + "CreateProfile", + { + xmlns: "http://www.w3.org/2000/svg", + width: "28", + height: "28", + fill: "none", + viewBox: "0 0 28 28", + }, + + + + + + + + + + + + + + , +); + +export default CreateProfile; diff --git a/src/icons-neo/crown.tsx b/src/icons-neo/crown.tsx new file mode 100644 index 00000000..2ad41169 --- /dev/null +++ b/src/icons-neo/crown.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown = createASIcon( + "Crown", + { + xmlns: "http://www.w3.org/2000/svg", + width: "18", + height: "18", + fill: "none", + viewBox: "0 0 18 18", + }, + + + + + + + + + + + + , +); + +export default Crown; diff --git a/src/icons-neo/crowon.tsx b/src/icons-neo/crowon.tsx new file mode 100644 index 00000000..c04bc71e --- /dev/null +++ b/src/icons-neo/crowon.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crowon = createASIcon( + "Crowon", + { + xmlns: "http://www.w3.org/2000/svg", + width: "13", + height: "12", + fill: "none", + viewBox: "0 0 13 12", + }, + + + + + + + + + + , +); + +export default Crowon; diff --git a/src/icons-neo/cup.tsx b/src/icons-neo/cup.tsx new file mode 100644 index 00000000..027d1f81 --- /dev/null +++ b/src/icons-neo/cup.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Cup = createASIcon( + "Cup", + { + xmlns: "http://www.w3.org/2000/svg", + "xmlns:xlink": "http://www.w3.org/1999/xlink", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + , +); + +export default Cup; diff --git a/src/icons-neo/curveArrow.tsx b/src/icons-neo/curveArrow.tsx new file mode 100644 index 00000000..70a95de7 --- /dev/null +++ b/src/icons-neo/curveArrow.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CurveArrow = createASIcon( + "CurveArrow", + { + xmlns: "http://www.w3.org/2000/svg", + width: "16", + height: "11", + fill: "none", + viewBox: "0 0 16 11", + }, + + + , +); + +export default CurveArrow; diff --git a/src/icons-neo/custom-profile.tsx b/src/icons-neo/custom-profile.tsx new file mode 100644 index 00000000..42e788fd --- /dev/null +++ b/src/icons-neo/custom-profile.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CustomProfile = createASIcon( + "CustomProfile", + { + xmlns: "http://www.w3.org/2000/svg", + width: "28", + height: "29", + fill: "none", + viewBox: "0 0 28 29", + }, + + + + + + + + + + + + + , +); + +export default CustomProfile; diff --git a/src/icons-neo/dollar.tsx b/src/icons-neo/dollar.tsx new file mode 100644 index 00000000..b47910d0 --- /dev/null +++ b/src/icons-neo/dollar.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Dollar = createASIcon( + "Dollar", + { + xmlns: "http://www.w3.org/2000/svg", + width: "8", + height: "14", + fill: "none", + viewBox: "0 0 8 14", + }, + + + + , +); + +export default Dollar; diff --git a/src/icons-neo/drawer.tsx b/src/icons-neo/drawer.tsx new file mode 100644 index 00000000..8fb8e354 --- /dev/null +++ b/src/icons-neo/drawer.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Drawer = createASIcon( + "Drawer", + { + xmlns: "http://www.w3.org/2000/svg", + width: "16", + height: "16", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + + + + + + + + , +); + +export default Drawer; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index d54982b0..f1e99d92 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -1,14 +1,22 @@ -export { default as AdjustProfile } from './adjust_profile'; -export { default as AlertCircle } from './alert-circle'; -export { default as AlertRed } from './alert-red'; -export { default as AlertWhite } from './alert-white'; -export { default as Alert } from './alert'; -export { default as AlertTriangle } from './alertTriangle'; -export { default as Apple } from './apple'; -export { default as ArrowRight } from './arrow-right'; -export { default as ArrowDown } from './arrow_down'; -export { default as ArrowDownVariant } from './arrow_down_variant'; -export { default as ArrowLeft } from './arrow_left'; -export { default as ArrowRightIos } from './arrow_right_ios'; -export { default as ArrowUp } from './arrow_up'; +export { default as CrownBig } from './CrownBig'; +export { default as Cancel } from './cancel'; +export { default as CartIcon } from './cartIcon'; +export { default as Celebrate } from './celebrate'; +export { default as Check } from './check'; +export { default as Clear } from './clear'; +export { default as CoCatUpload } from './co-catUpload'; +export { default as ColorPalette } from './color_palette'; +export { default as Confetti } from './confetti'; +export { default as Copy } from './copy'; +export { default as CopyIcon } from './copyIcon'; +export { default as CopyReferral } from './copyReferral'; +export { default as Coupon } from './coupon'; +export { default as CreateProfile } from './createProfile'; +export { default as Crown } from './crown'; +export { default as Crowon } from './crowon'; +export { default as Cup } from './cup'; +export { default as CurveArrow } from './curveArrow'; +export { default as CustomProfile } from './custom-profile'; +export { default as Dollar } from './dollar'; +export { default as Drawer } from './drawer'; diff --git a/src/stories-neo/Cancel.stories.tsx b/src/stories-neo/Cancel.stories.tsx new file mode 100644 index 00000000..362e768a --- /dev/null +++ b/src/stories-neo/Cancel.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Cancel from '../icons-neo/cancel' + + const meta: Meta = { + component: Cancel, + title: 'omega/Cancel', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CartIcon.stories.tsx b/src/stories-neo/CartIcon.stories.tsx new file mode 100644 index 00000000..709b8c18 --- /dev/null +++ b/src/stories-neo/CartIcon.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CartIcon from '../icons-neo/cartIcon' + + const meta: Meta = { + component: CartIcon, + title: 'omega/CartIcon', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Celebrate.stories.tsx b/src/stories-neo/Celebrate.stories.tsx new file mode 100644 index 00000000..235afa86 --- /dev/null +++ b/src/stories-neo/Celebrate.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Celebrate from '../icons-neo/celebrate' + + const meta: Meta = { + component: Celebrate, + title: 'omega/Celebrate', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-neo/Check.stories.tsx new file mode 100644 index 00000000..5c6dace5 --- /dev/null +++ b/src/stories-neo/Check.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Check from '../icons-neo/check' + + const meta: Meta = { + component: Check, + title: 'omega/Check', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Clear.stories.tsx b/src/stories-neo/Clear.stories.tsx new file mode 100644 index 00000000..2dee972c --- /dev/null +++ b/src/stories-neo/Clear.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Clear from '../icons-neo/clear' + + const meta: Meta = { + component: Clear, + title: 'omega/Clear', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CoCatUpload.stories.tsx b/src/stories-neo/CoCatUpload.stories.tsx new file mode 100644 index 00000000..c3885c71 --- /dev/null +++ b/src/stories-neo/CoCatUpload.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CoCatUpload from '../icons-neo/co-catUpload' + + const meta: Meta = { + component: CoCatUpload, + title: 'omega/CoCatUpload', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ColorPalette.stories.tsx b/src/stories-neo/ColorPalette.stories.tsx new file mode 100644 index 00000000..0cbd263c --- /dev/null +++ b/src/stories-neo/ColorPalette.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import ColorPalette from '../icons-neo/color_palette' + + const meta: Meta = { + component: ColorPalette, + title: 'omega/ColorPalette', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-neo/Confetti.stories.tsx new file mode 100644 index 00000000..3502413e --- /dev/null +++ b/src/stories-neo/Confetti.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Confetti from '../icons-neo/confetti' + + const meta: Meta = { + component: Confetti, + title: 'omega/Confetti', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-neo/Copy.stories.tsx new file mode 100644 index 00000000..79f38005 --- /dev/null +++ b/src/stories-neo/Copy.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Copy from '../icons-neo/copy' + + const meta: Meta = { + component: Copy, + title: 'omega/Copy', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CopyIcon.stories.tsx b/src/stories-neo/CopyIcon.stories.tsx new file mode 100644 index 00000000..5131096f --- /dev/null +++ b/src/stories-neo/CopyIcon.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CopyIcon from '../icons-neo/copyIcon' + + const meta: Meta = { + component: CopyIcon, + title: 'omega/CopyIcon', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CopyReferral.stories.tsx b/src/stories-neo/CopyReferral.stories.tsx new file mode 100644 index 00000000..4091872a --- /dev/null +++ b/src/stories-neo/CopyReferral.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CopyReferral from '../icons-neo/copyReferral' + + const meta: Meta = { + component: CopyReferral, + title: 'omega/CopyReferral', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Coupon.stories.tsx b/src/stories-neo/Coupon.stories.tsx new file mode 100644 index 00000000..c52f5667 --- /dev/null +++ b/src/stories-neo/Coupon.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Coupon from '../icons-neo/coupon' + + const meta: Meta = { + component: Coupon, + title: 'omega/Coupon', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CreateProfile.stories.tsx b/src/stories-neo/CreateProfile.stories.tsx new file mode 100644 index 00000000..5c365598 --- /dev/null +++ b/src/stories-neo/CreateProfile.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CreateProfile from '../icons-neo/createProfile' + + const meta: Meta = { + component: CreateProfile, + title: 'omega/CreateProfile', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-neo/Crown.stories.tsx new file mode 100644 index 00000000..555078aa --- /dev/null +++ b/src/stories-neo/Crown.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Crown from '../icons-neo/crown' + + const meta: Meta = { + component: Crown, + title: 'omega/Crown', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CrownBig.stories.tsx b/src/stories-neo/CrownBig.stories.tsx new file mode 100644 index 00000000..2f98d7d2 --- /dev/null +++ b/src/stories-neo/CrownBig.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CrownBig from '../icons-neo/CrownBig' + + const meta: Meta = { + component: CrownBig, + title: 'omega/CrownBig', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Crowon.stories.tsx b/src/stories-neo/Crowon.stories.tsx new file mode 100644 index 00000000..1b17bfd9 --- /dev/null +++ b/src/stories-neo/Crowon.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Crowon from '../icons-neo/crowon' + + const meta: Meta = { + component: Crowon, + title: 'omega/Crowon', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Cup.stories.tsx b/src/stories-neo/Cup.stories.tsx new file mode 100644 index 00000000..ffa49484 --- /dev/null +++ b/src/stories-neo/Cup.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Cup from '../icons-neo/cup' + + const meta: Meta = { + component: Cup, + title: 'omega/Cup', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CurveArrow.stories.tsx b/src/stories-neo/CurveArrow.stories.tsx new file mode 100644 index 00000000..d933e363 --- /dev/null +++ b/src/stories-neo/CurveArrow.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CurveArrow from '../icons-neo/curveArrow' + + const meta: Meta = { + component: CurveArrow, + title: 'omega/CurveArrow', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CustomProfile.stories.tsx b/src/stories-neo/CustomProfile.stories.tsx new file mode 100644 index 00000000..c3983ff8 --- /dev/null +++ b/src/stories-neo/CustomProfile.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import CustomProfile from '../icons-neo/custom-profile' + + const meta: Meta = { + component: CustomProfile, + title: 'omega/CustomProfile', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Dollar.stories.tsx b/src/stories-neo/Dollar.stories.tsx new file mode 100644 index 00000000..fa1773fe --- /dev/null +++ b/src/stories-neo/Dollar.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Dollar from '../icons-neo/dollar' + + const meta: Meta = { + component: Dollar, + title: 'omega/Dollar', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Drawer.stories.tsx b/src/stories-neo/Drawer.stories.tsx new file mode 100644 index 00000000..28cc1d7b --- /dev/null +++ b/src/stories-neo/Drawer.stories.tsx @@ -0,0 +1,54 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import Drawer from '../icons-neo/drawer' + + const meta: Meta = { + component: Drawer, + title: 'omega/Drawer', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index c8d67bb8..83a501fd 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1,5 +1,5 @@ /* -! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */ /* @@ -211,6 +211,8 @@ textarea { /* 1 */ line-height: inherit; /* 1 */ + letter-spacing: inherit; + /* 1 */ color: inherit; /* 1 */ margin: 0; @@ -234,9 +236,9 @@ select { */ button, -[type='button'], -[type='reset'], -[type='submit'] { +input:where([type='button']), +input:where([type='reset']), +input:where([type='submit']) { -webkit-appearance: button; /* 1 */ background-color: transparent; @@ -492,6 +494,10 @@ video { --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; } ::backdrop { @@ -542,16 +548,28 @@ video { --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; } .absolute { position: absolute; } +.flex { + display: flex; +} + .inline-flex { display: inline-flex; } +.h-\[70px\] { + height: 70px; +} + .h-auto { height: auto; } @@ -572,6 +590,10 @@ video { width: 24px; } +.w-\[70px\] { + width: 70px; +} + .shrink-0 { flex-shrink: 0; } @@ -599,6 +621,11 @@ video { color: rgb(34 197 94 / var(--tw-text-opacity)); } +.text-red-500 { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + .text-white { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity)); diff --git a/svg-children/CrownBig.svg b/svg-children/CrownBig.svg new file mode 100644 index 00000000..d0d4c168 --- /dev/null +++ b/svg-children/CrownBig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/adjust_profile.svg b/svg-children/adjust_profile.svg deleted file mode 100644 index 0086b782..00000000 --- a/svg-children/adjust_profile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert-circle.svg b/svg-children/alert-circle.svg deleted file mode 100644 index 11f9e99d..00000000 --- a/svg-children/alert-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert-red.svg b/svg-children/alert-red.svg deleted file mode 100644 index 618f2596..00000000 --- a/svg-children/alert-red.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert-white.svg b/svg-children/alert-white.svg deleted file mode 100644 index 41d020e6..00000000 --- a/svg-children/alert-white.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert.svg b/svg-children/alert.svg deleted file mode 100644 index 2ac40403..00000000 --- a/svg-children/alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alertTriangle.svg b/svg-children/alertTriangle.svg deleted file mode 100644 index ea726c39..00000000 --- a/svg-children/alertTriangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/apple.svg b/svg-children/apple.svg deleted file mode 100644 index e51b921a..00000000 --- a/svg-children/apple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow-right.svg b/svg-children/arrow-right.svg deleted file mode 100644 index 07788a78..00000000 --- a/svg-children/arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow_down.svg b/svg-children/arrow_down.svg deleted file mode 100644 index b2f419c2..00000000 --- a/svg-children/arrow_down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow_down_variant.svg b/svg-children/arrow_down_variant.svg deleted file mode 100644 index b2f419c2..00000000 --- a/svg-children/arrow_down_variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow_left.svg b/svg-children/arrow_left.svg deleted file mode 100644 index cc4a9064..00000000 --- a/svg-children/arrow_left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow_right_ios.svg b/svg-children/arrow_right_ios.svg deleted file mode 100644 index 94a20508..00000000 --- a/svg-children/arrow_right_ios.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/arrow_up.svg b/svg-children/arrow_up.svg deleted file mode 100644 index 92d9d69d..00000000 --- a/svg-children/arrow_up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/cancel.svg b/svg-children/cancel.svg new file mode 100644 index 00000000..132dfbac --- /dev/null +++ b/svg-children/cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/cartIcon.svg b/svg-children/cartIcon.svg new file mode 100644 index 00000000..b2b322d5 --- /dev/null +++ b/svg-children/cartIcon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/celebrate.svg b/svg-children/celebrate.svg new file mode 100644 index 00000000..a662b68f --- /dev/null +++ b/svg-children/celebrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/check.svg b/svg-children/check.svg new file mode 100644 index 00000000..dcba2076 --- /dev/null +++ b/svg-children/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/clear.svg b/svg-children/clear.svg new file mode 100644 index 00000000..dc392106 --- /dev/null +++ b/svg-children/clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/co-catUpload.svg b/svg-children/co-catUpload.svg new file mode 100644 index 00000000..e98f145a --- /dev/null +++ b/svg-children/co-catUpload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/color_palette.svg b/svg-children/color_palette.svg new file mode 100644 index 00000000..e227c441 --- /dev/null +++ b/svg-children/color_palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/confetti.svg b/svg-children/confetti.svg new file mode 100644 index 00000000..ebd4dc64 --- /dev/null +++ b/svg-children/confetti.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/copy.svg b/svg-children/copy.svg new file mode 100644 index 00000000..29a77712 --- /dev/null +++ b/svg-children/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/copyIcon.svg b/svg-children/copyIcon.svg new file mode 100644 index 00000000..96e25acf --- /dev/null +++ b/svg-children/copyIcon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/copyReferral.svg b/svg-children/copyReferral.svg new file mode 100644 index 00000000..49605df2 --- /dev/null +++ b/svg-children/copyReferral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/coupon.svg b/svg-children/coupon.svg new file mode 100644 index 00000000..3683c71d --- /dev/null +++ b/svg-children/coupon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/createProfile.svg b/svg-children/createProfile.svg new file mode 100644 index 00000000..c6988fe1 --- /dev/null +++ b/svg-children/createProfile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/crown.svg b/svg-children/crown.svg new file mode 100644 index 00000000..b938941f --- /dev/null +++ b/svg-children/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/crowon.svg b/svg-children/crowon.svg new file mode 100644 index 00000000..317573be --- /dev/null +++ b/svg-children/crowon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/cup.svg b/svg-children/cup.svg new file mode 100644 index 00000000..48f195ba --- /dev/null +++ b/svg-children/cup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/curveArrow.svg b/svg-children/curveArrow.svg new file mode 100644 index 00000000..40607174 --- /dev/null +++ b/svg-children/curveArrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/custom-profile.svg b/svg-children/custom-profile.svg new file mode 100644 index 00000000..66d66885 --- /dev/null +++ b/svg-children/custom-profile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/dollar.svg b/svg-children/dollar.svg new file mode 100644 index 00000000..8f8ac960 --- /dev/null +++ b/svg-children/dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/drawer.svg b/svg-children/drawer.svg new file mode 100644 index 00000000..02096b12 --- /dev/null +++ b/svg-children/drawer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yarn-error.log b/yarn-error.log index 7bf52cde..9168e0ca 100644 --- a/yarn-error.log +++ b/yarn-error.log @@ -1,5 +1,5 @@ Arguments: - /opt/homebrew/Cellar/node/22.1.0/bin/node /Users/aftershoot/.yarn/releases/yarn-1.22.19.cjs add svgson + /opt/homebrew/Cellar/node/22.1.0/bin/node /Users/aftershoot/.yarn/releases/yarn-1.22.19.cjs add npm-run-all --dev PATH: /opt/homebrew/opt/postgresql@16/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/homebrew/opt/postgresql@16/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/aftershoot/.cargo/bin @@ -14,7 +14,7 @@ Platform: darwin arm64 Trace: - Error: ENOENT: no such file or directory, copyfile '/Users/aftershoot/Library/Caches/Yarn/v6/npm-color-convert-1.9.3-bb71850690e1f136567de629d2d5471deda4c1e8-integrity/node_modules/color-convert/CHANGELOG.md' -> '/Users/aftershoot/Booi/dev/work/Unicons/node_modules/@changesets/cli/node_modules/color-convert/CHANGELOG.md' + Error: ENOENT: no such file or directory, copyfile '/Users/aftershoot/Library/Caches/Yarn/v6/npm-ansi-styles-3.2.1-41fbb20243e50b12be0f04b8dedbf07520ce841d-integrity/node_modules/ansi-styles/index.js' -> '/Users/aftershoot/Booi/dev/work/Unicons/node_modules/@changesets/cli/node_modules/ansi-styles/index.js' npm manifest: { @@ -31,7 +31,9 @@ npm manifest: "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "o:svgs": "node ./scripts/optimizeSvgs.mjs", - "gen:svgs": "node ./scripts/generateIcons.mjs", + "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", + "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs --exportFileName index.ts", + "generate": "npm-s o:svgs gen:childsvgs build:icons", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", @@ -56,7 +58,7 @@ npm manifest: "@storybook/addon-styling-webpack": "^0.0.6", "@storybook/blocks": "^7.6.7", "@storybook/cli": "^7.6.7", - "@storybook/react": "^7.6.7", + "@storybook/react": "^7.6.8", "@storybook/react-webpack5": "^7.6.7", "@storybook/test": "^7.6.7", "@types/react": "^18.0.26", @@ -66,7 +68,9 @@ npm manifest: "chromatic": "^10.6.1", "css-loader": "^6.7.3", "husky": "^8.0.2", + "npm-run-all": "^4.1.5", "postcss": "^8.4.38", + "prettier": "^3.2.5", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.7", @@ -91,7 +95,9 @@ npm manifest: "@changesets/cli": "^2.27.1", "clsx": "^2.1.0", "concurrently": "^8.2.2", + "minimist": "^1.2.8", "rollup": "^4.9.6", + "svgson": "^5.3.1", "tailwind-merge": "^2.2.1", "tinycolor2": "^1.6.0", "tsup": "^8.0.1" @@ -3175,6 +3181,11 @@ Lockfile: resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.3.0.tgz#0a6750b94b40e4739706d41e8efc2ccf64d2aad9" integrity sha512-P02xtBBa8yMaLhK8CzJCIns8rqwnF6FxhR9zs810flHOBXUYCFjLd8Io1rQrAkQRWEmW2PGdZIEdMxf/KLsqFA== + "@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + "@types/aria-query@^5.0.1": version "5.0.4" resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.4.tgz#1a31c3d378850d2778dabb6374d036dcba4ba708" @@ -4513,6 +4524,11 @@ Lockfile: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" @@ -4720,7 +4736,34 @@ Lockfile: domutils "^2.8.0" nth-check "^2.0.1" - css-what@^6.0.1: + css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + + css-tree@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" + integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== + dependencies: + mdn-data "2.0.30" + source-map-js "^1.0.1" + + css-tree@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" + integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== + dependencies: + mdn-data "2.0.28" + source-map-js "^1.0.1" + + css-what@^6.0.1, css-what@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== @@ -4735,6 +4778,13 @@ Lockfile: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + csso@^5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== + dependencies: + css-tree "~2.2.0" + csstype@^3.0.2: version "3.1.3" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" @@ -4862,6 +4912,14 @@ Lockfile: which-collection "^1.0.1" which-typed-array "^1.1.13" + deep-rename-keys@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/deep-rename-keys/-/deep-rename-keys-0.2.1.tgz#ede78537d7a66a2be61517e2af956d7f58a3f1d8" + integrity sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A== + dependencies: + kind-of "^3.0.2" + rename-keys "^1.1.2" + deepmerge@^4.2.2: version "4.3.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" @@ -5029,7 +5087,16 @@ Lockfile: domhandler "^4.2.0" entities "^2.0.0" - domelementtype@^2.0.1, domelementtype@^2.2.0: + dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + + domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== @@ -5041,6 +5108,13 @@ Lockfile: dependencies: domelementtype "^2.2.0" + domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" @@ -5050,6 +5124,15 @@ Lockfile: domelementtype "^2.2.0" domhandler "^4.2.0" + domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + dot-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" @@ -5157,6 +5240,11 @@ Lockfile: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + entities@^4.2.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + envinfo@^7.7.3: version "7.12.0" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.12.0.tgz#b56723b39c2053d67ea5714f026d05d4f5cc7acd" @@ -5427,6 +5515,11 @@ Lockfile: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + eventemitter3@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba" + integrity sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg== + events@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" @@ -6337,6 +6430,11 @@ Lockfile: call-bind "^1.0.2" has-tostringtag "^1.0.0" + is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" @@ -6791,6 +6889,13 @@ Lockfile: dependencies: json-buffer "3.0.1" + kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" @@ -7049,6 +7154,16 @@ Lockfile: resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== + mdn-data@2.0.28: + version "2.0.28" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" + integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== + + mdn-data@2.0.30: + version "2.0.30" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" + integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -7180,7 +7295,7 @@ Lockfile: is-plain-obj "^1.1.0" kind-of "^6.0.3" - minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -8361,6 +8476,11 @@ Lockfile: mdast-util-to-string "^1.0.0" unist-util-visit "^2.0.0" + rename-keys@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/rename-keys/-/rename-keys-1.2.0.tgz#be602fb0b750476b513ebe85ba4465d03254f0a3" + integrity sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg== + renderkid@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" @@ -8736,7 +8856,7 @@ Lockfile: wcwidth "^1.0.1" yargs "^15.1.0" - source-map-js@^1.2.0: + source-map-js@^1.0.1, source-map-js@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== @@ -9016,6 +9136,27 @@ Lockfile: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + svgo@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8" + integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^5.1.0" + css-tree "^2.3.1" + css-what "^6.1.0" + csso "^5.0.5" + picocolors "^1.0.0" + + svgson@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/svgson/-/svgson-5.3.1.tgz#f3df0303231f2e99e4618983cfa7e8db155f79d7" + integrity sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA== + dependencies: + deep-rename-keys "^0.2.1" + xml-reader "2.4.3" + swc-loader@^0.2.3: version "0.2.6" resolved "https://registry.yarnpkg.com/swc-loader/-/swc-loader-0.2.6.tgz#bf0cba8eeff34bb19620ead81d1277fefaec6bc8" @@ -9851,6 +9992,21 @@ Lockfile: resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== + xml-lexer@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/xml-lexer/-/xml-lexer-0.2.2.tgz#518193a4aa334d58fc7d248b549079b89907e046" + integrity sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w== + dependencies: + eventemitter3 "^2.0.0" + + xml-reader@2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/xml-reader/-/xml-reader-2.4.3.tgz#9f810caf7c425a5aafb848b1c45103c9e71d7530" + integrity sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA== + dependencies: + eventemitter3 "^2.0.0" + xml-lexer "^0.2.2" + xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" From 03220592d107226949575acf2a0c8ab6cc9c8664 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Wed, 29 May 2024 14:19:51 +0530 Subject: [PATCH 09/34] update: template --- .storybook/main.ts | 1 - icons/check.svg | 8 +- scripts/exportStoryTemplate.mjs | 12 +++ scripts/generateExportsFile.mjs | 2 +- scripts/generateIconFiles.mjs | 2 +- scripts/generateStories.mjs | 2 +- scripts/removeDir.mjs | 5 +- src/Icon.ts | 6 +- src/components/WithBg.tsx | 4 +- src/createASIcon.ts | 5 +- src/defaultAttributes.ts | 4 +- src/icons-neo/check.tsx | 2 - src/stories-neo/Cancel.stories.tsx | 116 ++++++++++++---------- src/stories-neo/CartIcon.stories.tsx | 12 +++ src/stories-neo/Celebrate.stories.tsx | 12 +++ src/stories-neo/Check.stories.tsx | 12 +++ src/stories-neo/Clear.stories.tsx | 12 +++ src/stories-neo/CoCatUpload.stories.tsx | 12 +++ src/stories-neo/ColorPalette.stories.tsx | 12 +++ src/stories-neo/Confetti.stories.tsx | 12 +++ src/stories-neo/Copy.stories.tsx | 12 +++ src/stories-neo/CopyIcon.stories.tsx | 12 +++ src/stories-neo/CopyReferral.stories.tsx | 12 +++ src/stories-neo/Coupon.stories.tsx | 12 +++ src/stories-neo/CreateProfile.stories.tsx | 12 +++ src/stories-neo/Crown.stories.tsx | 12 +++ src/stories-neo/CrownBig.stories.tsx | 12 +++ src/stories-neo/Crowon.stories.tsx | 12 +++ src/stories-neo/Cup.stories.tsx | 12 +++ src/stories-neo/CurveArrow.stories.tsx | 12 +++ src/stories-neo/CustomProfile.stories.tsx | 12 +++ src/stories-neo/Dollar.stories.tsx | 12 +++ src/stories-neo/Drawer.stories.tsx | 12 +++ src/styles/tailwind.css | 18 ++++ src/utils.ts | 39 ++++++-- 35 files changed, 382 insertions(+), 84 deletions(-) diff --git a/.storybook/main.ts b/.storybook/main.ts index f09314ed..1d670658 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -14,7 +14,6 @@ const config: StorybookConfig = { addons: [ getAbsolutePath('@storybook/addon-links'), getAbsolutePath('@storybook/addon-essentials'), - getAbsolutePath('@storybook/addon-onboarding'), getAbsolutePath('@storybook/addon-interactions'), getAbsolutePath('@storybook/addon-styling-webpack'), ], diff --git a/icons/check.svg b/icons/check.svg index 2e7f188b..188e2bc8 100644 --- a/icons/check.svg +++ b/icons/check.svg @@ -1,9 +1,3 @@ - + diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index 3bc98f95..f07685c3 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -55,6 +55,18 @@ export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing' }) className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: "red", + }, + } ` } diff --git a/scripts/generateExportsFile.mjs b/scripts/generateExportsFile.mjs index 229366c5..c426ec5e 100644 --- a/scripts/generateExportsFile.mjs +++ b/scripts/generateExportsFile.mjs @@ -19,5 +19,5 @@ export default ({ inputEntry, outputDirectory, iconNodes, iconFileExtension = '' appendFile('\n', fileName, outputDirectory) - console.log(`Index successfully generated ${fileName} file`) + console.log(`INDEX generated at - ${fileName} file`) } diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index bda61b23..728ebf14 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -41,7 +41,7 @@ export default async ({ outputFolderName, svgObjs, outputDirectory, template, ic Promise.all(writeIconFiles) .then(() => { - console.log('Successfully built', svgs.length, 'icons.') + console.log('UNICON ICONS built -', svgs.length, 'icons.') }) .catch((error) => { throw new Error(`Something went wrong generating icon files,\n ${error}`) diff --git a/scripts/generateStories.mjs b/scripts/generateStories.mjs index 7d274162..e548e4a0 100644 --- a/scripts/generateStories.mjs +++ b/scripts/generateStories.mjs @@ -21,5 +21,5 @@ export default ({ outputDirectory, iconNodes, iconOutputFolderName, storyGroupNa await fs.promises.writeFile(filePath, storyTemplate, 'utf-8') }) - console.log(`Successfully generated ${icons.length} stories`) + console.log(`STORIES created - ${icons.length} stories`) } diff --git a/scripts/removeDir.mjs b/scripts/removeDir.mjs index b6d28e9d..fe3363b1 100644 --- a/scripts/removeDir.mjs +++ b/scripts/removeDir.mjs @@ -1,4 +1,3 @@ -import fs from 'fs' import getArgumentOptions from 'minimist' const cliArguments = getArgumentOptions(process.argv.slice(2)) @@ -10,6 +9,4 @@ if (!targetDir) { process.exit(1) } -if (fs.existsSync(svgChildrenDirectory)) { - fs.mkdirSync(targetDir) -} +console.log(`DIRECTORY removed - ${targetDir}`) diff --git a/src/Icon.ts b/src/Icon.ts index 824b6580..49b7523a 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -1,7 +1,6 @@ import { createElement, forwardRef } from 'react' import defaultAttributes from './defaultAttributes' import { ASIProps, IconNode } from './types' -import { mergeClasses } from './utils' interface IconComponentProps extends ASIProps { originalAttributes: any @@ -31,7 +30,7 @@ const Icon = forwardRef( inActive = false, fillColor = 'none', absoluteStrokeWidth, - className = '', + className, children, originalAttributes, svgChildren, @@ -47,8 +46,9 @@ const Icon = forwardRef( ...originalAttributes, stroke: inActive ? '#777777' : color, fill: fillColor, + className, // strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, - className: mergeClasses('w-[24px] h-auto shrink-0', className), + // className: mergeClasses('w-[24px] h-auto shrink-0', className), ...rest, }, svgChildren, diff --git a/src/components/WithBg.tsx b/src/components/WithBg.tsx index 9e71db38..90f264f4 100644 --- a/src/components/WithBg.tsx +++ b/src/components/WithBg.tsx @@ -1,6 +1,7 @@ import React from 'react' import DEFAULT_ICON from '../constant' import defaultBgStyles from '../defaultBgStyles' +import { hexToRgba } from '../utils' type WithBgProps = { children: React.ReactNode @@ -25,8 +26,9 @@ const WithBg = (props: WithBgProps) => { ...defaultBgStyles, padding: bgSize, borderRadius: bgBorderRadius, - backgroundColor: bgColor, + backgroundColor: hexToRgba(bgColor, bgOpacity), }} + className='group' > {children}
diff --git a/src/createASIcon.ts b/src/createASIcon.ts index 50d4f434..2f75aec6 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -1,7 +1,8 @@ import { createElement, forwardRef } from 'react' import Icon from './Icon' import { ASIProps } from './types' -import { mergeClasses, toKebabCase } from './utils' +import { toKebabCase } from './utils' +import { cn } from './utils/cn' /** * Create a Lucide icon component @@ -15,7 +16,7 @@ const createASIcon = (iconName: string, originalAttributes: any, svgChildren: an ref, originalAttributes, svgChildren, - className: mergeClasses(`unicon unicon-${toKebabCase(iconName)}`, className), + className: cn(`unicon unicon-${toKebabCase(iconName)} w-[24px] h-auto shrink-0`, className), ...props, }), ) diff --git a/src/defaultAttributes.ts b/src/defaultAttributes.ts index b11bf6ca..d15cec4c 100644 --- a/src/defaultAttributes.ts +++ b/src/defaultAttributes.ts @@ -6,6 +6,6 @@ export default { // fill: 'none', // strokeWidth: 2, stroke: 'currentColor', - strokeLinecap: 'round', - strokeLinejoin: 'round', + // strokeLinecap: 'round', + // strokeLinejoin: 'round', } diff --git a/src/icons-neo/check.tsx b/src/icons-neo/check.tsx index 6a6ac94e..f5e7fde8 100644 --- a/src/icons-neo/check.tsx +++ b/src/icons-neo/check.tsx @@ -5,8 +5,6 @@ const Check = createASIcon( "Check", { xmlns: "http://www.w3.org/2000/svg", - width: "17", - height: "13", fill: "none", viewBox: "0 0 12 9", }, diff --git a/src/stories-neo/Cancel.stories.tsx b/src/stories-neo/Cancel.stories.tsx index 362e768a..ed90327e 100644 --- a/src/stories-neo/Cancel.stories.tsx +++ b/src/stories-neo/Cancel.stories.tsx @@ -1,54 +1,64 @@ import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Cancel from '../icons-neo/cancel' - - const meta: Meta = { - component: Cancel, - title: 'omega/Cancel', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - \ No newline at end of file +import React from 'react' + +import WithBg from '../components/WithBg' +import Cancel from '../icons-neo/cancel' + +const meta: Meta = { + component: Cancel, + title: 'omega/Cancel', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], +} + +export default meta +type Story = StoryObj + +export const Default: Story = {} + +export const Red: Story = { + args: { + color: 'red', + }, +} + +export const inActive: Story = { + args: { + inActive: true, + }, +} + +export const Large: Story = { + args: { + size: 50, + }, +} + +export const ClassName: Story = { + args: { + className: 'text-red-500 w-[70px] h-[70px]', + }, +} + +export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, +} + +export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, +} diff --git a/src/stories-neo/CartIcon.stories.tsx b/src/stories-neo/CartIcon.stories.tsx index 709b8c18..911da1ee 100644 --- a/src/stories-neo/CartIcon.stories.tsx +++ b/src/stories-neo/CartIcon.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Celebrate.stories.tsx b/src/stories-neo/Celebrate.stories.tsx index 235afa86..29a16394 100644 --- a/src/stories-neo/Celebrate.stories.tsx +++ b/src/stories-neo/Celebrate.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-neo/Check.stories.tsx index 5c6dace5..4816f801 100644 --- a/src/stories-neo/Check.stories.tsx +++ b/src/stories-neo/Check.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Clear.stories.tsx b/src/stories-neo/Clear.stories.tsx index 2dee972c..7aed24cc 100644 --- a/src/stories-neo/Clear.stories.tsx +++ b/src/stories-neo/Clear.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CoCatUpload.stories.tsx b/src/stories-neo/CoCatUpload.stories.tsx index c3885c71..00ed6d92 100644 --- a/src/stories-neo/CoCatUpload.stories.tsx +++ b/src/stories-neo/CoCatUpload.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/ColorPalette.stories.tsx b/src/stories-neo/ColorPalette.stories.tsx index 0cbd263c..13b90b8d 100644 --- a/src/stories-neo/ColorPalette.stories.tsx +++ b/src/stories-neo/ColorPalette.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-neo/Confetti.stories.tsx index 3502413e..2e0b9bb5 100644 --- a/src/stories-neo/Confetti.stories.tsx +++ b/src/stories-neo/Confetti.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-neo/Copy.stories.tsx index 79f38005..dae562ea 100644 --- a/src/stories-neo/Copy.stories.tsx +++ b/src/stories-neo/Copy.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CopyIcon.stories.tsx b/src/stories-neo/CopyIcon.stories.tsx index 5131096f..f3506291 100644 --- a/src/stories-neo/CopyIcon.stories.tsx +++ b/src/stories-neo/CopyIcon.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CopyReferral.stories.tsx b/src/stories-neo/CopyReferral.stories.tsx index 4091872a..db8dca01 100644 --- a/src/stories-neo/CopyReferral.stories.tsx +++ b/src/stories-neo/CopyReferral.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Coupon.stories.tsx b/src/stories-neo/Coupon.stories.tsx index c52f5667..da54eb35 100644 --- a/src/stories-neo/Coupon.stories.tsx +++ b/src/stories-neo/Coupon.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CreateProfile.stories.tsx b/src/stories-neo/CreateProfile.stories.tsx index 5c365598..ec0a9c15 100644 --- a/src/stories-neo/CreateProfile.stories.tsx +++ b/src/stories-neo/CreateProfile.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-neo/Crown.stories.tsx index 555078aa..c157053a 100644 --- a/src/stories-neo/Crown.stories.tsx +++ b/src/stories-neo/Crown.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CrownBig.stories.tsx b/src/stories-neo/CrownBig.stories.tsx index 2f98d7d2..427026dc 100644 --- a/src/stories-neo/CrownBig.stories.tsx +++ b/src/stories-neo/CrownBig.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Crowon.stories.tsx b/src/stories-neo/Crowon.stories.tsx index 1b17bfd9..f69c4a9c 100644 --- a/src/stories-neo/Crowon.stories.tsx +++ b/src/stories-neo/Crowon.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Cup.stories.tsx b/src/stories-neo/Cup.stories.tsx index ffa49484..c0a1d13f 100644 --- a/src/stories-neo/Cup.stories.tsx +++ b/src/stories-neo/Cup.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CurveArrow.stories.tsx b/src/stories-neo/CurveArrow.stories.tsx index d933e363..718d6cef 100644 --- a/src/stories-neo/CurveArrow.stories.tsx +++ b/src/stories-neo/CurveArrow.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/CustomProfile.stories.tsx b/src/stories-neo/CustomProfile.stories.tsx index c3983ff8..224647fa 100644 --- a/src/stories-neo/CustomProfile.stories.tsx +++ b/src/stories-neo/CustomProfile.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Dollar.stories.tsx b/src/stories-neo/Dollar.stories.tsx index fa1773fe..63f396c4 100644 --- a/src/stories-neo/Dollar.stories.tsx +++ b/src/stories-neo/Dollar.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/stories-neo/Drawer.stories.tsx b/src/stories-neo/Drawer.stories.tsx index 28cc1d7b..452be14d 100644 --- a/src/stories-neo/Drawer.stories.tsx +++ b/src/stories-neo/Drawer.stories.tsx @@ -50,5 +50,17 @@ import type { Meta, StoryObj } from '@storybook/react' className: 'text-red-500 w-[70px] h-[70px]', }, } + + export const Hover: Story = { + args: { + className: 'hover:text-green-500 cursor-pointer', + }, + } + + export const FillColor: Story = { + args: { + fillColor: 'fill-red-500', + }, + } \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 83a501fd..089aeb46 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -602,6 +602,14 @@ video { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } +.cursor-pointer { + cursor: pointer; +} + +.fill-red-500 { + fill: #ef4444; +} + .stroke-\[\#fff\] { stroke: #fff; } @@ -638,3 +646,13 @@ video { .filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } + +.hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} diff --git a/src/utils.ts b/src/utils.ts index 89fb58ea..e4651705 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -33,11 +33,38 @@ export const mergeClasses = (...classes: }) .join(' ') -export const removeOuterQuotes = (svgString: string) => { - // Check if the string starts and ends with double quotes - if (svgString.startsWith('"') && svgString.endsWith('"')) { - // Remove the outer double quotes - svgString = svgString.slice(1, -1) +/** + * Converts a hex color and opacity to an RGBA color. + * @param {string} hex - The hex color code (e.g., "#ff5733" or "#f53"). + * @param {number} opacity - The opacity value (0 to 1). + * @returns {string} The RGBA color code. + */ +export function hexToRgba(hex: string, opacity: number = 1): string { + // Ensure the hex color starts with '#' + if (hex.startsWith('#')) { + hex = hex.slice(1) + } + + // Expand shorthand hex color to full form (e.g., "f53" -> "ff5533") + if (hex.length === 3) { + hex = hex + .split('') + .map((char) => char + char) + .join('') } - return svgString + + // Convert hex color to RGB + const bigint = parseInt(hex, 16) + const r = (bigint >> 16) & 255 + const g = (bigint >> 8) & 255 + const b = bigint & 255 + + // Return RGBA color + return `rgba(${r}, ${g}, ${b}, ${opacity})` } + +// Example usage +const hexColor: string = '#ff5733' +const opacity: number = 0.5 +const rgbaColor: string = hexToRgba(hexColor, opacity) +console.log(rgbaColor) // Output: "rgba(255, 87, 51, 0.5)" From 1d0ef5764ed4561d756134ad39c7eaf326693877 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 11:20:12 +0530 Subject: [PATCH 10/34] update: optimise svg --- icons-optimized/adjustments-horizontal.svg | 24 +++++++ icons-optimized/alert-triangle.svg | 17 +++++ icons-optimized/chevron-down.svg | 16 +++++ icons-optimized/chevron-left.svg | 16 +++++ icons-optimized/chevron-right.svg | 16 +++++ icons-optimized/chevron-up.svg | 16 +++++ icons-original/fill/alert-circle.svg | 12 ++++ icons-original/fill/alert.svg | 1 + icons-original/fill/apple.svg | 1 + .../outline/adjustments-horizontal.svg | 18 +++++ icons-original/outline/alert-triangle.svg | 11 ++++ icons-original/outline/chevron-down.svg | 10 +++ icons-original/outline/chevron-left.svg | 10 +++ icons-original/outline/chevron-right.svg | 10 +++ icons-original/outline/chevron-up.svg | 10 +++ icons/CrownBig.svg | 18 ----- icons/cancel.svg | 9 --- icons/cartIcon.svg | 19 ------ icons/celebrate.svg | 26 -------- icons/check.svg | 3 - icons/clear.svg | 17 ----- icons/co-catUpload.svg | 39 ----------- icons/color_palette.svg | 12 ---- icons/confetti.svg | 25 ------- icons/copy.svg | 10 --- icons/copyIcon.svg | 17 ----- icons/copyReferral.svg | 18 ----- icons/coupon.svg | 25 ------- icons/createProfile.svg | 20 ------ icons/crown.svg | 22 ------- icons/crowon.svg | 16 ----- icons/cup.svg | 32 --------- icons/curveArrow.svg | 12 ---- icons/custom-profile.svg | 19 ------ icons/dollar.svg | 10 --- icons/drawer.svg | 20 ------ package.json | 4 ++ scripts/buildIcons.mjs | 2 +- scripts/exportStoryTemplate.mjs | 22 ++++--- scripts/optimizeSvgs.mjs | 27 ++++++-- scripts/writeSvgChildren.mjs | 2 +- src/icons-neo/CrownBig.tsx | 29 -------- src/icons-neo/adjust_profile.tsx | 33 ---------- src/icons-neo/adjustments-horizontal.tsx | 33 ++++++++++ src/icons-neo/alert-circle.tsx | 37 ----------- src/icons-neo/alert-red.tsx | 32 --------- src/icons-neo/alert-triangle.tsx | 26 ++++++++ src/icons-neo/alert-white.tsx | 31 --------- src/icons-neo/alert.tsx | 25 ------- src/icons-neo/alertTriangle.tsx | 22 ------- src/icons-neo/apple.tsx | 21 ------ src/icons-neo/arrow-right.tsx | 38 ----------- src/icons-neo/arrow_down.tsx | 25 ------- src/icons-neo/arrow_down_variant.tsx | 25 ------- src/icons-neo/arrow_left.tsx | 25 ------- src/icons-neo/arrow_right_ios.tsx | 25 ------- src/icons-neo/arrow_up.tsx | 25 ------- src/icons-neo/cancel.tsx | 21 ------ src/icons-neo/cartIcon.tsx | 28 -------- src/icons-neo/celebrate.tsx | 35 ---------- src/icons-neo/check.tsx | 16 ----- .../{crowon.tsx => chevron-down.tsx} | 16 ++--- src/icons-neo/chevron-left.tsx | 25 +++++++ src/icons-neo/chevron-right.tsx | 25 +++++++ src/icons-neo/chevron-up.tsx | 25 +++++++ src/icons-neo/clear.tsx | 26 -------- src/icons-neo/co-catUpload.tsx | 48 -------------- src/icons-neo/color_palette.tsx | 22 ------- src/icons-neo/confetti.tsx | 34 ---------- src/icons-neo/copy.tsx | 25 ------- src/icons-neo/copyIcon.tsx | 26 -------- src/icons-neo/copyReferral.tsx | 34 ---------- src/icons-neo/coupon.tsx | 34 ---------- src/icons-neo/createProfile.tsx | 29 -------- src/icons-neo/crown.tsx | 38 ----------- src/icons-neo/cup.tsx | 42 ------------ src/icons-neo/curveArrow.tsx | 22 ------- src/icons-neo/custom-profile.tsx | 33 ---------- src/icons-neo/dollar.tsx | 22 ------- src/icons-neo/drawer.tsx | 29 -------- src/icons-neo/index.ts | 27 ++------ src/new-svgs/download.svg | 12 ---- ....tsx => AdjustmentsHorizontal.stories.tsx} | 24 +++---- ....stories.tsx => AlertTriangle.stories.tsx} | 24 +++---- src/stories-neo/Cancel.stories.tsx | 64 ------------------ src/stories-neo/CartIcon.stories.tsx | 66 ------------------- src/stories-neo/Celebrate.stories.tsx | 66 ------------------- ...py.stories.tsx => ChevronDown.stories.tsx} | 24 +++---- ...wn.stories.tsx => ChevronLeft.stories.tsx} | 24 +++---- ...k.stories.tsx => ChevronRight.stories.tsx} | 24 +++---- src/stories-neo/ChevronUp.stories.tsx | 62 +++++++++++++++++ src/stories-neo/CoCatUpload.stories.tsx | 66 ------------------- src/stories-neo/ColorPalette.stories.tsx | 66 ------------------- src/stories-neo/Confetti.stories.tsx | 66 ------------------- src/stories-neo/CopyIcon.stories.tsx | 66 ------------------- src/stories-neo/CopyReferral.stories.tsx | 66 ------------------- src/stories-neo/Coupon.stories.tsx | 66 ------------------- src/stories-neo/CreateProfile.stories.tsx | 66 ------------------- src/stories-neo/CrownBig.stories.tsx | 66 ------------------- src/stories-neo/Crowon.stories.tsx | 66 ------------------- src/stories-neo/CurveArrow.stories.tsx | 66 ------------------- src/stories-neo/CustomProfile.stories.tsx | 66 ------------------- src/stories-neo/Dollar.stories.tsx | 66 ------------------- src/stories-neo/Drawer.stories.tsx | 66 ------------------- src/stories/sample.stories.tsx | 39 ----------- src/styles/tailwind.css | 12 ++-- svg-children/CrownBig.svg | 1 - svg-children/adjustments-horizontal.svg | 1 + svg-children/alert-triangle.svg | 1 + svg-children/cancel.svg | 1 - svg-children/cartIcon.svg | 1 - svg-children/celebrate.svg | 1 - svg-children/check.svg | 1 - svg-children/chevron-down.svg | 1 + svg-children/chevron-left.svg | 1 + svg-children/chevron-right.svg | 1 + svg-children/chevron-up.svg | 1 + svg-children/clear.svg | 1 - svg-children/co-catUpload.svg | 1 - svg-children/color_palette.svg | 1 - svg-children/confetti.svg | 1 - svg-children/copy.svg | 1 - svg-children/copyIcon.svg | 1 - svg-children/copyReferral.svg | 1 - svg-children/coupon.svg | 1 - svg-children/createProfile.svg | 1 - svg-children/crown.svg | 1 - svg-children/crowon.svg | 1 - svg-children/cup.svg | 1 - svg-children/curveArrow.svg | 1 - svg-children/custom-profile.svg | 1 - svg-children/dollar.svg | 1 - svg-children/drawer.svg | 1 - 133 files changed, 501 insertions(+), 2593 deletions(-) create mode 100644 icons-optimized/adjustments-horizontal.svg create mode 100644 icons-optimized/alert-triangle.svg create mode 100644 icons-optimized/chevron-down.svg create mode 100644 icons-optimized/chevron-left.svg create mode 100644 icons-optimized/chevron-right.svg create mode 100644 icons-optimized/chevron-up.svg create mode 100644 icons-original/fill/alert-circle.svg create mode 100644 icons-original/fill/alert.svg create mode 100644 icons-original/fill/apple.svg create mode 100644 icons-original/outline/adjustments-horizontal.svg create mode 100644 icons-original/outline/alert-triangle.svg create mode 100644 icons-original/outline/chevron-down.svg create mode 100644 icons-original/outline/chevron-left.svg create mode 100644 icons-original/outline/chevron-right.svg create mode 100644 icons-original/outline/chevron-up.svg delete mode 100644 icons/CrownBig.svg delete mode 100644 icons/cancel.svg delete mode 100644 icons/cartIcon.svg delete mode 100644 icons/celebrate.svg delete mode 100644 icons/check.svg delete mode 100644 icons/clear.svg delete mode 100644 icons/co-catUpload.svg delete mode 100644 icons/color_palette.svg delete mode 100644 icons/confetti.svg delete mode 100644 icons/copy.svg delete mode 100644 icons/copyIcon.svg delete mode 100644 icons/copyReferral.svg delete mode 100644 icons/coupon.svg delete mode 100644 icons/createProfile.svg delete mode 100644 icons/crown.svg delete mode 100644 icons/crowon.svg delete mode 100644 icons/cup.svg delete mode 100644 icons/curveArrow.svg delete mode 100644 icons/custom-profile.svg delete mode 100644 icons/dollar.svg delete mode 100644 icons/drawer.svg delete mode 100644 src/icons-neo/CrownBig.tsx delete mode 100644 src/icons-neo/adjust_profile.tsx create mode 100644 src/icons-neo/adjustments-horizontal.tsx delete mode 100644 src/icons-neo/alert-circle.tsx delete mode 100644 src/icons-neo/alert-red.tsx create mode 100644 src/icons-neo/alert-triangle.tsx delete mode 100644 src/icons-neo/alert-white.tsx delete mode 100644 src/icons-neo/alert.tsx delete mode 100644 src/icons-neo/alertTriangle.tsx delete mode 100644 src/icons-neo/apple.tsx delete mode 100644 src/icons-neo/arrow-right.tsx delete mode 100644 src/icons-neo/arrow_down.tsx delete mode 100644 src/icons-neo/arrow_down_variant.tsx delete mode 100644 src/icons-neo/arrow_left.tsx delete mode 100644 src/icons-neo/arrow_right_ios.tsx delete mode 100644 src/icons-neo/arrow_up.tsx delete mode 100644 src/icons-neo/cancel.tsx delete mode 100644 src/icons-neo/cartIcon.tsx delete mode 100644 src/icons-neo/celebrate.tsx delete mode 100644 src/icons-neo/check.tsx rename src/icons-neo/{crowon.tsx => chevron-down.tsx} (52%) create mode 100644 src/icons-neo/chevron-left.tsx create mode 100644 src/icons-neo/chevron-right.tsx create mode 100644 src/icons-neo/chevron-up.tsx delete mode 100644 src/icons-neo/clear.tsx delete mode 100644 src/icons-neo/co-catUpload.tsx delete mode 100644 src/icons-neo/color_palette.tsx delete mode 100644 src/icons-neo/confetti.tsx delete mode 100644 src/icons-neo/copy.tsx delete mode 100644 src/icons-neo/copyIcon.tsx delete mode 100644 src/icons-neo/copyReferral.tsx delete mode 100644 src/icons-neo/coupon.tsx delete mode 100644 src/icons-neo/createProfile.tsx delete mode 100644 src/icons-neo/crown.tsx delete mode 100644 src/icons-neo/cup.tsx delete mode 100644 src/icons-neo/curveArrow.tsx delete mode 100644 src/icons-neo/custom-profile.tsx delete mode 100644 src/icons-neo/dollar.tsx delete mode 100644 src/icons-neo/drawer.tsx delete mode 100644 src/new-svgs/download.svg rename src/stories-neo/{Clear.stories.tsx => AdjustmentsHorizontal.stories.tsx} (71%) rename src/stories-neo/{Cup.stories.tsx => AlertTriangle.stories.tsx} (73%) delete mode 100644 src/stories-neo/Cancel.stories.tsx delete mode 100644 src/stories-neo/CartIcon.stories.tsx delete mode 100644 src/stories-neo/Celebrate.stories.tsx rename src/stories-neo/{Copy.stories.tsx => ChevronDown.stories.tsx} (73%) rename src/stories-neo/{Crown.stories.tsx => ChevronLeft.stories.tsx} (72%) rename src/stories-neo/{Check.stories.tsx => ChevronRight.stories.tsx} (72%) create mode 100644 src/stories-neo/ChevronUp.stories.tsx delete mode 100644 src/stories-neo/CoCatUpload.stories.tsx delete mode 100644 src/stories-neo/ColorPalette.stories.tsx delete mode 100644 src/stories-neo/Confetti.stories.tsx delete mode 100644 src/stories-neo/CopyIcon.stories.tsx delete mode 100644 src/stories-neo/CopyReferral.stories.tsx delete mode 100644 src/stories-neo/Coupon.stories.tsx delete mode 100644 src/stories-neo/CreateProfile.stories.tsx delete mode 100644 src/stories-neo/CrownBig.stories.tsx delete mode 100644 src/stories-neo/Crowon.stories.tsx delete mode 100644 src/stories-neo/CurveArrow.stories.tsx delete mode 100644 src/stories-neo/CustomProfile.stories.tsx delete mode 100644 src/stories-neo/Dollar.stories.tsx delete mode 100644 src/stories-neo/Drawer.stories.tsx delete mode 100644 src/stories/sample.stories.tsx delete mode 100644 svg-children/CrownBig.svg create mode 100644 svg-children/adjustments-horizontal.svg create mode 100644 svg-children/alert-triangle.svg delete mode 100644 svg-children/cancel.svg delete mode 100644 svg-children/cartIcon.svg delete mode 100644 svg-children/celebrate.svg delete mode 100644 svg-children/check.svg create mode 100644 svg-children/chevron-down.svg create mode 100644 svg-children/chevron-left.svg create mode 100644 svg-children/chevron-right.svg create mode 100644 svg-children/chevron-up.svg delete mode 100644 svg-children/clear.svg delete mode 100644 svg-children/co-catUpload.svg delete mode 100644 svg-children/color_palette.svg delete mode 100644 svg-children/confetti.svg delete mode 100644 svg-children/copy.svg delete mode 100644 svg-children/copyIcon.svg delete mode 100644 svg-children/copyReferral.svg delete mode 100644 svg-children/coupon.svg delete mode 100644 svg-children/createProfile.svg delete mode 100644 svg-children/crown.svg delete mode 100644 svg-children/crowon.svg delete mode 100644 svg-children/cup.svg delete mode 100644 svg-children/curveArrow.svg delete mode 100644 svg-children/custom-profile.svg delete mode 100644 svg-children/dollar.svg delete mode 100644 svg-children/drawer.svg diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg new file mode 100644 index 00000000..f3cabdf0 --- /dev/null +++ b/icons-optimized/adjustments-horizontal.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg new file mode 100644 index 00000000..d0a3f180 --- /dev/null +++ b/icons-optimized/alert-triangle.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg new file mode 100644 index 00000000..89614913 --- /dev/null +++ b/icons-optimized/chevron-down.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg new file mode 100644 index 00000000..7c195edd --- /dev/null +++ b/icons-optimized/chevron-left.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg new file mode 100644 index 00000000..7bf95e7c --- /dev/null +++ b/icons-optimized/chevron-right.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg new file mode 100644 index 00000000..30f8503d --- /dev/null +++ b/icons-optimized/chevron-up.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons-original/fill/alert-circle.svg b/icons-original/fill/alert-circle.svg new file mode 100644 index 00000000..c6a0e24c --- /dev/null +++ b/icons-original/fill/alert-circle.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/fill/alert.svg b/icons-original/fill/alert.svg new file mode 100644 index 00000000..54bf27e2 --- /dev/null +++ b/icons-original/fill/alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/fill/apple.svg b/icons-original/fill/apple.svg new file mode 100644 index 00000000..90a0e20b --- /dev/null +++ b/icons-original/fill/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/outline/adjustments-horizontal.svg b/icons-original/outline/adjustments-horizontal.svg new file mode 100644 index 00000000..db02e4c5 --- /dev/null +++ b/icons-original/outline/adjustments-horizontal.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/alert-triangle.svg b/icons-original/outline/alert-triangle.svg new file mode 100644 index 00000000..8b084f44 --- /dev/null +++ b/icons-original/outline/alert-triangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/chevron-down.svg b/icons-original/outline/chevron-down.svg new file mode 100644 index 00000000..c93f8bc4 --- /dev/null +++ b/icons-original/outline/chevron-down.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/chevron-left.svg b/icons-original/outline/chevron-left.svg new file mode 100644 index 00000000..56ecce42 --- /dev/null +++ b/icons-original/outline/chevron-left.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/chevron-right.svg b/icons-original/outline/chevron-right.svg new file mode 100644 index 00000000..422cf4da --- /dev/null +++ b/icons-original/outline/chevron-right.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/chevron-up.svg b/icons-original/outline/chevron-up.svg new file mode 100644 index 00000000..ad09f359 --- /dev/null +++ b/icons-original/outline/chevron-up.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/CrownBig.svg b/icons/CrownBig.svg deleted file mode 100644 index 336a58c7..00000000 --- a/icons/CrownBig.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - diff --git a/icons/cancel.svg b/icons/cancel.svg deleted file mode 100644 index 776afe12..00000000 --- a/icons/cancel.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/icons/cartIcon.svg b/icons/cartIcon.svg deleted file mode 100644 index 8971f0c8..00000000 --- a/icons/cartIcon.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons/celebrate.svg b/icons/celebrate.svg deleted file mode 100644 index 84317483..00000000 --- a/icons/celebrate.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - diff --git a/icons/check.svg b/icons/check.svg deleted file mode 100644 index 188e2bc8..00000000 --- a/icons/check.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/icons/clear.svg b/icons/clear.svg deleted file mode 100644 index 0e095cd1..00000000 --- a/icons/clear.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/icons/co-catUpload.svg b/icons/co-catUpload.svg deleted file mode 100644 index ab041dd8..00000000 --- a/icons/co-catUpload.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons/color_palette.svg b/icons/color_palette.svg deleted file mode 100644 index 235c86b7..00000000 --- a/icons/color_palette.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - diff --git a/icons/confetti.svg b/icons/confetti.svg deleted file mode 100644 index 191dfa99..00000000 --- a/icons/confetti.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/icons/copy.svg b/icons/copy.svg deleted file mode 100644 index ff287622..00000000 --- a/icons/copy.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons/copyIcon.svg b/icons/copyIcon.svg deleted file mode 100644 index 3d531127..00000000 --- a/icons/copyIcon.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/icons/copyReferral.svg b/icons/copyReferral.svg deleted file mode 100644 index e916d79f..00000000 --- a/icons/copyReferral.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/icons/coupon.svg b/icons/coupon.svg deleted file mode 100644 index cff89970..00000000 --- a/icons/coupon.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons/createProfile.svg b/icons/createProfile.svg deleted file mode 100644 index 4d10bf09..00000000 --- a/icons/createProfile.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons/crown.svg b/icons/crown.svg deleted file mode 100644 index 9976905e..00000000 --- a/icons/crown.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/icons/crowon.svg b/icons/crowon.svg deleted file mode 100644 index ec1d003a..00000000 --- a/icons/crowon.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/icons/cup.svg b/icons/cup.svg deleted file mode 100644 index 23552324..00000000 --- a/icons/cup.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - diff --git a/icons/curveArrow.svg b/icons/curveArrow.svg deleted file mode 100644 index 996657e7..00000000 --- a/icons/curveArrow.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - diff --git a/icons/custom-profile.svg b/icons/custom-profile.svg deleted file mode 100644 index 4fafc079..00000000 --- a/icons/custom-profile.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons/dollar.svg b/icons/dollar.svg deleted file mode 100644 index 13d476de..00000000 --- a/icons/dollar.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons/drawer.svg b/icons/drawer.svg deleted file mode 100644 index d80ad08a..00000000 --- a/icons/drawer.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - diff --git a/package.json b/package.json index 722f36f6..ee899f95 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,10 @@ "license": "ISC", "main": "dist/index.js", "module": "dist/index.esm.js", + "exports": { + "./fill": "./dist/fill/index.js", + "./stroke": "./dist/stroke/index.js" + }, "types": "dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index 3e2f0591..d4a410f5 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -11,7 +11,7 @@ import renderIconsObject from './renderIconsObject.mjs' const cliArguments = getArgumentOptions(process.argv.slice(2)) const currentDir = getCurrentDirPath(import.meta.url) -const ICONS_DIR = path.resolve(currentDir, '../icons') +const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') const OUTPUT_FOLDER_NAME = 'icons-neo' const STORIES_OUTPUT_FOLDER_NAME = 'stories-neo' diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index f07685c3..b90ea46f 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -1,8 +1,16 @@ import { toPascalCase } from './helpers.mjs' -export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing' }) => { +export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = 'testing' }) => { const iconNamePascalCase = toPascalCase(iconName) + const forFill = isFillIcon + ? ` export const FillColor: Story = { + args: { + fillColor: "red", + }, + }` + : '' + return `import type { Meta, StoryObj } from '@storybook/react' import React from 'react' @@ -50,21 +58,17 @@ export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing' }) }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + ${forFill} - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: "red", + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs index 0855b381..9f0943ca 100644 --- a/scripts/optimizeSvgs.mjs +++ b/scripts/optimizeSvgs.mjs @@ -3,17 +3,30 @@ import path from 'path' import { readSvgDirectory, writeSvgFile } from './helpers.mjs' import processSvg from './processSvg.mjs' -const ICONS_DIR = path.resolve(process.cwd(), 'icons') +const ICONS_DIR = path.resolve(process.cwd(), 'icons-original/outline') +const OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') -if (!fs.existsSync(ICONS_DIR)) { - fs.mkdirSync(ICONS_DIR, { recursive: true }) +// Ensure the optimized directory exists +if (!fs.existsSync(OPTIMIZED_ICONS_DIR)) { + fs.mkdirSync(OPTIMIZED_ICONS_DIR, { recursive: true }) } console.log(`Optimizing SVGs...`) const svgFiles = readSvgDirectory(ICONS_DIR) -svgFiles.forEach((svgFile) => { - const content = fs.readFileSync(path.join(ICONS_DIR, svgFile)) - processSvg(content, svgFile).then((svg) => writeSvgFile(svgFile, ICONS_DIR, svg)) -}) +const optimizeSvgFiles = async () => { + for (const svgFile of svgFiles) { + const content = fs.readFileSync(path.join(ICONS_DIR, svgFile), 'utf-8') + const optimizedSvg = await processSvg(content, svgFile) + await writeSvgFile(svgFile, OPTIMIZED_ICONS_DIR, optimizedSvg) + } +} + +optimizeSvgFiles() + .then(() => { + console.log('SVG optimization complete.') + }) + .catch((error) => { + console.error('Error optimizing SVGs:', error) + }) diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs index 3ef0de6c..86ee10d9 100644 --- a/scripts/writeSvgChildren.mjs +++ b/scripts/writeSvgChildren.mjs @@ -5,7 +5,7 @@ import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' import renderIconsObject from './renderIconsObject.mjs' const currentDir = getCurrentDirPath(import.meta.url) -const ICONS_DIR = path.resolve(currentDir, '../icons') +const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') const svgFiles = readSvgDirectory(ICONS_DIR) const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, true) diff --git a/src/icons-neo/CrownBig.tsx b/src/icons-neo/CrownBig.tsx deleted file mode 100644 index c016845f..00000000 --- a/src/icons-neo/CrownBig.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CrownBig = createASIcon( - "CrownBig", - { - xmlns: "http://www.w3.org/2000/svg", - width: "50", - height: "38", - fill: "none", - viewBox: "0 0 50 38", - }, - - - - , -); - -export default CrownBig; diff --git a/src/icons-neo/adjust_profile.tsx b/src/icons-neo/adjust_profile.tsx deleted file mode 100644 index 24661a83..00000000 --- a/src/icons-neo/adjust_profile.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AdjustProfile = createASIcon( - "AdjustProfile", - { - xmlns: "http://www.w3.org/2000/svg", - width: "21", - height: "20", - fill: "none", - viewBox: "0 0 21 20", - }, - - - - - - - - - - - - - - - - - - , -); - -export default AdjustProfile; diff --git a/src/icons-neo/adjustments-horizontal.tsx b/src/icons-neo/adjustments-horizontal.tsx new file mode 100644 index 00000000..cf96d918 --- /dev/null +++ b/src/icons-neo/adjustments-horizontal.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AdjustmentsHorizontal = createASIcon( + "AdjustmentsHorizontal", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , +); + +export default AdjustmentsHorizontal; diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx deleted file mode 100644 index ef35e859..00000000 --- a/src/icons-neo/alert-circle.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertCircle = createASIcon( - "AlertCircle", - { - xmlns: "http://www.w3.org/2000/svg", - width: "21", - height: "20", - fill: "red", - viewBox: "0 0 21 20", - }, - - - - - - - - - - - - , -); - -export default AlertCircle; diff --git a/src/icons-neo/alert-red.tsx b/src/icons-neo/alert-red.tsx deleted file mode 100644 index b4d16020..00000000 --- a/src/icons-neo/alert-red.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertRed = createASIcon( - "AlertRed", - { - xmlns: "http://www.w3.org/2000/svg", - width: "64", - height: "64", - fill: "none", - viewBox: "0 0 64 64", - }, - - - - - - - - - - - , -); - -export default AlertRed; diff --git a/src/icons-neo/alert-triangle.tsx b/src/icons-neo/alert-triangle.tsx new file mode 100644 index 00000000..7e8e4026 --- /dev/null +++ b/src/icons-neo/alert-triangle.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertTriangle = createASIcon( + "AlertTriangle", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default AlertTriangle; diff --git a/src/icons-neo/alert-white.tsx b/src/icons-neo/alert-white.tsx deleted file mode 100644 index a4b0c7b4..00000000 --- a/src/icons-neo/alert-white.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertWhite = createASIcon( - "AlertWhite", - { - xmlns: "http://www.w3.org/2000/svg", - width: "12", - height: "12", - fill: "none", - viewBox: "0 0 12 12", - }, - - - - - - - - - - - , -); - -export default AlertWhite; diff --git a/src/icons-neo/alert.tsx b/src/icons-neo/alert.tsx deleted file mode 100644 index ee5c86f8..00000000 --- a/src/icons-neo/alert.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Alert = createASIcon( - "Alert", - { - xmlns: "http://www.w3.org/2000/svg", - width: "54", - height: "46", - fill: "red", - viewBox: "0 0 54 46", - }, - - - - , -); - -export default Alert; diff --git a/src/icons-neo/alertTriangle.tsx b/src/icons-neo/alertTriangle.tsx deleted file mode 100644 index 9a38557e..00000000 --- a/src/icons-neo/alertTriangle.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertTriangle = createASIcon( - "AlertTriangle", - { - xmlns: "http://www.w3.org/2000/svg", - width: "19", - height: "18", - fill: "none", - viewBox: "0 0 19 18", - }, - - - , -); - -export default AlertTriangle; diff --git a/src/icons-neo/apple.tsx b/src/icons-neo/apple.tsx deleted file mode 100644 index 43711ef6..00000000 --- a/src/icons-neo/apple.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Apple = createASIcon( - "Apple", - { - xmlns: "http://www.w3.org/2000/svg", - width: "17", - height: "20", - fill: "none", - viewBox: "0 0 17 20", - }, - - - , -); - -export default Apple; diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx deleted file mode 100644 index f24074ad..00000000 --- a/src/icons-neo/arrow-right.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowRight = createASIcon( - "ArrowRight", - { - xmlns: "http://www.w3.org/2000/svg", - width: "18", - height: "18", - fill: "none", - viewBox: "0 0 18 18", - }, - - - - - - - - - - - - - - - - - , -); - -export default ArrowRight; diff --git a/src/icons-neo/arrow_down.tsx b/src/icons-neo/arrow_down.tsx deleted file mode 100644 index f38805ee..00000000 --- a/src/icons-neo/arrow_down.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowDown = createASIcon( - "ArrowDown", - { - xmlns: "http://www.w3.org/2000/svg", - width: "18", - height: "11", - fill: "none", - viewBox: "0 0 18 11", - }, - - - , -); - -export default ArrowDown; diff --git a/src/icons-neo/arrow_down_variant.tsx b/src/icons-neo/arrow_down_variant.tsx deleted file mode 100644 index fee6c15d..00000000 --- a/src/icons-neo/arrow_down_variant.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowDownVariant = createASIcon( - "ArrowDownVariant", - { - xmlns: "http://www.w3.org/2000/svg", - width: "18", - height: "11", - fill: "none", - viewBox: "0 0 18 11", - }, - - - , -); - -export default ArrowDownVariant; diff --git a/src/icons-neo/arrow_left.tsx b/src/icons-neo/arrow_left.tsx deleted file mode 100644 index 8bfe1cf6..00000000 --- a/src/icons-neo/arrow_left.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowLeft = createASIcon( - "ArrowLeft", - { - xmlns: "http://www.w3.org/2000/svg", - width: "10", - height: "18", - fill: "none", - viewBox: "0 0 10 18", - }, - - - , -); - -export default ArrowLeft; diff --git a/src/icons-neo/arrow_right_ios.tsx b/src/icons-neo/arrow_right_ios.tsx deleted file mode 100644 index fe9e98b5..00000000 --- a/src/icons-neo/arrow_right_ios.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowRightIos = createASIcon( - "ArrowRightIos", - { - xmlns: "http://www.w3.org/2000/svg", - width: "11", - height: "18", - fill: "none", - viewBox: "0 0 11 18", - }, - - - , -); - -export default ArrowRightIos; diff --git a/src/icons-neo/arrow_up.tsx b/src/icons-neo/arrow_up.tsx deleted file mode 100644 index a4a5694d..00000000 --- a/src/icons-neo/arrow_up.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowUp = createASIcon( - "ArrowUp", - { - xmlns: "http://www.w3.org/2000/svg", - width: "18", - height: "11", - fill: "none", - viewBox: "0 0 18 11", - }, - - - , -); - -export default ArrowUp; diff --git a/src/icons-neo/cancel.tsx b/src/icons-neo/cancel.tsx deleted file mode 100644 index 1cce1c73..00000000 --- a/src/icons-neo/cancel.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Cancel = createASIcon( - "Cancel", - { - xmlns: "http://www.w3.org/2000/svg", - width: "66", - height: "67", - fill: "none", - viewBox: "0 0 66 67", - }, - - - , -); - -export default Cancel; diff --git a/src/icons-neo/cartIcon.tsx b/src/icons-neo/cartIcon.tsx deleted file mode 100644 index df9f8843..00000000 --- a/src/icons-neo/cartIcon.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CartIcon = createASIcon( - "CartIcon", - { - xmlns: "http://www.w3.org/2000/svg", - width: "36", - height: "36", - fill: "none", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - , -); - -export default CartIcon; diff --git a/src/icons-neo/celebrate.tsx b/src/icons-neo/celebrate.tsx deleted file mode 100644 index f1738acd..00000000 --- a/src/icons-neo/celebrate.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Celebrate = createASIcon( - "Celebrate", - { - xmlns: "http://www.w3.org/2000/svg", - "xmlns:xlink": "http://www.w3.org/1999/xlink", - width: "64", - height: "65", - fill: "none", - viewBox: "0 0 64 65", - }, - - - - - - - - - , -); - -export default Celebrate; diff --git a/src/icons-neo/check.tsx b/src/icons-neo/check.tsx deleted file mode 100644 index f5e7fde8..00000000 --- a/src/icons-neo/check.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Check = createASIcon( - "Check", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 12 9", - }, - - - , -); - -export default Check; diff --git a/src/icons-neo/crowon.tsx b/src/icons-neo/chevron-down.tsx similarity index 52% rename from src/icons-neo/crowon.tsx rename to src/icons-neo/chevron-down.tsx index c04bc71e..82cc60c6 100644 --- a/src/icons-neo/crowon.tsx +++ b/src/icons-neo/chevron-down.tsx @@ -1,25 +1,25 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Crowon = createASIcon( - "Crowon", +const ChevronDown = createASIcon( + "ChevronDown", { xmlns: "http://www.w3.org/2000/svg", - width: "13", - height: "12", + width: "24", + height: "24", fill: "none", - viewBox: "0 0 13 12", + viewBox: "0 0 24 24", }, - + - + , ); -export default Crowon; +export default ChevronDown; diff --git a/src/icons-neo/chevron-left.tsx b/src/icons-neo/chevron-left.tsx new file mode 100644 index 00000000..69c4f883 --- /dev/null +++ b/src/icons-neo/chevron-left.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronLeft = createASIcon( + "ChevronLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default ChevronLeft; diff --git a/src/icons-neo/chevron-right.tsx b/src/icons-neo/chevron-right.tsx new file mode 100644 index 00000000..ef2cecc4 --- /dev/null +++ b/src/icons-neo/chevron-right.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronRight = createASIcon( + "ChevronRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default ChevronRight; diff --git a/src/icons-neo/chevron-up.tsx b/src/icons-neo/chevron-up.tsx new file mode 100644 index 00000000..89a88752 --- /dev/null +++ b/src/icons-neo/chevron-up.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronUp = createASIcon( + "ChevronUp", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default ChevronUp; diff --git a/src/icons-neo/clear.tsx b/src/icons-neo/clear.tsx deleted file mode 100644 index 5ee1e8aa..00000000 --- a/src/icons-neo/clear.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Clear = createASIcon( - "Clear", - { - xmlns: "http://www.w3.org/2000/svg", - width: "16", - height: "16", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - - - - - - - - , -); - -export default Clear; diff --git a/src/icons-neo/co-catUpload.tsx b/src/icons-neo/co-catUpload.tsx deleted file mode 100644 index 4d60337f..00000000 --- a/src/icons-neo/co-catUpload.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CoCatUpload = createASIcon( - "CoCatUpload", - { - xmlns: "http://www.w3.org/2000/svg", - width: "36", - height: "36", - fill: "none", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - - - - - - , -); - -export default CoCatUpload; diff --git a/src/icons-neo/color_palette.tsx b/src/icons-neo/color_palette.tsx deleted file mode 100644 index 44fe4d9f..00000000 --- a/src/icons-neo/color_palette.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ColorPalette = createASIcon( - "ColorPalette", - { - xmlns: "http://www.w3.org/2000/svg", - width: "17", - height: "17", - fill: "none", - viewBox: "0 0 17 17", - }, - - - , -); - -export default ColorPalette; diff --git a/src/icons-neo/confetti.tsx b/src/icons-neo/confetti.tsx deleted file mode 100644 index 6ec0df2a..00000000 --- a/src/icons-neo/confetti.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Confetti = createASIcon( - "Confetti", - { - xmlns: "http://www.w3.org/2000/svg", - width: "16", - height: "16", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - - - - - - - - - - - - - - - - , -); - -export default Confetti; diff --git a/src/icons-neo/copy.tsx b/src/icons-neo/copy.tsx deleted file mode 100644 index c66bbea6..00000000 --- a/src/icons-neo/copy.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Copy = createASIcon( - "Copy", - { - xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default Copy; diff --git a/src/icons-neo/copyIcon.tsx b/src/icons-neo/copyIcon.tsx deleted file mode 100644 index e8ea2e58..00000000 --- a/src/icons-neo/copyIcon.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CopyIcon = createASIcon( - "CopyIcon", - { - xmlns: "http://www.w3.org/2000/svg", - width: "20", - height: "20", - fill: "none", - viewBox: "0 0 20 20", - }, - - - - - - - - - - - , -); - -export default CopyIcon; diff --git a/src/icons-neo/copyReferral.tsx b/src/icons-neo/copyReferral.tsx deleted file mode 100644 index ca34eb47..00000000 --- a/src/icons-neo/copyReferral.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CopyReferral = createASIcon( - "CopyReferral", - { - xmlns: "http://www.w3.org/2000/svg", - width: "32", - height: "32", - fill: "none", - viewBox: "0 0 32 32", - }, - - - - - - - - - - - - , -); - -export default CopyReferral; diff --git a/src/icons-neo/coupon.tsx b/src/icons-neo/coupon.tsx deleted file mode 100644 index 47aefb67..00000000 --- a/src/icons-neo/coupon.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Coupon = createASIcon( - "Coupon", - { - xmlns: "http://www.w3.org/2000/svg", - width: "21", - height: "20", - fill: "none", - viewBox: "0 0 21 20", - }, - - - - - - - - - - - - - , -); - -export default Coupon; diff --git a/src/icons-neo/createProfile.tsx b/src/icons-neo/createProfile.tsx deleted file mode 100644 index 8fcf19be..00000000 --- a/src/icons-neo/createProfile.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CreateProfile = createASIcon( - "CreateProfile", - { - xmlns: "http://www.w3.org/2000/svg", - width: "28", - height: "28", - fill: "none", - viewBox: "0 0 28 28", - }, - - - - - - - - - - - - - - , -); - -export default CreateProfile; diff --git a/src/icons-neo/crown.tsx b/src/icons-neo/crown.tsx deleted file mode 100644 index 2ad41169..00000000 --- a/src/icons-neo/crown.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Crown = createASIcon( - "Crown", - { - xmlns: "http://www.w3.org/2000/svg", - width: "18", - height: "18", - fill: "none", - viewBox: "0 0 18 18", - }, - - - - - - - - - - - - , -); - -export default Crown; diff --git a/src/icons-neo/cup.tsx b/src/icons-neo/cup.tsx deleted file mode 100644 index 027d1f81..00000000 --- a/src/icons-neo/cup.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Cup = createASIcon( - "Cup", - { - xmlns: "http://www.w3.org/2000/svg", - "xmlns:xlink": "http://www.w3.org/1999/xlink", - width: "24", - height: "24", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - , -); - -export default Cup; diff --git a/src/icons-neo/curveArrow.tsx b/src/icons-neo/curveArrow.tsx deleted file mode 100644 index 70a95de7..00000000 --- a/src/icons-neo/curveArrow.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CurveArrow = createASIcon( - "CurveArrow", - { - xmlns: "http://www.w3.org/2000/svg", - width: "16", - height: "11", - fill: "none", - viewBox: "0 0 16 11", - }, - - - , -); - -export default CurveArrow; diff --git a/src/icons-neo/custom-profile.tsx b/src/icons-neo/custom-profile.tsx deleted file mode 100644 index 42e788fd..00000000 --- a/src/icons-neo/custom-profile.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CustomProfile = createASIcon( - "CustomProfile", - { - xmlns: "http://www.w3.org/2000/svg", - width: "28", - height: "29", - fill: "none", - viewBox: "0 0 28 29", - }, - - - - - - - - - - - - - , -); - -export default CustomProfile; diff --git a/src/icons-neo/dollar.tsx b/src/icons-neo/dollar.tsx deleted file mode 100644 index b47910d0..00000000 --- a/src/icons-neo/dollar.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Dollar = createASIcon( - "Dollar", - { - xmlns: "http://www.w3.org/2000/svg", - width: "8", - height: "14", - fill: "none", - viewBox: "0 0 8 14", - }, - - - - , -); - -export default Dollar; diff --git a/src/icons-neo/drawer.tsx b/src/icons-neo/drawer.tsx deleted file mode 100644 index 8fb8e354..00000000 --- a/src/icons-neo/drawer.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Drawer = createASIcon( - "Drawer", - { - xmlns: "http://www.w3.org/2000/svg", - width: "16", - height: "16", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - - - - - - - - , -); - -export default Drawer; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index f1e99d92..888c7b0b 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -1,22 +1,7 @@ -export { default as CrownBig } from './CrownBig'; -export { default as Cancel } from './cancel'; -export { default as CartIcon } from './cartIcon'; -export { default as Celebrate } from './celebrate'; -export { default as Check } from './check'; -export { default as Clear } from './clear'; -export { default as CoCatUpload } from './co-catUpload'; -export { default as ColorPalette } from './color_palette'; -export { default as Confetti } from './confetti'; -export { default as Copy } from './copy'; -export { default as CopyIcon } from './copyIcon'; -export { default as CopyReferral } from './copyReferral'; -export { default as Coupon } from './coupon'; -export { default as CreateProfile } from './createProfile'; -export { default as Crown } from './crown'; -export { default as Crowon } from './crowon'; -export { default as Cup } from './cup'; -export { default as CurveArrow } from './curveArrow'; -export { default as CustomProfile } from './custom-profile'; -export { default as Dollar } from './dollar'; -export { default as Drawer } from './drawer'; +export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; +export { default as AlertTriangle } from './alert-triangle'; +export { default as ChevronDown } from './chevron-down'; +export { default as ChevronLeft } from './chevron-left'; +export { default as ChevronRight } from './chevron-right'; +export { default as ChevronUp } from './chevron-up'; diff --git a/src/new-svgs/download.svg b/src/new-svgs/download.svg deleted file mode 100644 index 6121c070..00000000 --- a/src/new-svgs/download.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/stories-neo/Clear.stories.tsx b/src/stories-neo/AdjustmentsHorizontal.stories.tsx similarity index 71% rename from src/stories-neo/Clear.stories.tsx rename to src/stories-neo/AdjustmentsHorizontal.stories.tsx index 7aed24cc..9cfc6496 100644 --- a/src/stories-neo/Clear.stories.tsx +++ b/src/stories-neo/AdjustmentsHorizontal.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import WithBg from '../components/WithBg' - import Clear from '../icons-neo/clear' + import AdjustmentsHorizontal from '../icons-neo/adjustments-horizontal' - const meta: Meta = { - component: Clear, - title: 'omega/Clear', + const meta: Meta = { + component: AdjustmentsHorizontal, + title: 'omega/AdjustmentsHorizontal', decorators: [ (Story) => (
@@ -23,7 +23,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -45,21 +45,17 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { - className: 'hover:text-green-500 cursor-pointer', + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: 'fill-red-500', + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/src/stories-neo/Cup.stories.tsx b/src/stories-neo/AlertTriangle.stories.tsx similarity index 73% rename from src/stories-neo/Cup.stories.tsx rename to src/stories-neo/AlertTriangle.stories.tsx index c0a1d13f..3342a822 100644 --- a/src/stories-neo/Cup.stories.tsx +++ b/src/stories-neo/AlertTriangle.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import WithBg from '../components/WithBg' - import Cup from '../icons-neo/cup' + import AlertTriangle from '../icons-neo/alert-triangle' - const meta: Meta = { - component: Cup, - title: 'omega/Cup', + const meta: Meta = { + component: AlertTriangle, + title: 'omega/AlertTriangle', decorators: [ (Story) => (
@@ -23,7 +23,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -45,21 +45,17 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { - className: 'hover:text-green-500 cursor-pointer', + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: 'fill-red-500', + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/src/stories-neo/Cancel.stories.tsx b/src/stories-neo/Cancel.stories.tsx deleted file mode 100644 index ed90327e..00000000 --- a/src/stories-neo/Cancel.stories.tsx +++ /dev/null @@ -1,64 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import WithBg from '../components/WithBg' -import Cancel from '../icons-neo/cancel' - -const meta: Meta = { - component: Cancel, - title: 'omega/Cancel', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 50, - }, -} - -export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, -} - -export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, -} - -export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, -} diff --git a/src/stories-neo/CartIcon.stories.tsx b/src/stories-neo/CartIcon.stories.tsx deleted file mode 100644 index 911da1ee..00000000 --- a/src/stories-neo/CartIcon.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CartIcon from '../icons-neo/cartIcon' - - const meta: Meta = { - component: CartIcon, - title: 'omega/CartIcon', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Celebrate.stories.tsx b/src/stories-neo/Celebrate.stories.tsx deleted file mode 100644 index 29a16394..00000000 --- a/src/stories-neo/Celebrate.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Celebrate from '../icons-neo/celebrate' - - const meta: Meta = { - component: Celebrate, - title: 'omega/Celebrate', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-neo/ChevronDown.stories.tsx similarity index 73% rename from src/stories-neo/Copy.stories.tsx rename to src/stories-neo/ChevronDown.stories.tsx index dae562ea..5f733b42 100644 --- a/src/stories-neo/Copy.stories.tsx +++ b/src/stories-neo/ChevronDown.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import WithBg from '../components/WithBg' - import Copy from '../icons-neo/copy' + import ChevronDown from '../icons-neo/chevron-down' - const meta: Meta = { - component: Copy, - title: 'omega/Copy', + const meta: Meta = { + component: ChevronDown, + title: 'omega/ChevronDown', decorators: [ (Story) => (
@@ -23,7 +23,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -45,21 +45,17 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { - className: 'hover:text-green-500 cursor-pointer', + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: 'fill-red-500', + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-neo/ChevronLeft.stories.tsx similarity index 72% rename from src/stories-neo/Crown.stories.tsx rename to src/stories-neo/ChevronLeft.stories.tsx index c157053a..3003dafe 100644 --- a/src/stories-neo/Crown.stories.tsx +++ b/src/stories-neo/ChevronLeft.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import WithBg from '../components/WithBg' - import Crown from '../icons-neo/crown' + import ChevronLeft from '../icons-neo/chevron-left' - const meta: Meta = { - component: Crown, - title: 'omega/Crown', + const meta: Meta = { + component: ChevronLeft, + title: 'omega/ChevronLeft', decorators: [ (Story) => (
@@ -23,7 +23,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -45,21 +45,17 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { - className: 'hover:text-green-500 cursor-pointer', + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: 'fill-red-500', + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-neo/ChevronRight.stories.tsx similarity index 72% rename from src/stories-neo/Check.stories.tsx rename to src/stories-neo/ChevronRight.stories.tsx index 4816f801..601e99d8 100644 --- a/src/stories-neo/Check.stories.tsx +++ b/src/stories-neo/ChevronRight.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import WithBg from '../components/WithBg' - import Check from '../icons-neo/check' + import ChevronRight from '../icons-neo/chevron-right' - const meta: Meta = { - component: Check, - title: 'omega/Check', + const meta: Meta = { + component: ChevronRight, + title: 'omega/ChevronRight', decorators: [ (Story) => (
@@ -23,7 +23,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -45,21 +45,17 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - export const Hover: Story = { args: { - className: 'hover:text-green-500 cursor-pointer', + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', }, } + + - export const FillColor: Story = { + export const ClassName: Story = { args: { - fillColor: 'fill-red-500', + className: 'text-red-500 w-[50px] h-[50px]', }, } diff --git a/src/stories-neo/ChevronUp.stories.tsx b/src/stories-neo/ChevronUp.stories.tsx new file mode 100644 index 00000000..f9f68b60 --- /dev/null +++ b/src/stories-neo/ChevronUp.stories.tsx @@ -0,0 +1,62 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + + import WithBg from '../components/WithBg' + import ChevronUp from '../icons-neo/chevron-up' + + const meta: Meta = { + component: ChevronUp, + title: 'omega/ChevronUp', + decorators: [ + (Story) => ( +
+ + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500 w-[50px] h-[50px]', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CoCatUpload.stories.tsx b/src/stories-neo/CoCatUpload.stories.tsx deleted file mode 100644 index 00ed6d92..00000000 --- a/src/stories-neo/CoCatUpload.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CoCatUpload from '../icons-neo/co-catUpload' - - const meta: Meta = { - component: CoCatUpload, - title: 'omega/CoCatUpload', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/ColorPalette.stories.tsx b/src/stories-neo/ColorPalette.stories.tsx deleted file mode 100644 index 13b90b8d..00000000 --- a/src/stories-neo/ColorPalette.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import ColorPalette from '../icons-neo/color_palette' - - const meta: Meta = { - component: ColorPalette, - title: 'omega/ColorPalette', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-neo/Confetti.stories.tsx deleted file mode 100644 index 2e0b9bb5..00000000 --- a/src/stories-neo/Confetti.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Confetti from '../icons-neo/confetti' - - const meta: Meta = { - component: Confetti, - title: 'omega/Confetti', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CopyIcon.stories.tsx b/src/stories-neo/CopyIcon.stories.tsx deleted file mode 100644 index f3506291..00000000 --- a/src/stories-neo/CopyIcon.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CopyIcon from '../icons-neo/copyIcon' - - const meta: Meta = { - component: CopyIcon, - title: 'omega/CopyIcon', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CopyReferral.stories.tsx b/src/stories-neo/CopyReferral.stories.tsx deleted file mode 100644 index db8dca01..00000000 --- a/src/stories-neo/CopyReferral.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CopyReferral from '../icons-neo/copyReferral' - - const meta: Meta = { - component: CopyReferral, - title: 'omega/CopyReferral', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Coupon.stories.tsx b/src/stories-neo/Coupon.stories.tsx deleted file mode 100644 index da54eb35..00000000 --- a/src/stories-neo/Coupon.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Coupon from '../icons-neo/coupon' - - const meta: Meta = { - component: Coupon, - title: 'omega/Coupon', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CreateProfile.stories.tsx b/src/stories-neo/CreateProfile.stories.tsx deleted file mode 100644 index ec0a9c15..00000000 --- a/src/stories-neo/CreateProfile.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CreateProfile from '../icons-neo/createProfile' - - const meta: Meta = { - component: CreateProfile, - title: 'omega/CreateProfile', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CrownBig.stories.tsx b/src/stories-neo/CrownBig.stories.tsx deleted file mode 100644 index 427026dc..00000000 --- a/src/stories-neo/CrownBig.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CrownBig from '../icons-neo/CrownBig' - - const meta: Meta = { - component: CrownBig, - title: 'omega/CrownBig', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Crowon.stories.tsx b/src/stories-neo/Crowon.stories.tsx deleted file mode 100644 index f69c4a9c..00000000 --- a/src/stories-neo/Crowon.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Crowon from '../icons-neo/crowon' - - const meta: Meta = { - component: Crowon, - title: 'omega/Crowon', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CurveArrow.stories.tsx b/src/stories-neo/CurveArrow.stories.tsx deleted file mode 100644 index 718d6cef..00000000 --- a/src/stories-neo/CurveArrow.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CurveArrow from '../icons-neo/curveArrow' - - const meta: Meta = { - component: CurveArrow, - title: 'omega/CurveArrow', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/CustomProfile.stories.tsx b/src/stories-neo/CustomProfile.stories.tsx deleted file mode 100644 index 224647fa..00000000 --- a/src/stories-neo/CustomProfile.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import CustomProfile from '../icons-neo/custom-profile' - - const meta: Meta = { - component: CustomProfile, - title: 'omega/CustomProfile', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Dollar.stories.tsx b/src/stories-neo/Dollar.stories.tsx deleted file mode 100644 index 63f396c4..00000000 --- a/src/stories-neo/Dollar.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Dollar from '../icons-neo/dollar' - - const meta: Meta = { - component: Dollar, - title: 'omega/Dollar', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories-neo/Drawer.stories.tsx b/src/stories-neo/Drawer.stories.tsx deleted file mode 100644 index 452be14d..00000000 --- a/src/stories-neo/Drawer.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - - import WithBg from '../components/WithBg' - import Drawer from '../icons-neo/drawer' - - const meta: Meta = { - component: Drawer, - title: 'omega/Drawer', - decorators: [ - (Story) => ( -
- - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 50, - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-500 w-[70px] h-[70px]', - }, - } - - export const Hover: Story = { - args: { - className: 'hover:text-green-500 cursor-pointer', - }, - } - - export const FillColor: Story = { - args: { - fillColor: 'fill-red-500', - }, - } - - \ No newline at end of file diff --git a/src/stories/sample.stories.tsx b/src/stories/sample.stories.tsx deleted file mode 100644 index 5740b437..00000000 --- a/src/stories/sample.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import AdjustProfile from '../icons-neo/adjust_profile' - -const meta: Meta = { - component: AdjustProfile, - title: 'neo/AdjustProfile', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 089aeb46..7e3ceecc 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -574,6 +574,10 @@ video { height: auto; } +.h-\[50px\] { + height: 50px; +} + .w-10 { width: 2.5rem; } @@ -594,6 +598,10 @@ video { width: 70px; } +.w-\[50px\] { + width: 50px; +} + .shrink-0 { flex-shrink: 0; } @@ -606,10 +614,6 @@ video { cursor: pointer; } -.fill-red-500 { - fill: #ef4444; -} - .stroke-\[\#fff\] { stroke: #fff; } diff --git a/svg-children/CrownBig.svg b/svg-children/CrownBig.svg deleted file mode 100644 index d0d4c168..00000000 --- a/svg-children/CrownBig.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/adjustments-horizontal.svg b/svg-children/adjustments-horizontal.svg new file mode 100644 index 00000000..9e49845f --- /dev/null +++ b/svg-children/adjustments-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert-triangle.svg b/svg-children/alert-triangle.svg new file mode 100644 index 00000000..40d02cae --- /dev/null +++ b/svg-children/alert-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/cancel.svg b/svg-children/cancel.svg deleted file mode 100644 index 132dfbac..00000000 --- a/svg-children/cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/cartIcon.svg b/svg-children/cartIcon.svg deleted file mode 100644 index b2b322d5..00000000 --- a/svg-children/cartIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/celebrate.svg b/svg-children/celebrate.svg deleted file mode 100644 index a662b68f..00000000 --- a/svg-children/celebrate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/check.svg b/svg-children/check.svg deleted file mode 100644 index dcba2076..00000000 --- a/svg-children/check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/chevron-down.svg b/svg-children/chevron-down.svg new file mode 100644 index 00000000..79a37d2b --- /dev/null +++ b/svg-children/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/chevron-left.svg b/svg-children/chevron-left.svg new file mode 100644 index 00000000..a1063ff4 --- /dev/null +++ b/svg-children/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/chevron-right.svg b/svg-children/chevron-right.svg new file mode 100644 index 00000000..2a787679 --- /dev/null +++ b/svg-children/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/chevron-up.svg b/svg-children/chevron-up.svg new file mode 100644 index 00000000..48386490 --- /dev/null +++ b/svg-children/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/clear.svg b/svg-children/clear.svg deleted file mode 100644 index dc392106..00000000 --- a/svg-children/clear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/co-catUpload.svg b/svg-children/co-catUpload.svg deleted file mode 100644 index e98f145a..00000000 --- a/svg-children/co-catUpload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/color_palette.svg b/svg-children/color_palette.svg deleted file mode 100644 index e227c441..00000000 --- a/svg-children/color_palette.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/confetti.svg b/svg-children/confetti.svg deleted file mode 100644 index ebd4dc64..00000000 --- a/svg-children/confetti.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/copy.svg b/svg-children/copy.svg deleted file mode 100644 index 29a77712..00000000 --- a/svg-children/copy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/copyIcon.svg b/svg-children/copyIcon.svg deleted file mode 100644 index 96e25acf..00000000 --- a/svg-children/copyIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/copyReferral.svg b/svg-children/copyReferral.svg deleted file mode 100644 index 49605df2..00000000 --- a/svg-children/copyReferral.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/coupon.svg b/svg-children/coupon.svg deleted file mode 100644 index 3683c71d..00000000 --- a/svg-children/coupon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/createProfile.svg b/svg-children/createProfile.svg deleted file mode 100644 index c6988fe1..00000000 --- a/svg-children/createProfile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/crown.svg b/svg-children/crown.svg deleted file mode 100644 index b938941f..00000000 --- a/svg-children/crown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/crowon.svg b/svg-children/crowon.svg deleted file mode 100644 index 317573be..00000000 --- a/svg-children/crowon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/cup.svg b/svg-children/cup.svg deleted file mode 100644 index 48f195ba..00000000 --- a/svg-children/cup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/curveArrow.svg b/svg-children/curveArrow.svg deleted file mode 100644 index 40607174..00000000 --- a/svg-children/curveArrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/custom-profile.svg b/svg-children/custom-profile.svg deleted file mode 100644 index 66d66885..00000000 --- a/svg-children/custom-profile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/dollar.svg b/svg-children/dollar.svg deleted file mode 100644 index 8f8ac960..00000000 --- a/svg-children/dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/drawer.svg b/svg-children/drawer.svg deleted file mode 100644 index 02096b12..00000000 --- a/svg-children/drawer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From f110aa28d9225f377cb4f123258146766895fc8a Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 17:04:01 +0530 Subject: [PATCH 11/34] add: icons --- icons-optimized/adjustments-horizontal.svg | 7 +- icons-optimized/alert-circle.svg | 23 +++ icons-optimized/alert-triangle.svg | 7 +- icons-optimized/arrow-down.svg | 23 +++ icons-optimized/arrow-left.svg | 23 +++ icons-optimized/arrow-narrow-left.svg | 23 +++ icons-optimized/arrow-narrow-right.svg | 23 +++ icons-optimized/arrow-right.svg | 23 +++ icons-optimized/arrow-up.svg | 23 +++ icons-optimized/bulb-off.svg | 22 +++ icons-optimized/bulb.svg | 23 +++ icons-optimized/chevron-down.svg | 7 +- icons-optimized/chevron-left.svg | 7 +- icons-optimized/chevron-right.svg | 7 +- icons-optimized/chevron-up.svg | 7 +- icons-optimized/circle-check.svg | 22 +++ icons-optimized/shopping-cart-discount.svg | 27 ++++ icons-optimized/shopping-cart.svg | 24 ++++ icons-optimized/x.svg | 22 +++ icons-original/fill-outline/home-mix.svg | 14 ++ .../fill-outline/layout-sidebar-right-mix.svg | 9 ++ icons-original/fill-outline/none-selected.svg | 11 ++ icons-original/fill-outline/upload-c1-cat.svg | 18 +++ icons-original/fill-outline/upload-lr-cat.svg | 18 +++ icons-original/fill/aftershoot-logo.svg | 3 + ...alert-circle.svg => alert-circle-fill.svg} | 0 .../{alert.svg => alert-triangle-fill.svg} | 0 .../fill/{apple.svg => apple-all.svg} | 0 icons-original/fill/arrow-curve-fill.svg | 3 + icons-original/fill/crown-2-fill.svg | 4 + icons-original/fill/palette-fill.svg | 3 + icons-original/fill/pause-fill.svg | 4 + icons-original/fill/play-fill.svg | 3 + icons-original/outline/alarm.svg | 13 ++ icons-original/outline/alert-circle.svg | 12 ++ icons-original/outline/alert-octagon.svg | 12 ++ icons-original/outline/arrow-down.svg | 12 ++ icons-original/outline/arrow-left.svg | 12 ++ icons-original/outline/arrow-narrow-left.svg | 12 ++ icons-original/outline/arrow-narrow-right.svg | 12 ++ icons-original/outline/arrow-right.svg | 12 ++ icons-original/outline/arrow-up.svg | 12 ++ icons-original/outline/atom.svg | 12 ++ icons-original/outline/ban.svg | 11 ++ icons-original/outline/bell-minus.svg | 12 ++ icons-original/outline/bell-off.svg | 12 ++ icons-original/outline/bell-plus.svg | 13 ++ icons-original/outline/bell-ringing-2.svg | 11 ++ icons-original/outline/bell-ringing.svg | 13 ++ icons-original/outline/bell-x.svg | 12 ++ icons-original/outline/bell.svg | 11 ++ icons-original/outline/brand-facebook.svg | 10 ++ icons-original/outline/brand-twitter.svg | 10 ++ icons-original/outline/brand-whatsapp.svg | 11 ++ icons-original/outline/bulb-off.svg | 11 ++ icons-original/outline/bulb.svg | 12 ++ icons-original/outline/check.svg | 10 ++ icons-original/outline/chevrons-left.svg | 11 ++ icons-original/outline/chevrons-right.svg | 11 ++ icons-original/outline/circle-check.svg | 11 ++ icons-original/outline/clock.svg | 11 ++ icons-original/outline/color-swatch.svg | 13 ++ icons-original/outline/confetti.svg | 19 +++ icons-original/outline/copy.svg | 11 ++ icons-original/outline/crown.svg | 10 ++ icons-original/outline/currency-dollar.svg | 11 ++ icons-original/outline/diamond.svg | 11 ++ icons-original/outline/discount-2.svg | 13 ++ icons-original/outline/discount.svg | 13 ++ icons-original/outline/download.svg | 12 ++ icons-original/outline/external-link.svg | 12 ++ icons-original/outline/eye-check.svg | 12 ++ icons-original/outline/eye-off.svg | 12 ++ icons-original/outline/eye.svg | 11 ++ icons-original/outline/file-download.svg | 13 ++ icons-original/outline/file-export.svg | 11 ++ icons-original/outline/file-report.svg | 13 ++ icons-original/outline/file-search.svg | 13 ++ icons-original/outline/flag.svg | 10 ++ icons-original/outline/folder-download.svg | 12 ++ icons-original/outline/folder-eye.svg | 12 ++ icons-original/outline/folder-minus.svg | 11 ++ icons-original/outline/folder-off.svg | 11 ++ icons-original/outline/folder-plus.svg | 12 ++ icons-original/outline/folder-upload.svg | 12 ++ icons-original/outline/folder-x.svg | 11 ++ icons-original/outline/folder.svg | 10 ++ icons-original/outline/folders.svg | 11 ++ icons-original/outline/grid-dots.svg | 18 +++ icons-original/outline/home-2.svg | 19 +++ icons-original/outline/info-circle.svg | 12 ++ icons-original/outline/info-square.svg | 12 ++ icons-original/outline/loader.svg | 17 +++ icons-original/outline/lock-2.svg | 11 ++ icons-original/outline/lock-off.svg | 13 ++ icons-original/outline/lock-open.svg | 12 ++ icons-original/outline/lock.svg | 12 ++ icons-original/outline/mail.svg | 11 ++ icons-original/outline/mood-crazy-happy.svg | 15 ++ icons-original/outline/mood-empty.svg | 13 ++ icons-original/outline/mood-sad.svg | 13 ++ icons-original/outline/mood-smile.svg | 13 ++ icons-original/outline/mouse-left.svg | 4 + icons-original/outline/mouse-right.svg | 4 + icons-original/outline/palette.svg | 14 ++ icons-original/outline/photo-off.svg | 14 ++ icons-original/outline/photo-stack.svg | 14 ++ icons-original/outline/photo.svg | 13 ++ icons-original/outline/question-mark.svg | 11 ++ .../outline/shopping-cart-discount.svg | 16 +++ icons-original/outline/shopping-cart.svg | 13 ++ icons-original/outline/spray.svg | 4 + icons-original/outline/stack-2.svg | 11 ++ icons-original/outline/stack.svg | 12 ++ icons-original/outline/star-off.svg | 11 ++ icons-original/outline/star.svg | 10 ++ icons-original/outline/thumb-down.svg | 10 ++ icons-original/outline/thumb-up.svg | 10 ++ icons-original/outline/trash-off.svg | 16 +++ icons-original/outline/trash.svg | 14 ++ icons-original/outline/viewfinder.svg | 15 ++ icons-original/outline/world.svg | 14 ++ icons-original/outline/x.svg | 11 ++ icons-original/weird/cup.svg | 9 ++ icons-original/weird/facebook.svg | 11 ++ icons-original/weird/facebook_color.svg | 1 + icons-original/weird/goodies.svg | 135 ++++++++++++++++++ icons-original/weird/google-color.svg | 13 ++ icons-original/weird/logo.svg | 1 + scripts/exportStoryTemplate.mjs | 22 +-- scripts/processSvg.mjs | 2 +- scripts/removeDir.mjs | 3 + src/Icon.ts | 16 +-- src/components/IconBackground.tsx | 26 ++++ src/components/IconBorder.tsx | 24 ++++ src/components/WithBg.tsx | 38 ----- src/constant.ts | 20 ++- src/createASIcon.ts | 2 +- src/defaultAttributes.ts | 2 +- src/defaultBgStyles.ts | 1 + src/deleted-icons/TwitterBgIcon.tsx | 51 ------- src/deleted-icons/TwitterIcon.tsx | 40 ------ src/deleted-icons/TwitterOutlineIcon.tsx | 47 ------ src/icons-neo/adjustments-horizontal.tsx | 8 +- src/icons-neo/alert-circle.tsx | 33 +++++ src/icons-neo/alert-triangle.tsx | 8 +- src/icons-neo/arrow-down.tsx | 33 +++++ src/icons-neo/arrow-left.tsx | 33 +++++ src/icons-neo/arrow-narrow-left.tsx | 33 +++++ src/icons-neo/arrow-narrow-right.tsx | 33 +++++ src/icons-neo/arrow-right.tsx | 33 +++++ src/icons-neo/arrow-up.tsx | 33 +++++ src/icons-neo/bulb-off.tsx | 32 +++++ src/icons-neo/bulb.tsx | 33 +++++ src/icons-neo/chevron-down.tsx | 7 +- src/icons-neo/chevron-left.tsx | 7 +- src/icons-neo/chevron-right.tsx | 7 +- src/icons-neo/chevron-up.tsx | 7 +- src/icons-neo/circle-check.tsx | 32 +++++ src/icons-neo/index.ts | 13 ++ src/icons-neo/shopping-cart-discount.tsx | 37 +++++ src/icons-neo/shopping-cart.tsx | 34 +++++ src/icons-neo/x.tsx | 32 +++++ .../AdjustmentsHorizontal.stories.tsx | 22 +-- src/stories-neo/AlertCircle.stories.tsx | 68 +++++++++ src/stories-neo/AlertTriangle.stories.tsx | 22 +-- src/stories-neo/ArrowDown.stories.tsx | 68 +++++++++ src/stories-neo/ArrowLeft.stories.tsx | 68 +++++++++ src/stories-neo/ArrowNarrowLeft.stories.tsx | 68 +++++++++ src/stories-neo/ArrowNarrowRight.stories.tsx | 68 +++++++++ src/stories-neo/ArrowRight.stories.tsx | 68 +++++++++ src/stories-neo/ArrowUp.stories.tsx | 68 +++++++++ src/stories-neo/Bulb.stories.tsx | 68 +++++++++ src/stories-neo/BulbOff.stories.tsx | 68 +++++++++ src/stories-neo/ChevronDown.stories.tsx | 22 +-- src/stories-neo/ChevronLeft.stories.tsx | 22 +-- src/stories-neo/ChevronRight.stories.tsx | 22 +-- src/stories-neo/ChevronUp.stories.tsx | 22 +-- src/stories-neo/CircleCheck.stories.tsx | 68 +++++++++ src/stories-neo/ShoppingCart.stories.tsx | 68 +++++++++ .../ShoppingCartDiscount.stories.tsx | 68 +++++++++ src/stories-neo/X.stories.tsx | 68 +++++++++ src/stories/TwitterBgIcon.stories.tsx | 40 ------ src/styles/tailwind.css | 88 ++++++++++++ svg-children/adjustments-horizontal.svg | 1 - svg-children/alert-triangle.svg | 1 - svg-children/chevron-down.svg | 1 - svg-children/chevron-left.svg | 1 - svg-children/chevron-right.svg | 1 - svg-children/chevron-up.svg | 1 - 190 files changed, 3299 insertions(+), 314 deletions(-) create mode 100644 icons-optimized/alert-circle.svg create mode 100644 icons-optimized/arrow-down.svg create mode 100644 icons-optimized/arrow-left.svg create mode 100644 icons-optimized/arrow-narrow-left.svg create mode 100644 icons-optimized/arrow-narrow-right.svg create mode 100644 icons-optimized/arrow-right.svg create mode 100644 icons-optimized/arrow-up.svg create mode 100644 icons-optimized/bulb-off.svg create mode 100644 icons-optimized/bulb.svg create mode 100644 icons-optimized/circle-check.svg create mode 100644 icons-optimized/shopping-cart-discount.svg create mode 100644 icons-optimized/shopping-cart.svg create mode 100644 icons-optimized/x.svg create mode 100644 icons-original/fill-outline/home-mix.svg create mode 100644 icons-original/fill-outline/layout-sidebar-right-mix.svg create mode 100644 icons-original/fill-outline/none-selected.svg create mode 100644 icons-original/fill-outline/upload-c1-cat.svg create mode 100644 icons-original/fill-outline/upload-lr-cat.svg create mode 100644 icons-original/fill/aftershoot-logo.svg rename icons-original/fill/{alert-circle.svg => alert-circle-fill.svg} (100%) rename icons-original/fill/{alert.svg => alert-triangle-fill.svg} (100%) rename icons-original/fill/{apple.svg => apple-all.svg} (100%) create mode 100644 icons-original/fill/arrow-curve-fill.svg create mode 100644 icons-original/fill/crown-2-fill.svg create mode 100644 icons-original/fill/palette-fill.svg create mode 100644 icons-original/fill/pause-fill.svg create mode 100644 icons-original/fill/play-fill.svg create mode 100644 icons-original/outline/alarm.svg create mode 100644 icons-original/outline/alert-circle.svg create mode 100644 icons-original/outline/alert-octagon.svg create mode 100644 icons-original/outline/arrow-down.svg create mode 100644 icons-original/outline/arrow-left.svg create mode 100644 icons-original/outline/arrow-narrow-left.svg create mode 100644 icons-original/outline/arrow-narrow-right.svg create mode 100644 icons-original/outline/arrow-right.svg create mode 100644 icons-original/outline/arrow-up.svg create mode 100644 icons-original/outline/atom.svg create mode 100644 icons-original/outline/ban.svg create mode 100644 icons-original/outline/bell-minus.svg create mode 100644 icons-original/outline/bell-off.svg create mode 100644 icons-original/outline/bell-plus.svg create mode 100644 icons-original/outline/bell-ringing-2.svg create mode 100644 icons-original/outline/bell-ringing.svg create mode 100644 icons-original/outline/bell-x.svg create mode 100644 icons-original/outline/bell.svg create mode 100644 icons-original/outline/brand-facebook.svg create mode 100644 icons-original/outline/brand-twitter.svg create mode 100644 icons-original/outline/brand-whatsapp.svg create mode 100644 icons-original/outline/bulb-off.svg create mode 100644 icons-original/outline/bulb.svg create mode 100644 icons-original/outline/check.svg create mode 100644 icons-original/outline/chevrons-left.svg create mode 100644 icons-original/outline/chevrons-right.svg create mode 100644 icons-original/outline/circle-check.svg create mode 100644 icons-original/outline/clock.svg create mode 100644 icons-original/outline/color-swatch.svg create mode 100644 icons-original/outline/confetti.svg create mode 100644 icons-original/outline/copy.svg create mode 100644 icons-original/outline/crown.svg create mode 100644 icons-original/outline/currency-dollar.svg create mode 100644 icons-original/outline/diamond.svg create mode 100644 icons-original/outline/discount-2.svg create mode 100644 icons-original/outline/discount.svg create mode 100644 icons-original/outline/download.svg create mode 100644 icons-original/outline/external-link.svg create mode 100644 icons-original/outline/eye-check.svg create mode 100644 icons-original/outline/eye-off.svg create mode 100644 icons-original/outline/eye.svg create mode 100644 icons-original/outline/file-download.svg create mode 100644 icons-original/outline/file-export.svg create mode 100644 icons-original/outline/file-report.svg create mode 100644 icons-original/outline/file-search.svg create mode 100644 icons-original/outline/flag.svg create mode 100644 icons-original/outline/folder-download.svg create mode 100644 icons-original/outline/folder-eye.svg create mode 100644 icons-original/outline/folder-minus.svg create mode 100644 icons-original/outline/folder-off.svg create mode 100644 icons-original/outline/folder-plus.svg create mode 100644 icons-original/outline/folder-upload.svg create mode 100644 icons-original/outline/folder-x.svg create mode 100644 icons-original/outline/folder.svg create mode 100644 icons-original/outline/folders.svg create mode 100644 icons-original/outline/grid-dots.svg create mode 100644 icons-original/outline/home-2.svg create mode 100644 icons-original/outline/info-circle.svg create mode 100644 icons-original/outline/info-square.svg create mode 100644 icons-original/outline/loader.svg create mode 100644 icons-original/outline/lock-2.svg create mode 100644 icons-original/outline/lock-off.svg create mode 100644 icons-original/outline/lock-open.svg create mode 100644 icons-original/outline/lock.svg create mode 100644 icons-original/outline/mail.svg create mode 100644 icons-original/outline/mood-crazy-happy.svg create mode 100644 icons-original/outline/mood-empty.svg create mode 100644 icons-original/outline/mood-sad.svg create mode 100644 icons-original/outline/mood-smile.svg create mode 100644 icons-original/outline/mouse-left.svg create mode 100644 icons-original/outline/mouse-right.svg create mode 100644 icons-original/outline/palette.svg create mode 100644 icons-original/outline/photo-off.svg create mode 100644 icons-original/outline/photo-stack.svg create mode 100644 icons-original/outline/photo.svg create mode 100644 icons-original/outline/question-mark.svg create mode 100644 icons-original/outline/shopping-cart-discount.svg create mode 100644 icons-original/outline/shopping-cart.svg create mode 100644 icons-original/outline/spray.svg create mode 100644 icons-original/outline/stack-2.svg create mode 100644 icons-original/outline/stack.svg create mode 100644 icons-original/outline/star-off.svg create mode 100644 icons-original/outline/star.svg create mode 100644 icons-original/outline/thumb-down.svg create mode 100644 icons-original/outline/thumb-up.svg create mode 100644 icons-original/outline/trash-off.svg create mode 100644 icons-original/outline/trash.svg create mode 100644 icons-original/outline/viewfinder.svg create mode 100644 icons-original/outline/world.svg create mode 100644 icons-original/outline/x.svg create mode 100644 icons-original/weird/cup.svg create mode 100644 icons-original/weird/facebook.svg create mode 100644 icons-original/weird/facebook_color.svg create mode 100644 icons-original/weird/goodies.svg create mode 100644 icons-original/weird/google-color.svg create mode 100644 icons-original/weird/logo.svg create mode 100644 src/components/IconBackground.tsx create mode 100644 src/components/IconBorder.tsx delete mode 100644 src/components/WithBg.tsx delete mode 100644 src/deleted-icons/TwitterBgIcon.tsx delete mode 100644 src/deleted-icons/TwitterIcon.tsx delete mode 100644 src/deleted-icons/TwitterOutlineIcon.tsx create mode 100644 src/icons-neo/alert-circle.tsx create mode 100644 src/icons-neo/arrow-down.tsx create mode 100644 src/icons-neo/arrow-left.tsx create mode 100644 src/icons-neo/arrow-narrow-left.tsx create mode 100644 src/icons-neo/arrow-narrow-right.tsx create mode 100644 src/icons-neo/arrow-right.tsx create mode 100644 src/icons-neo/arrow-up.tsx create mode 100644 src/icons-neo/bulb-off.tsx create mode 100644 src/icons-neo/bulb.tsx create mode 100644 src/icons-neo/circle-check.tsx create mode 100644 src/icons-neo/shopping-cart-discount.tsx create mode 100644 src/icons-neo/shopping-cart.tsx create mode 100644 src/icons-neo/x.tsx create mode 100644 src/stories-neo/AlertCircle.stories.tsx create mode 100644 src/stories-neo/ArrowDown.stories.tsx create mode 100644 src/stories-neo/ArrowLeft.stories.tsx create mode 100644 src/stories-neo/ArrowNarrowLeft.stories.tsx create mode 100644 src/stories-neo/ArrowNarrowRight.stories.tsx create mode 100644 src/stories-neo/ArrowRight.stories.tsx create mode 100644 src/stories-neo/ArrowUp.stories.tsx create mode 100644 src/stories-neo/Bulb.stories.tsx create mode 100644 src/stories-neo/BulbOff.stories.tsx create mode 100644 src/stories-neo/CircleCheck.stories.tsx create mode 100644 src/stories-neo/ShoppingCart.stories.tsx create mode 100644 src/stories-neo/ShoppingCartDiscount.stories.tsx create mode 100644 src/stories-neo/X.stories.tsx delete mode 100644 src/stories/TwitterBgIcon.stories.tsx delete mode 100644 svg-children/adjustments-horizontal.svg delete mode 100644 svg-children/alert-triangle.svg delete mode 100644 svg-children/chevron-down.svg delete mode 100644 svg-children/chevron-left.svg delete mode 100644 svg-children/chevron-right.svg delete mode 100644 svg-children/chevron-up.svg diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg index f3cabdf0..1620fcd8 100644 --- a/icons-optimized/adjustments-horizontal.svg +++ b/icons-optimized/adjustments-horizontal.svg @@ -5,7 +5,12 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle.svg new file mode 100644 index 00000000..3fb257c4 --- /dev/null +++ b/icons-optimized/alert-circle.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg index d0a3f180..b2681190 100644 --- a/icons-optimized/alert-triangle.svg +++ b/icons-optimized/alert-triangle.svg @@ -5,7 +5,12 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down.svg new file mode 100644 index 00000000..c196b8ce --- /dev/null +++ b/icons-optimized/arrow-down.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left.svg new file mode 100644 index 00000000..c19e01c0 --- /dev/null +++ b/icons-optimized/arrow-left.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left.svg new file mode 100644 index 00000000..40662633 --- /dev/null +++ b/icons-optimized/arrow-narrow-left.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right.svg new file mode 100644 index 00000000..7f844660 --- /dev/null +++ b/icons-optimized/arrow-narrow-right.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right.svg new file mode 100644 index 00000000..d651aa41 --- /dev/null +++ b/icons-optimized/arrow-right.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up.svg new file mode 100644 index 00000000..122cbd4a --- /dev/null +++ b/icons-optimized/arrow-up.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off.svg new file mode 100644 index 00000000..a1f526ba --- /dev/null +++ b/icons-optimized/bulb-off.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb.svg new file mode 100644 index 00000000..f5d147a4 --- /dev/null +++ b/icons-optimized/bulb.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg index 89614913..d36e3bae 100644 --- a/icons-optimized/chevron-down.svg +++ b/icons-optimized/chevron-down.svg @@ -6,7 +6,12 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg index 7c195edd..bdbdf5c1 100644 --- a/icons-optimized/chevron-left.svg +++ b/icons-optimized/chevron-left.svg @@ -6,7 +6,12 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg index 7bf95e7c..1c1a4a05 100644 --- a/icons-optimized/chevron-right.svg +++ b/icons-optimized/chevron-right.svg @@ -6,7 +6,12 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg index 30f8503d..2b2652b6 100644 --- a/icons-optimized/chevron-up.svg +++ b/icons-optimized/chevron-up.svg @@ -6,7 +6,12 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check.svg new file mode 100644 index 00000000..de94b3ed --- /dev/null +++ b/icons-optimized/circle-check.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount.svg new file mode 100644 index 00000000..effc57a7 --- /dev/null +++ b/icons-optimized/shopping-cart-discount.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart.svg new file mode 100644 index 00000000..b5261491 --- /dev/null +++ b/icons-optimized/shopping-cart.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/x.svg b/icons-optimized/x.svg new file mode 100644 index 00000000..0c2d42fb --- /dev/null +++ b/icons-optimized/x.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/icons-original/fill-outline/home-mix.svg b/icons-original/fill-outline/home-mix.svg new file mode 100644 index 00000000..ca927aca --- /dev/null +++ b/icons-original/fill-outline/home-mix.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/fill-outline/layout-sidebar-right-mix.svg b/icons-original/fill-outline/layout-sidebar-right-mix.svg new file mode 100644 index 00000000..ea3bf838 --- /dev/null +++ b/icons-original/fill-outline/layout-sidebar-right-mix.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/fill-outline/none-selected.svg b/icons-original/fill-outline/none-selected.svg new file mode 100644 index 00000000..c105521f --- /dev/null +++ b/icons-original/fill-outline/none-selected.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/fill-outline/upload-c1-cat.svg b/icons-original/fill-outline/upload-c1-cat.svg new file mode 100644 index 00000000..391bd22f --- /dev/null +++ b/icons-original/fill-outline/upload-c1-cat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-original/fill-outline/upload-lr-cat.svg b/icons-original/fill-outline/upload-lr-cat.svg new file mode 100644 index 00000000..8fe98e6d --- /dev/null +++ b/icons-original/fill-outline/upload-lr-cat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-original/fill/aftershoot-logo.svg b/icons-original/fill/aftershoot-logo.svg new file mode 100644 index 00000000..c45327d9 --- /dev/null +++ b/icons-original/fill/aftershoot-logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/alert-circle.svg b/icons-original/fill/alert-circle-fill.svg similarity index 100% rename from icons-original/fill/alert-circle.svg rename to icons-original/fill/alert-circle-fill.svg diff --git a/icons-original/fill/alert.svg b/icons-original/fill/alert-triangle-fill.svg similarity index 100% rename from icons-original/fill/alert.svg rename to icons-original/fill/alert-triangle-fill.svg diff --git a/icons-original/fill/apple.svg b/icons-original/fill/apple-all.svg similarity index 100% rename from icons-original/fill/apple.svg rename to icons-original/fill/apple-all.svg diff --git a/icons-original/fill/arrow-curve-fill.svg b/icons-original/fill/arrow-curve-fill.svg new file mode 100644 index 00000000..bbd8715a --- /dev/null +++ b/icons-original/fill/arrow-curve-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/crown-2-fill.svg b/icons-original/fill/crown-2-fill.svg new file mode 100644 index 00000000..dce06ddb --- /dev/null +++ b/icons-original/fill/crown-2-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/palette-fill.svg b/icons-original/fill/palette-fill.svg new file mode 100644 index 00000000..76e9a24f --- /dev/null +++ b/icons-original/fill/palette-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/pause-fill.svg b/icons-original/fill/pause-fill.svg new file mode 100644 index 00000000..1dbe297f --- /dev/null +++ b/icons-original/fill/pause-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/play-fill.svg b/icons-original/fill/play-fill.svg new file mode 100644 index 00000000..7c771706 --- /dev/null +++ b/icons-original/fill/play-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/alarm.svg b/icons-original/outline/alarm.svg new file mode 100644 index 00000000..a514305b --- /dev/null +++ b/icons-original/outline/alarm.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/alert-circle.svg b/icons-original/outline/alert-circle.svg new file mode 100644 index 00000000..c9917f62 --- /dev/null +++ b/icons-original/outline/alert-circle.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/alert-octagon.svg b/icons-original/outline/alert-octagon.svg new file mode 100644 index 00000000..0c4d795a --- /dev/null +++ b/icons-original/outline/alert-octagon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-down.svg b/icons-original/outline/arrow-down.svg new file mode 100644 index 00000000..522c834c --- /dev/null +++ b/icons-original/outline/arrow-down.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-left.svg b/icons-original/outline/arrow-left.svg new file mode 100644 index 00000000..1cc74a94 --- /dev/null +++ b/icons-original/outline/arrow-left.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-narrow-left.svg b/icons-original/outline/arrow-narrow-left.svg new file mode 100644 index 00000000..40eb4c16 --- /dev/null +++ b/icons-original/outline/arrow-narrow-left.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-narrow-right.svg b/icons-original/outline/arrow-narrow-right.svg new file mode 100644 index 00000000..f4683721 --- /dev/null +++ b/icons-original/outline/arrow-narrow-right.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-right.svg b/icons-original/outline/arrow-right.svg new file mode 100644 index 00000000..0d726627 --- /dev/null +++ b/icons-original/outline/arrow-right.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/arrow-up.svg b/icons-original/outline/arrow-up.svg new file mode 100644 index 00000000..748cf953 --- /dev/null +++ b/icons-original/outline/arrow-up.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/atom.svg b/icons-original/outline/atom.svg new file mode 100644 index 00000000..f006e74d --- /dev/null +++ b/icons-original/outline/atom.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/ban.svg b/icons-original/outline/ban.svg new file mode 100644 index 00000000..8cf9d5d9 --- /dev/null +++ b/icons-original/outline/ban.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/bell-minus.svg b/icons-original/outline/bell-minus.svg new file mode 100644 index 00000000..663c984d --- /dev/null +++ b/icons-original/outline/bell-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/bell-off.svg b/icons-original/outline/bell-off.svg new file mode 100644 index 00000000..fe4e8049 --- /dev/null +++ b/icons-original/outline/bell-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/bell-plus.svg b/icons-original/outline/bell-plus.svg new file mode 100644 index 00000000..4add21ff --- /dev/null +++ b/icons-original/outline/bell-plus.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/bell-ringing-2.svg b/icons-original/outline/bell-ringing-2.svg new file mode 100644 index 00000000..409ed7ab --- /dev/null +++ b/icons-original/outline/bell-ringing-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/bell-ringing.svg b/icons-original/outline/bell-ringing.svg new file mode 100644 index 00000000..2e053e28 --- /dev/null +++ b/icons-original/outline/bell-ringing.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/bell-x.svg b/icons-original/outline/bell-x.svg new file mode 100644 index 00000000..50ca203d --- /dev/null +++ b/icons-original/outline/bell-x.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/bell.svg b/icons-original/outline/bell.svg new file mode 100644 index 00000000..c869f75d --- /dev/null +++ b/icons-original/outline/bell.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/brand-facebook.svg b/icons-original/outline/brand-facebook.svg new file mode 100644 index 00000000..0cf330ea --- /dev/null +++ b/icons-original/outline/brand-facebook.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/brand-twitter.svg b/icons-original/outline/brand-twitter.svg new file mode 100644 index 00000000..4312fd27 --- /dev/null +++ b/icons-original/outline/brand-twitter.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/brand-whatsapp.svg b/icons-original/outline/brand-whatsapp.svg new file mode 100644 index 00000000..5ffebc74 --- /dev/null +++ b/icons-original/outline/brand-whatsapp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/bulb-off.svg b/icons-original/outline/bulb-off.svg new file mode 100644 index 00000000..41ff9bbc --- /dev/null +++ b/icons-original/outline/bulb-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/bulb.svg b/icons-original/outline/bulb.svg new file mode 100644 index 00000000..11b8d408 --- /dev/null +++ b/icons-original/outline/bulb.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/check.svg b/icons-original/outline/check.svg new file mode 100644 index 00000000..9bdae5d3 --- /dev/null +++ b/icons-original/outline/check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/chevrons-left.svg b/icons-original/outline/chevrons-left.svg new file mode 100644 index 00000000..66f0f106 --- /dev/null +++ b/icons-original/outline/chevrons-left.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/chevrons-right.svg b/icons-original/outline/chevrons-right.svg new file mode 100644 index 00000000..27afb2fd --- /dev/null +++ b/icons-original/outline/chevrons-right.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/circle-check.svg b/icons-original/outline/circle-check.svg new file mode 100644 index 00000000..24c2592b --- /dev/null +++ b/icons-original/outline/circle-check.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/clock.svg b/icons-original/outline/clock.svg new file mode 100644 index 00000000..4bcd77b4 --- /dev/null +++ b/icons-original/outline/clock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/color-swatch.svg b/icons-original/outline/color-swatch.svg new file mode 100644 index 00000000..a8e9e910 --- /dev/null +++ b/icons-original/outline/color-swatch.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/confetti.svg b/icons-original/outline/confetti.svg new file mode 100644 index 00000000..6114e35d --- /dev/null +++ b/icons-original/outline/confetti.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/copy.svg b/icons-original/outline/copy.svg new file mode 100644 index 00000000..39b2d16a --- /dev/null +++ b/icons-original/outline/copy.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/crown.svg b/icons-original/outline/crown.svg new file mode 100644 index 00000000..90eab743 --- /dev/null +++ b/icons-original/outline/crown.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/currency-dollar.svg b/icons-original/outline/currency-dollar.svg new file mode 100644 index 00000000..aa029b5d --- /dev/null +++ b/icons-original/outline/currency-dollar.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/diamond.svg b/icons-original/outline/diamond.svg new file mode 100644 index 00000000..b63528bb --- /dev/null +++ b/icons-original/outline/diamond.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/discount-2.svg b/icons-original/outline/discount-2.svg new file mode 100644 index 00000000..40cbf8d4 --- /dev/null +++ b/icons-original/outline/discount-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/discount.svg b/icons-original/outline/discount.svg new file mode 100644 index 00000000..66ca3e12 --- /dev/null +++ b/icons-original/outline/discount.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/download.svg b/icons-original/outline/download.svg new file mode 100644 index 00000000..96af54fd --- /dev/null +++ b/icons-original/outline/download.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/external-link.svg b/icons-original/outline/external-link.svg new file mode 100644 index 00000000..eb443075 --- /dev/null +++ b/icons-original/outline/external-link.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/eye-check.svg b/icons-original/outline/eye-check.svg new file mode 100644 index 00000000..4935c8d9 --- /dev/null +++ b/icons-original/outline/eye-check.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/eye-off.svg b/icons-original/outline/eye-off.svg new file mode 100644 index 00000000..18fe43fc --- /dev/null +++ b/icons-original/outline/eye-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/eye.svg b/icons-original/outline/eye.svg new file mode 100644 index 00000000..2bbf79fc --- /dev/null +++ b/icons-original/outline/eye.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/file-download.svg b/icons-original/outline/file-download.svg new file mode 100644 index 00000000..b014f078 --- /dev/null +++ b/icons-original/outline/file-download.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/file-export.svg b/icons-original/outline/file-export.svg new file mode 100644 index 00000000..d6a36c33 --- /dev/null +++ b/icons-original/outline/file-export.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/file-report.svg b/icons-original/outline/file-report.svg new file mode 100644 index 00000000..53b705c5 --- /dev/null +++ b/icons-original/outline/file-report.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/file-search.svg b/icons-original/outline/file-search.svg new file mode 100644 index 00000000..a045185e --- /dev/null +++ b/icons-original/outline/file-search.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/flag.svg b/icons-original/outline/flag.svg new file mode 100644 index 00000000..ba46d271 --- /dev/null +++ b/icons-original/outline/flag.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/folder-download.svg b/icons-original/outline/folder-download.svg new file mode 100644 index 00000000..90d69bdf --- /dev/null +++ b/icons-original/outline/folder-download.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/folder-eye.svg b/icons-original/outline/folder-eye.svg new file mode 100644 index 00000000..64423214 --- /dev/null +++ b/icons-original/outline/folder-eye.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/folder-minus.svg b/icons-original/outline/folder-minus.svg new file mode 100644 index 00000000..a65a9263 --- /dev/null +++ b/icons-original/outline/folder-minus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/folder-off.svg b/icons-original/outline/folder-off.svg new file mode 100644 index 00000000..e9e82c36 --- /dev/null +++ b/icons-original/outline/folder-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/folder-plus.svg b/icons-original/outline/folder-plus.svg new file mode 100644 index 00000000..fca2bbf2 --- /dev/null +++ b/icons-original/outline/folder-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/folder-upload.svg b/icons-original/outline/folder-upload.svg new file mode 100644 index 00000000..ab567cbe --- /dev/null +++ b/icons-original/outline/folder-upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/folder-x.svg b/icons-original/outline/folder-x.svg new file mode 100644 index 00000000..80eaec7b --- /dev/null +++ b/icons-original/outline/folder-x.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/folder.svg b/icons-original/outline/folder.svg new file mode 100644 index 00000000..9eb8c5e8 --- /dev/null +++ b/icons-original/outline/folder.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/folders.svg b/icons-original/outline/folders.svg new file mode 100644 index 00000000..e36059de --- /dev/null +++ b/icons-original/outline/folders.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/grid-dots.svg b/icons-original/outline/grid-dots.svg new file mode 100644 index 00000000..4f583ac8 --- /dev/null +++ b/icons-original/outline/grid-dots.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/home-2.svg b/icons-original/outline/home-2.svg new file mode 100644 index 00000000..44e6a625 --- /dev/null +++ b/icons-original/outline/home-2.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/info-circle.svg b/icons-original/outline/info-circle.svg new file mode 100644 index 00000000..c1031ab6 --- /dev/null +++ b/icons-original/outline/info-circle.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/info-square.svg b/icons-original/outline/info-square.svg new file mode 100644 index 00000000..688bd774 --- /dev/null +++ b/icons-original/outline/info-square.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/loader.svg b/icons-original/outline/loader.svg new file mode 100644 index 00000000..3972d435 --- /dev/null +++ b/icons-original/outline/loader.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/lock-2.svg b/icons-original/outline/lock-2.svg new file mode 100644 index 00000000..71d45229 --- /dev/null +++ b/icons-original/outline/lock-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/lock-off.svg b/icons-original/outline/lock-off.svg new file mode 100644 index 00000000..19bb0b78 --- /dev/null +++ b/icons-original/outline/lock-off.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/lock-open.svg b/icons-original/outline/lock-open.svg new file mode 100644 index 00000000..41ee9c71 --- /dev/null +++ b/icons-original/outline/lock-open.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/lock.svg b/icons-original/outline/lock.svg new file mode 100644 index 00000000..7518bbe7 --- /dev/null +++ b/icons-original/outline/lock.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/mail.svg b/icons-original/outline/mail.svg new file mode 100644 index 00000000..75b0976f --- /dev/null +++ b/icons-original/outline/mail.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/mood-crazy-happy.svg b/icons-original/outline/mood-crazy-happy.svg new file mode 100644 index 00000000..c9e9e25b --- /dev/null +++ b/icons-original/outline/mood-crazy-happy.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-original/outline/mood-empty.svg b/icons-original/outline/mood-empty.svg new file mode 100644 index 00000000..ef06b3bc --- /dev/null +++ b/icons-original/outline/mood-empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/mood-sad.svg b/icons-original/outline/mood-sad.svg new file mode 100644 index 00000000..3d9acc1f --- /dev/null +++ b/icons-original/outline/mood-sad.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/mood-smile.svg b/icons-original/outline/mood-smile.svg new file mode 100644 index 00000000..df5655a2 --- /dev/null +++ b/icons-original/outline/mood-smile.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/mouse-left.svg b/icons-original/outline/mouse-left.svg new file mode 100644 index 00000000..44b7d59a --- /dev/null +++ b/icons-original/outline/mouse-left.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/mouse-right.svg b/icons-original/outline/mouse-right.svg new file mode 100644 index 00000000..bd357940 --- /dev/null +++ b/icons-original/outline/mouse-right.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/palette.svg b/icons-original/outline/palette.svg new file mode 100644 index 00000000..a68d0271 --- /dev/null +++ b/icons-original/outline/palette.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/photo-off.svg b/icons-original/outline/photo-off.svg new file mode 100644 index 00000000..d2028419 --- /dev/null +++ b/icons-original/outline/photo-off.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/photo-stack.svg b/icons-original/outline/photo-stack.svg new file mode 100644 index 00000000..faf7596f --- /dev/null +++ b/icons-original/outline/photo-stack.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/photo.svg b/icons-original/outline/photo.svg new file mode 100644 index 00000000..d0a71eab --- /dev/null +++ b/icons-original/outline/photo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/question-mark.svg b/icons-original/outline/question-mark.svg new file mode 100644 index 00000000..9bd6611d --- /dev/null +++ b/icons-original/outline/question-mark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/shopping-cart-discount.svg b/icons-original/outline/shopping-cart-discount.svg new file mode 100644 index 00000000..14dd6b5a --- /dev/null +++ b/icons-original/outline/shopping-cart-discount.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/shopping-cart.svg b/icons-original/outline/shopping-cart.svg new file mode 100644 index 00000000..b6ef203c --- /dev/null +++ b/icons-original/outline/shopping-cart.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/spray.svg b/icons-original/outline/spray.svg new file mode 100644 index 00000000..ef2b44b9 --- /dev/null +++ b/icons-original/outline/spray.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/stack-2.svg b/icons-original/outline/stack-2.svg new file mode 100644 index 00000000..f48874b3 --- /dev/null +++ b/icons-original/outline/stack-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/stack.svg b/icons-original/outline/stack.svg new file mode 100644 index 00000000..b924db97 --- /dev/null +++ b/icons-original/outline/stack.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/star-off.svg b/icons-original/outline/star-off.svg new file mode 100644 index 00000000..5770f11b --- /dev/null +++ b/icons-original/outline/star-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/star.svg b/icons-original/outline/star.svg new file mode 100644 index 00000000..93eea1c4 --- /dev/null +++ b/icons-original/outline/star.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/thumb-down.svg b/icons-original/outline/thumb-down.svg new file mode 100644 index 00000000..2b25e4b6 --- /dev/null +++ b/icons-original/outline/thumb-down.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/thumb-up.svg b/icons-original/outline/thumb-up.svg new file mode 100644 index 00000000..f687628c --- /dev/null +++ b/icons-original/outline/thumb-up.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/trash-off.svg b/icons-original/outline/trash-off.svg new file mode 100644 index 00000000..6340685d --- /dev/null +++ b/icons-original/outline/trash-off.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/trash.svg b/icons-original/outline/trash.svg new file mode 100644 index 00000000..85270033 --- /dev/null +++ b/icons-original/outline/trash.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/viewfinder.svg b/icons-original/outline/viewfinder.svg new file mode 100644 index 00000000..7953c510 --- /dev/null +++ b/icons-original/outline/viewfinder.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-original/outline/world.svg b/icons-original/outline/world.svg new file mode 100644 index 00000000..e449cbb8 --- /dev/null +++ b/icons-original/outline/world.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/x.svg b/icons-original/outline/x.svg new file mode 100644 index 00000000..1686511b --- /dev/null +++ b/icons-original/outline/x.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/weird/cup.svg b/icons-original/weird/cup.svg new file mode 100644 index 00000000..6dcbf0dc --- /dev/null +++ b/icons-original/weird/cup.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/weird/facebook.svg b/icons-original/weird/facebook.svg new file mode 100644 index 00000000..f148513c --- /dev/null +++ b/icons-original/weird/facebook.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/weird/facebook_color.svg b/icons-original/weird/facebook_color.svg new file mode 100644 index 00000000..b7b3b648 --- /dev/null +++ b/icons-original/weird/facebook_color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/weird/goodies.svg b/icons-original/weird/goodies.svg new file mode 100644 index 00000000..e80fb0fc --- /dev/null +++ b/icons-original/weird/goodies.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/weird/google-color.svg b/icons-original/weird/google-color.svg new file mode 100644 index 00000000..b72a152e --- /dev/null +++ b/icons-original/weird/google-color.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/weird/logo.svg b/icons-original/weird/logo.svg new file mode 100644 index 00000000..ea9b7fdc --- /dev/null +++ b/icons-original/weird/logo.svg @@ -0,0 +1 @@ + diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index b90ea46f..2bb023ce 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -13,8 +13,8 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' return `import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import ${iconNamePascalCase} from '../${iconOutputFolderName}/${iconName}' const meta: Meta = { @@ -22,14 +22,20 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' title: '${storyGroupName}/${iconNamePascalCase}', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -68,7 +74,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index d637ead3..76975614 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -24,7 +24,7 @@ async function optimizeSvg(svg, path) { { name: 'removeAttrs', params: { - attrs: '(stroke.*)', + attrs: '(stroke)', }, }, // custom plugin diff --git a/scripts/removeDir.mjs b/scripts/removeDir.mjs index fe3363b1..f4f4b25e 100644 --- a/scripts/removeDir.mjs +++ b/scripts/removeDir.mjs @@ -1,3 +1,4 @@ +import fs from 'fs' import getArgumentOptions from 'minimist' const cliArguments = getArgumentOptions(process.argv.slice(2)) @@ -9,4 +10,6 @@ if (!targetDir) { process.exit(1) } +fs.rmSync(targetDir, { recursive: true }) + console.log(`DIRECTORY removed - ${targetDir}`) diff --git a/src/Icon.ts b/src/Icon.ts index 49b7523a..437c5b7c 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -24,18 +24,7 @@ interface IconComponentProps extends ASIProps { */ const Icon = forwardRef( ( - { - color = 'currentColor', - size = 24, - inActive = false, - fillColor = 'none', - absoluteStrokeWidth, - className, - children, - originalAttributes, - svgChildren, - ...rest - }, + { color = 'currentColor', size = 24, inActive = false, fillColor = 'none', className, children, originalAttributes, svgChildren, ...rest }, ref, ) => { return createElement( @@ -47,12 +36,9 @@ const Icon = forwardRef( stroke: inActive ? '#777777' : color, fill: fillColor, className, - // strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, - // className: mergeClasses('w-[24px] h-auto shrink-0', className), ...rest, }, svgChildren, - // [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...(Array.isArray(children) ? children : [children])] ) }, ) diff --git a/src/components/IconBackground.tsx b/src/components/IconBackground.tsx new file mode 100644 index 00000000..05ce9a49 --- /dev/null +++ b/src/components/IconBackground.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { cn } from '../utils/cn' + +type IconBackgroundProps = { + children: React.ReactNode + withBorder?: boolean + className?: string +} + +const IconBackground = (props: IconBackgroundProps) => { + const { children, withBorder = false, className } = props + + return ( +
+ {children} +
+ ) +} + +export default IconBackground diff --git a/src/components/IconBorder.tsx b/src/components/IconBorder.tsx new file mode 100644 index 00000000..94c57209 --- /dev/null +++ b/src/components/IconBorder.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { cn } from '../utils/cn' + +type IconBorderProps = { + children: React.ReactNode + className?: string +} + +const IconBorder = (props: IconBorderProps) => { + const { children, className } = props + + return ( +
+ {children} +
+ ) +} + +export default IconBorder diff --git a/src/components/WithBg.tsx b/src/components/WithBg.tsx deleted file mode 100644 index 90f264f4..00000000 --- a/src/components/WithBg.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react' -import DEFAULT_ICON from '../constant' -import defaultBgStyles from '../defaultBgStyles' -import { hexToRgba } from '../utils' - -type WithBgProps = { - children: React.ReactNode - bgColor?: string - bgOpacity?: number - bgSize?: number - bgBorderRadius?: number -} - -const WithBg = (props: WithBgProps) => { - const { - children, - bgColor = DEFAULT_ICON.BG_COLOR, - bgOpacity = DEFAULT_ICON.BG_OPACITY, - bgSize = DEFAULT_ICON.BG_PADDING, - bgBorderRadius = DEFAULT_ICON.BG_BORDER_RADIUS, - } = props - - return ( -
- {children} -
- ) -} - -export default WithBg diff --git a/src/constant.ts b/src/constant.ts index 6b89ca32..abfe1e4e 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -1,14 +1,20 @@ const DEFAULT_ICON_COLOR = '#fff' const DEFAULT_ICON_SIZE = 24 -const DEFAULT_ICON_BG_COLOR = '#555555' + const DEFAULT_ICON_INACTIVE_COLOR = '#777777' const DEFAULT_ICON_FILL_COLOR = '#3B5998' const DEFAULT_ICON_ACCENT_COLOR = '#2279CE' -const DEFAULT_ICON_BG_OPACITY = 0.5 const DEFAULT_ICON_CIRCLE_OPACITY = 0.5 const DEFAULT_ICON_OUTLINE_COLOR = '#E2E2E2' -const DEFAULT_ICON_BG_PADDING = 10 + +const DEFAULT_ICON_BG_SIZE = 40 +const DEFAULT_ICON_BG_COLOR = '#555555' + const DEFAULT_ICON_BORDER_RADIUS = 50 +const DEFAULT_ICON_BORDER_WIDTH = 2 +const DEFAULT_ICON_BORDER_COLOR = '#555555' +const DEFAULT_ICON_BORDER_PADDING = 40 +// const DEFAULT_ICON_BORDER_OPACITY = 0.25 const DEFAULT_ICON = { COLOR: DEFAULT_ICON_COLOR, @@ -17,11 +23,13 @@ const DEFAULT_ICON = { BG_COLOR: DEFAULT_ICON_BG_COLOR, FILL_COLOR: DEFAULT_ICON_FILL_COLOR, ACCENT_COLOR: DEFAULT_ICON_ACCENT_COLOR, - BG_OPACITY: DEFAULT_ICON_BG_OPACITY, CIRCLE_OPACITY: DEFAULT_ICON_CIRCLE_OPACITY, OUTLINE_COLOR: DEFAULT_ICON_OUTLINE_COLOR, - BG_PADDING: DEFAULT_ICON_BG_PADDING, - BG_BORDER_RADIUS: DEFAULT_ICON_BORDER_RADIUS, + BG_SIZE: DEFAULT_ICON_BG_SIZE, + BORDER_RADIUS: DEFAULT_ICON_BORDER_RADIUS, + BORDER_WIDTH: DEFAULT_ICON_BORDER_WIDTH, + BORDER_COLOR: DEFAULT_ICON_BORDER_COLOR, + BORDER_SIZE: DEFAULT_ICON_BORDER_PADDING, } export default DEFAULT_ICON diff --git a/src/createASIcon.ts b/src/createASIcon.ts index 2f75aec6..ff876e52 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -16,7 +16,7 @@ const createASIcon = (iconName: string, originalAttributes: any, svgChildren: an ref, originalAttributes, svgChildren, - className: cn(`unicon unicon-${toKebabCase(iconName)} w-[24px] h-auto shrink-0`, className), + className: cn(`unicon unicon-${toKebabCase(iconName)} w-[24px] h-[24px] shrink-0 stroke-2`, className), ...props, }), ) diff --git a/src/defaultAttributes.ts b/src/defaultAttributes.ts index d15cec4c..5f645b69 100644 --- a/src/defaultAttributes.ts +++ b/src/defaultAttributes.ts @@ -1,11 +1,11 @@ export default { xmlns: 'http://www.w3.org/2000/svg', + // stroke: 'currentColor', // width: 24, // height: 24, // viewBox: '0 0 24 24', // fill: 'none', // strokeWidth: 2, - stroke: 'currentColor', // strokeLinecap: 'round', // strokeLinejoin: 'round', } diff --git a/src/defaultBgStyles.ts b/src/defaultBgStyles.ts index 1006fe19..0c3a1421 100644 --- a/src/defaultBgStyles.ts +++ b/src/defaultBgStyles.ts @@ -2,4 +2,5 @@ export default { display: 'inline-flex', justifyContent: 'center', alignItems: 'center', + flexShrink: 0, } diff --git a/src/deleted-icons/TwitterBgIcon.tsx b/src/deleted-icons/TwitterBgIcon.tsx deleted file mode 100644 index 09c18f37..00000000 --- a/src/deleted-icons/TwitterBgIcon.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import React from 'react' -import { IconProps } from '../../types' -import BaseIcon from '../components/BaseIcon' -import DEFAULT_ICON from '../constant' - -type IconVariant = 'primary' -type Props = Omit & { - variant?: IconVariant - bgColor?: string - inActive?: boolean -} - -export const TwitterBgIcon = React.forwardRef((props, forwardedRef) => { - //props - const { - variant = 'primary', - className, - - bgColor = '#1DA1F2', - color = DEFAULT_ICON.COLOR, - size, - inActive = false, - ...restProps - } = props - - const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - - // variants - const primary = ( - - - - - ) - return -}) - -export default React.memo(TwitterBgIcon) diff --git a/src/deleted-icons/TwitterIcon.tsx b/src/deleted-icons/TwitterIcon.tsx deleted file mode 100644 index e1cfb6ca..00000000 --- a/src/deleted-icons/TwitterIcon.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import React from 'react' -import { IconProps } from '../../types' -import BaseIcon from '../components/BaseIcon' -import DEFAULT_ICON from '../constant' - -type IconVariant = 'primary' -type Props = Omit & { - variant?: IconVariant - inActive?: boolean -} - -export const TwitterIcon = React.forwardRef((props, forwardedRef) => { - //props - const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props - - const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - - // variants - const primary = ( - - - - ) - return -}) - -export default React.memo(TwitterIcon) diff --git a/src/deleted-icons/TwitterOutlineIcon.tsx b/src/deleted-icons/TwitterOutlineIcon.tsx deleted file mode 100644 index 8bc798c0..00000000 --- a/src/deleted-icons/TwitterOutlineIcon.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import React from 'react' -import { IconProps } from '../../types' -import BaseIcon from '../components/BaseIcon' -import DEFAULT_ICON from '../constant' - -type IconVariant = 'primary' -type Props = Omit & { - variant?: IconVariant - inActive?: boolean -} - -export const TwitterOutlineIcon = React.forwardRef((props, forwardedRef) => { - //props - const { variant = 'primary', className, color = DEFAULT_ICON.COLOR, size, inActive = false, ...restProps } = props - - const modifiedColor = inActive ? DEFAULT_ICON.INACTIVE_COLOR : color - - // variants - const primary = ( - - - - - - - - - - - ) - return -}) - -export default React.memo(TwitterOutlineIcon) diff --git a/src/icons-neo/adjustments-horizontal.tsx b/src/icons-neo/adjustments-horizontal.tsx index cf96d918..973d302b 100644 --- a/src/icons-neo/adjustments-horizontal.tsx +++ b/src/icons-neo/adjustments-horizontal.tsx @@ -11,7 +11,13 @@ const AdjustmentsHorizontal = createASIcon( viewBox: "0 0 24 24", }, - + diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx new file mode 100644 index 00000000..f61b79a2 --- /dev/null +++ b/src/icons-neo/alert-circle.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertCircle = createASIcon( + "AlertCircle", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default AlertCircle; diff --git a/src/icons-neo/alert-triangle.tsx b/src/icons-neo/alert-triangle.tsx index 7e8e4026..9f2aed65 100644 --- a/src/icons-neo/alert-triangle.tsx +++ b/src/icons-neo/alert-triangle.tsx @@ -11,7 +11,13 @@ const AlertTriangle = createASIcon( viewBox: "0 0 24 24", }, - + diff --git a/src/icons-neo/arrow-down.tsx b/src/icons-neo/arrow-down.tsx new file mode 100644 index 00000000..4e809708 --- /dev/null +++ b/src/icons-neo/arrow-down.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowDown = createASIcon( + "ArrowDown", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowDown; diff --git a/src/icons-neo/arrow-left.tsx b/src/icons-neo/arrow-left.tsx new file mode 100644 index 00000000..38f3e489 --- /dev/null +++ b/src/icons-neo/arrow-left.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowLeft = createASIcon( + "ArrowLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowLeft; diff --git a/src/icons-neo/arrow-narrow-left.tsx b/src/icons-neo/arrow-narrow-left.tsx new file mode 100644 index 00000000..81ca8121 --- /dev/null +++ b/src/icons-neo/arrow-narrow-left.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowNarrowLeft = createASIcon( + "ArrowNarrowLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowNarrowLeft; diff --git a/src/icons-neo/arrow-narrow-right.tsx b/src/icons-neo/arrow-narrow-right.tsx new file mode 100644 index 00000000..48635f38 --- /dev/null +++ b/src/icons-neo/arrow-narrow-right.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowNarrowRight = createASIcon( + "ArrowNarrowRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowNarrowRight; diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx new file mode 100644 index 00000000..52a4ef87 --- /dev/null +++ b/src/icons-neo/arrow-right.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowRight = createASIcon( + "ArrowRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowRight; diff --git a/src/icons-neo/arrow-up.tsx b/src/icons-neo/arrow-up.tsx new file mode 100644 index 00000000..2c8a07dc --- /dev/null +++ b/src/icons-neo/arrow-up.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowUp = createASIcon( + "ArrowUp", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ArrowUp; diff --git a/src/icons-neo/bulb-off.tsx b/src/icons-neo/bulb-off.tsx new file mode 100644 index 00000000..dd6dbeac --- /dev/null +++ b/src/icons-neo/bulb-off.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BulbOff = createASIcon( + "BulbOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default BulbOff; diff --git a/src/icons-neo/bulb.tsx b/src/icons-neo/bulb.tsx new file mode 100644 index 00000000..e6ef12bc --- /dev/null +++ b/src/icons-neo/bulb.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Bulb = createASIcon( + "Bulb", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Bulb; diff --git a/src/icons-neo/chevron-down.tsx b/src/icons-neo/chevron-down.tsx index 82cc60c6..c5464adf 100644 --- a/src/icons-neo/chevron-down.tsx +++ b/src/icons-neo/chevron-down.tsx @@ -12,7 +12,12 @@ const ChevronDown = createASIcon( }, - + diff --git a/src/icons-neo/chevron-left.tsx b/src/icons-neo/chevron-left.tsx index 69c4f883..6598a392 100644 --- a/src/icons-neo/chevron-left.tsx +++ b/src/icons-neo/chevron-left.tsx @@ -12,7 +12,12 @@ const ChevronLeft = createASIcon( }, - + diff --git a/src/icons-neo/chevron-right.tsx b/src/icons-neo/chevron-right.tsx index ef2cecc4..aab87a2e 100644 --- a/src/icons-neo/chevron-right.tsx +++ b/src/icons-neo/chevron-right.tsx @@ -12,7 +12,12 @@ const ChevronRight = createASIcon( }, - + diff --git a/src/icons-neo/chevron-up.tsx b/src/icons-neo/chevron-up.tsx index 89a88752..b0ed2a02 100644 --- a/src/icons-neo/chevron-up.tsx +++ b/src/icons-neo/chevron-up.tsx @@ -12,7 +12,12 @@ const ChevronUp = createASIcon( }, - + diff --git a/src/icons-neo/circle-check.tsx b/src/icons-neo/circle-check.tsx new file mode 100644 index 00000000..6113acff --- /dev/null +++ b/src/icons-neo/circle-check.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCheck = createASIcon( + "CircleCheck", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default CircleCheck; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index 888c7b0b..cc5e1073 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -1,7 +1,20 @@ export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; +export { default as AlertCircle } from './alert-circle'; export { default as AlertTriangle } from './alert-triangle'; +export { default as ArrowDown } from './arrow-down'; +export { default as ArrowLeft } from './arrow-left'; +export { default as ArrowNarrowLeft } from './arrow-narrow-left'; +export { default as ArrowNarrowRight } from './arrow-narrow-right'; +export { default as ArrowRight } from './arrow-right'; +export { default as ArrowUp } from './arrow-up'; +export { default as BulbOff } from './bulb-off'; +export { default as Bulb } from './bulb'; export { default as ChevronDown } from './chevron-down'; export { default as ChevronLeft } from './chevron-left'; export { default as ChevronRight } from './chevron-right'; export { default as ChevronUp } from './chevron-up'; +export { default as CircleCheck } from './circle-check'; +export { default as ShoppingCartDiscount } from './shopping-cart-discount'; +export { default as ShoppingCart } from './shopping-cart'; +export { default as X } from './x'; diff --git a/src/icons-neo/shopping-cart-discount.tsx b/src/icons-neo/shopping-cart-discount.tsx new file mode 100644 index 00000000..42749621 --- /dev/null +++ b/src/icons-neo/shopping-cart-discount.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ShoppingCartDiscount = createASIcon( + "ShoppingCartDiscount", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + + , +); + +export default ShoppingCartDiscount; diff --git a/src/icons-neo/shopping-cart.tsx b/src/icons-neo/shopping-cart.tsx new file mode 100644 index 00000000..ffb31671 --- /dev/null +++ b/src/icons-neo/shopping-cart.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ShoppingCart = createASIcon( + "ShoppingCart", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default ShoppingCart; diff --git a/src/icons-neo/x.tsx b/src/icons-neo/x.tsx new file mode 100644 index 00000000..2e3ba2ad --- /dev/null +++ b/src/icons-neo/x.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const X = createASIcon( + "X", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default X; diff --git a/src/stories-neo/AdjustmentsHorizontal.stories.tsx b/src/stories-neo/AdjustmentsHorizontal.stories.tsx index 9cfc6496..f22abd0c 100644 --- a/src/stories-neo/AdjustmentsHorizontal.stories.tsx +++ b/src/stories-neo/AdjustmentsHorizontal.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import AdjustmentsHorizontal from '../icons-neo/adjustments-horizontal' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/AdjustmentsHorizontal', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/AlertCircle.stories.tsx b/src/stories-neo/AlertCircle.stories.tsx new file mode 100644 index 00000000..45151c07 --- /dev/null +++ b/src/stories-neo/AlertCircle.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertCircle from '../icons-neo/alert-circle' + + const meta: Meta = { + component: AlertCircle, + title: 'omega/AlertCircle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/AlertTriangle.stories.tsx b/src/stories-neo/AlertTriangle.stories.tsx index 3342a822..5f979c0d 100644 --- a/src/stories-neo/AlertTriangle.stories.tsx +++ b/src/stories-neo/AlertTriangle.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import AlertTriangle from '../icons-neo/alert-triangle' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/AlertTriangle', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/ArrowDown.stories.tsx b/src/stories-neo/ArrowDown.stories.tsx new file mode 100644 index 00000000..9a1126d2 --- /dev/null +++ b/src/stories-neo/ArrowDown.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowDown from '../icons-neo/arrow-down' + + const meta: Meta = { + component: ArrowDown, + title: 'omega/ArrowDown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowLeft.stories.tsx b/src/stories-neo/ArrowLeft.stories.tsx new file mode 100644 index 00000000..f451af1a --- /dev/null +++ b/src/stories-neo/ArrowLeft.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowLeft from '../icons-neo/arrow-left' + + const meta: Meta = { + component: ArrowLeft, + title: 'omega/ArrowLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowNarrowLeft.stories.tsx b/src/stories-neo/ArrowNarrowLeft.stories.tsx new file mode 100644 index 00000000..7d99cc98 --- /dev/null +++ b/src/stories-neo/ArrowNarrowLeft.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowLeft from '../icons-neo/arrow-narrow-left' + + const meta: Meta = { + component: ArrowNarrowLeft, + title: 'omega/ArrowNarrowLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowNarrowRight.stories.tsx b/src/stories-neo/ArrowNarrowRight.stories.tsx new file mode 100644 index 00000000..77fb486a --- /dev/null +++ b/src/stories-neo/ArrowNarrowRight.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowRight from '../icons-neo/arrow-narrow-right' + + const meta: Meta = { + component: ArrowNarrowRight, + title: 'omega/ArrowNarrowRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowRight.stories.tsx b/src/stories-neo/ArrowRight.stories.tsx new file mode 100644 index 00000000..f06a1773 --- /dev/null +++ b/src/stories-neo/ArrowRight.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowRight from '../icons-neo/arrow-right' + + const meta: Meta = { + component: ArrowRight, + title: 'omega/ArrowRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowUp.stories.tsx b/src/stories-neo/ArrowUp.stories.tsx new file mode 100644 index 00000000..c099f9a6 --- /dev/null +++ b/src/stories-neo/ArrowUp.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowUp from '../icons-neo/arrow-up' + + const meta: Meta = { + component: ArrowUp, + title: 'omega/ArrowUp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Bulb.stories.tsx b/src/stories-neo/Bulb.stories.tsx new file mode 100644 index 00000000..b16ce707 --- /dev/null +++ b/src/stories-neo/Bulb.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Bulb from '../icons-neo/bulb' + + const meta: Meta = { + component: Bulb, + title: 'omega/Bulb', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BulbOff.stories.tsx b/src/stories-neo/BulbOff.stories.tsx new file mode 100644 index 00000000..99d433aa --- /dev/null +++ b/src/stories-neo/BulbOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BulbOff from '../icons-neo/bulb-off' + + const meta: Meta = { + component: BulbOff, + title: 'omega/BulbOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ChevronDown.stories.tsx b/src/stories-neo/ChevronDown.stories.tsx index 5f733b42..afc268b7 100644 --- a/src/stories-neo/ChevronDown.stories.tsx +++ b/src/stories-neo/ChevronDown.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import ChevronDown from '../icons-neo/chevron-down' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/ChevronDown', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/ChevronLeft.stories.tsx b/src/stories-neo/ChevronLeft.stories.tsx index 3003dafe..b8f91c45 100644 --- a/src/stories-neo/ChevronLeft.stories.tsx +++ b/src/stories-neo/ChevronLeft.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import ChevronLeft from '../icons-neo/chevron-left' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/ChevronLeft', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/ChevronRight.stories.tsx b/src/stories-neo/ChevronRight.stories.tsx index 601e99d8..091db388 100644 --- a/src/stories-neo/ChevronRight.stories.tsx +++ b/src/stories-neo/ChevronRight.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import ChevronRight from '../icons-neo/chevron-right' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/ChevronRight', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/ChevronUp.stories.tsx b/src/stories-neo/ChevronUp.stories.tsx index f9f68b60..9099c549 100644 --- a/src/stories-neo/ChevronUp.stories.tsx +++ b/src/stories-neo/ChevronUp.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' - - import WithBg from '../components/WithBg' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' import ChevronUp from '../icons-neo/chevron-up' const meta: Meta = { @@ -9,14 +9,20 @@ import type { Meta, StoryObj } from '@storybook/react' title: 'omega/ChevronUp', decorators: [ (Story) => ( -
+
- + + + + + + + - - + + - +
), ], @@ -55,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500 w-[50px] h-[50px]', + className: 'text-red-500', }, } diff --git a/src/stories-neo/CircleCheck.stories.tsx b/src/stories-neo/CircleCheck.stories.tsx new file mode 100644 index 00000000..52c52e93 --- /dev/null +++ b/src/stories-neo/CircleCheck.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheck from '../icons-neo/circle-check' + + const meta: Meta = { + component: CircleCheck, + title: 'omega/CircleCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ShoppingCart.stories.tsx b/src/stories-neo/ShoppingCart.stories.tsx new file mode 100644 index 00000000..98b1036d --- /dev/null +++ b/src/stories-neo/ShoppingCart.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShoppingCart from '../icons-neo/shopping-cart' + + const meta: Meta = { + component: ShoppingCart, + title: 'omega/ShoppingCart', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ShoppingCartDiscount.stories.tsx b/src/stories-neo/ShoppingCartDiscount.stories.tsx new file mode 100644 index 00000000..4e886815 --- /dev/null +++ b/src/stories-neo/ShoppingCartDiscount.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShoppingCartDiscount from '../icons-neo/shopping-cart-discount' + + const meta: Meta = { + component: ShoppingCartDiscount, + title: 'omega/ShoppingCartDiscount', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/X.stories.tsx b/src/stories-neo/X.stories.tsx new file mode 100644 index 00000000..feb2ca0d --- /dev/null +++ b/src/stories-neo/X.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import X from '../icons-neo/x' + + const meta: Meta = { + component: X, + title: 'omega/X', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-500', + }, + } + + \ No newline at end of file diff --git a/src/stories/TwitterBgIcon.stories.tsx b/src/stories/TwitterBgIcon.stories.tsx deleted file mode 100644 index 61d00a55..00000000 --- a/src/stories/TwitterBgIcon.stories.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { TwitterBgIcon } from '../deleted-icons/TwitterBgIcon' - -const meta: Meta = { - component: TwitterBgIcon, - title: 'deleted/TwitterBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: '#1DA1F2', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 7e3ceecc..442173dc 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -558,6 +558,10 @@ video { position: absolute; } +.box-border { + box-sizing: border-box; +} + .flex { display: flex; } @@ -578,6 +582,18 @@ video { height: 50px; } +.h-\[24px\] { + height: 24px; +} + +.h-20 { + height: 5rem; +} + +.h-10 { + height: 2.5rem; +} + .w-10 { width: 2.5rem; } @@ -602,6 +618,18 @@ video { width: 50px; } +.w-40 { + width: 10rem; +} + +.w-20 { + width: 5rem; +} + +.w-\[100ox\] { + width: 100ox; +} + .shrink-0 { flex-shrink: 0; } @@ -614,10 +642,70 @@ video { cursor: pointer; } +.items-center { + align-items: center; +} + +.justify-center { + justify-content: center; +} + +.rounded-full { + border-radius: 9999px; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.border { + border-width: 1px; +} + +.border-2 { + border-width: 2px; +} + +.border-\[\#555555\] { + --tw-border-opacity: 1; + border-color: rgb(85 85 85 / var(--tw-border-opacity)); +} + +.border-green-500 { + --tw-border-opacity: 1; + border-color: rgb(34 197 94 / var(--tw-border-opacity)); +} + +.border-\[\#55555\] { + border-color: #55555; +} + +.bg-\[\#555555\] { + --tw-bg-opacity: 1; + background-color: rgb(85 85 85 / var(--tw-bg-opacity)); +} + +.bg-transparent { + background-color: transparent; +} + +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgb(248 113 113 / var(--tw-bg-opacity)); +} + .stroke-\[\#fff\] { stroke: #fff; } +.stroke-2 { + stroke-width: 2; +} + +.p-2 { + padding: 0.5rem; +} + .text-\[\#777777\] { --tw-text-opacity: 1; color: rgb(119 119 119 / var(--tw-text-opacity)); diff --git a/svg-children/adjustments-horizontal.svg b/svg-children/adjustments-horizontal.svg deleted file mode 100644 index 9e49845f..00000000 --- a/svg-children/adjustments-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert-triangle.svg b/svg-children/alert-triangle.svg deleted file mode 100644 index 40d02cae..00000000 --- a/svg-children/alert-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/chevron-down.svg b/svg-children/chevron-down.svg deleted file mode 100644 index 79a37d2b..00000000 --- a/svg-children/chevron-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/chevron-left.svg b/svg-children/chevron-left.svg deleted file mode 100644 index a1063ff4..00000000 --- a/svg-children/chevron-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/chevron-right.svg b/svg-children/chevron-right.svg deleted file mode 100644 index 2a787679..00000000 --- a/svg-children/chevron-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/chevron-up.svg b/svg-children/chevron-up.svg deleted file mode 100644 index 48386490..00000000 --- a/svg-children/chevron-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 200c031ab3efa41e9df1c011e4105e0908fe7bf8 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 18:03:33 +0530 Subject: [PATCH 12/34] update: make stroke width controllable --- icons-optimized/adjustments-horizontal.svg | 7 +- icons-optimized/alarm.svg | 19 +++++ icons-optimized/alert-circle.svg | 7 +- icons-optimized/alert-octagon.svg | 18 +++++ icons-optimized/alert-triangle.svg | 7 +- icons-optimized/arrow-down.svg | 7 +- icons-optimized/arrow-left.svg | 7 +- icons-optimized/arrow-narrow-left.svg | 7 +- icons-optimized/arrow-narrow-right.svg | 7 +- icons-optimized/arrow-right.svg | 7 +- icons-optimized/arrow-up.svg | 7 +- icons-optimized/atom.svg | 18 +++++ icons-optimized/ban.svg | 17 ++++ icons-optimized/bell-minus.svg | 18 +++++ icons-optimized/bell-off.svg | 18 +++++ icons-optimized/bell-plus.svg | 19 +++++ icons-optimized/bell-ringing-2.svg | 17 ++++ icons-optimized/bell-ringing.svg | 19 +++++ icons-optimized/bell-x.svg | 18 +++++ icons-optimized/bell.svg | 17 ++++ icons-optimized/brand-facebook.svg | 20 +++++ icons-optimized/brand-twitter.svg | 20 +++++ icons-optimized/brand-whatsapp.svg | 17 ++++ icons-optimized/bulb-off.svg | 7 +- icons-optimized/bulb.svg | 7 +- icons-optimized/check.svg | 16 ++++ icons-optimized/chevron-down.svg | 7 +- icons-optimized/chevron-left.svg | 7 +- icons-optimized/chevron-right.svg | 7 +- icons-optimized/chevron-up.svg | 7 +- icons-optimized/chevrons-left.svg | 17 ++++ icons-optimized/chevrons-right.svg | 17 ++++ icons-optimized/circle-check.svg | 7 +- icons-optimized/clock.svg | 17 ++++ icons-optimized/color-swatch.svg | 19 +++++ icons-optimized/confetti.svg | 25 ++++++ icons-optimized/copy.svg | 17 ++++ icons-optimized/crown.svg | 20 +++++ icons-optimized/currency-dollar.svg | 17 ++++ icons-optimized/diamond.svg | 17 ++++ icons-optimized/discount-2.svg | 19 +++++ icons-optimized/discount.svg | 19 +++++ icons-optimized/download.svg | 18 +++++ icons-optimized/external-link.svg | 18 +++++ icons-optimized/eye-check.svg | 18 +++++ icons-optimized/eye-off.svg | 18 +++++ icons-optimized/eye.svg | 17 ++++ icons-optimized/file-download.svg | 19 +++++ icons-optimized/file-export.svg | 17 ++++ icons-optimized/file-report.svg | 19 +++++ icons-optimized/file-search.svg | 19 +++++ icons-optimized/flag.svg | 20 +++++ icons-optimized/folder-download.svg | 18 +++++ icons-optimized/folder-eye.svg | 22 ++++++ icons-optimized/folder-minus.svg | 17 ++++ icons-optimized/folder-off.svg | 17 ++++ icons-optimized/folder-plus.svg | 18 +++++ icons-optimized/folder-upload.svg | 18 +++++ icons-optimized/folder-x.svg | 17 ++++ icons-optimized/folder.svg | 20 +++++ icons-optimized/folders.svg | 17 ++++ icons-optimized/grid-dots.svg | 24 ++++++ icons-optimized/home-2.svg | 33 ++++++++ icons-optimized/info-circle.svg | 18 +++++ icons-optimized/info-square.svg | 18 +++++ icons-optimized/loader.svg | 23 ++++++ icons-optimized/lock-2.svg | 17 ++++ icons-optimized/lock-off.svg | 19 +++++ icons-optimized/lock-open.svg | 18 +++++ icons-optimized/lock.svg | 18 +++++ icons-optimized/mail.svg | 17 ++++ icons-optimized/mood-crazy-happy.svg | 21 +++++ icons-optimized/mood-empty.svg | 19 +++++ icons-optimized/mood-sad.svg | 19 +++++ icons-optimized/mood-smile.svg | 19 +++++ icons-optimized/mouse-left.svg | 17 ++++ icons-optimized/mouse-right.svg | 17 ++++ icons-optimized/palette.svg | 19 +++++ icons-optimized/photo-off.svg | 20 +++++ icons-optimized/photo-stack.svg | 20 +++++ icons-optimized/photo.svg | 19 +++++ icons-optimized/question-mark.svg | 17 ++++ icons-optimized/redeem.svg | 24 ++++++ icons-optimized/rotate-90.svg | 17 ++++ icons-optimized/shopping-cart-discount.svg | 7 +- icons-optimized/shopping-cart.svg | 7 +- icons-optimized/spray.svg | 14 ++++ icons-optimized/stack-2.svg | 17 ++++ icons-optimized/stack.svg | 18 +++++ icons-optimized/star-off.svg | 17 ++++ icons-optimized/star.svg | 20 +++++ icons-optimized/thumb-down.svg | 20 +++++ icons-optimized/thumb-up.svg | 20 +++++ icons-optimized/trash-off.svg | 22 ++++++ icons-optimized/trash.svg | 20 +++++ icons-optimized/viewfinder.svg | 21 +++++ icons-optimized/world.svg | 20 +++++ icons-optimized/x.svg | 7 +- icons-original/fill-outline/recull.svg | 9 +++ icons-original/fill/play-fill.svg | 3 +- icons-original/outline/mood-sad.svg | 8 +- icons-original/outline/redeem.svg | 6 ++ icons-original/outline/rotate-90.svg | 11 +++ icons-original/weird/aftershoot-credit.svg | 16 ++++ scripts/exportStoryTemplate.mjs | 2 +- scripts/processSvg.mjs | 2 +- src/icons-neo/adjustments-horizontal.tsx | 3 +- src/icons-neo/alarm.tsx | 33 ++++++++ src/icons-neo/alert-circle.tsx | 3 +- src/icons-neo/alert-octagon.tsx | 32 ++++++++ src/icons-neo/alert-triangle.tsx | 3 +- src/icons-neo/arrow-down.tsx | 3 +- src/icons-neo/arrow-left.tsx | 3 +- src/icons-neo/arrow-narrow-left.tsx | 3 +- src/icons-neo/arrow-narrow-right.tsx | 3 +- src/icons-neo/arrow-right.tsx | 3 +- src/icons-neo/arrow-up.tsx | 3 +- src/icons-neo/atom.tsx | 32 ++++++++ src/icons-neo/ban.tsx | 31 ++++++++ src/icons-neo/bell-minus.tsx | 32 ++++++++ src/icons-neo/bell-off.tsx | 32 ++++++++ src/icons-neo/bell-plus.tsx | 33 ++++++++ src/icons-neo/bell-ringing-2.tsx | 31 ++++++++ src/icons-neo/bell-ringing.tsx | 33 ++++++++ src/icons-neo/bell-x.tsx | 32 ++++++++ src/icons-neo/bell.tsx | 31 ++++++++ src/icons-neo/brand-facebook.tsx | 29 +++++++ src/icons-neo/brand-twitter.tsx | 29 +++++++ src/icons-neo/brand-whatsapp.tsx | 31 ++++++++ src/icons-neo/bulb-off.tsx | 3 +- src/icons-neo/bulb.tsx | 3 +- src/icons-neo/check.tsx | 25 ++++++ src/icons-neo/chevron-down.tsx | 7 +- src/icons-neo/chevron-left.tsx | 7 +- src/icons-neo/chevron-right.tsx | 7 +- src/icons-neo/chevron-up.tsx | 7 +- src/icons-neo/chevrons-left.tsx | 31 ++++++++ src/icons-neo/chevrons-right.tsx | 31 ++++++++ src/icons-neo/circle-check.tsx | 3 +- src/icons-neo/clock.tsx | 31 ++++++++ src/icons-neo/color-swatch.tsx | 33 ++++++++ src/icons-neo/confetti.tsx | 39 +++++++++ src/icons-neo/copy.tsx | 31 ++++++++ src/icons-neo/crown.tsx | 29 +++++++ src/icons-neo/currency-dollar.tsx | 31 ++++++++ src/icons-neo/diamond.tsx | 31 ++++++++ src/icons-neo/discount-2.tsx | 33 ++++++++ src/icons-neo/discount.tsx | 33 ++++++++ src/icons-neo/download.tsx | 32 ++++++++ src/icons-neo/external-link.tsx | 32 ++++++++ src/icons-neo/eye-check.tsx | 32 ++++++++ src/icons-neo/eye-off.tsx | 32 ++++++++ src/icons-neo/eye.tsx | 31 ++++++++ src/icons-neo/file-download.tsx | 33 ++++++++ src/icons-neo/file-export.tsx | 31 ++++++++ src/icons-neo/file-report.tsx | 33 ++++++++ src/icons-neo/file-search.tsx | 33 ++++++++ src/icons-neo/flag.tsx | 29 +++++++ src/icons-neo/folder-download.tsx | 32 ++++++++ src/icons-neo/folder-eye.tsx | 31 ++++++++ src/icons-neo/folder-minus.tsx | 31 ++++++++ src/icons-neo/folder-off.tsx | 31 ++++++++ src/icons-neo/folder-plus.tsx | 32 ++++++++ src/icons-neo/folder-upload.tsx | 32 ++++++++ src/icons-neo/folder-x.tsx | 31 ++++++++ src/icons-neo/folder.tsx | 29 +++++++ src/icons-neo/folders.tsx | 31 ++++++++ src/icons-neo/grid-dots.tsx | 38 +++++++++ src/icons-neo/home-2.tsx | 42 ++++++++++ src/icons-neo/index.ts | 79 +++++++++++++++++++ src/icons-neo/info-circle.tsx | 32 ++++++++ src/icons-neo/info-square.tsx | 32 ++++++++ src/icons-neo/loader.tsx | 37 +++++++++ src/icons-neo/lock-2.tsx | 31 ++++++++ src/icons-neo/lock-off.tsx | 33 ++++++++ src/icons-neo/lock-open.tsx | 32 ++++++++ src/icons-neo/lock.tsx | 32 ++++++++ src/icons-neo/mail.tsx | 31 ++++++++ src/icons-neo/mood-crazy-happy.tsx | 35 ++++++++ src/icons-neo/mood-empty.tsx | 33 ++++++++ src/icons-neo/mood-sad.tsx | 33 ++++++++ src/icons-neo/mood-smile.tsx | 33 ++++++++ src/icons-neo/mouse-left.tsx | 28 +++++++ src/icons-neo/mouse-right.tsx | 28 +++++++ src/icons-neo/palette.tsx | 33 ++++++++ src/icons-neo/photo-off.tsx | 34 ++++++++ src/icons-neo/photo-stack.tsx | 34 ++++++++ src/icons-neo/photo.tsx | 33 ++++++++ src/icons-neo/question-mark.tsx | 31 ++++++++ src/icons-neo/redeem.tsx | 41 ++++++++++ src/icons-neo/rotate-90.tsx | 31 ++++++++ src/icons-neo/shopping-cart-discount.tsx | 3 +- src/icons-neo/shopping-cart.tsx | 3 +- src/icons-neo/spray.tsx | 29 +++++++ src/icons-neo/stack-2.tsx | 31 ++++++++ src/icons-neo/stack.tsx | 32 ++++++++ src/icons-neo/star-off.tsx | 31 ++++++++ src/icons-neo/star.tsx | 29 +++++++ src/icons-neo/thumb-down.tsx | 29 +++++++ src/icons-neo/thumb-up.tsx | 29 +++++++ src/icons-neo/trash-off.tsx | 36 +++++++++ src/icons-neo/trash.tsx | 34 ++++++++ src/icons-neo/viewfinder.tsx | 35 ++++++++ src/icons-neo/world.tsx | 34 ++++++++ src/icons-neo/x.tsx | 3 +- .../AdjustmentsHorizontal.stories.tsx | 2 +- src/stories-neo/Alarm.stories.tsx | 68 ++++++++++++++++ src/stories-neo/AlertCircle.stories.tsx | 2 +- src/stories-neo/AlertOctagon.stories.tsx | 68 ++++++++++++++++ src/stories-neo/AlertTriangle.stories.tsx | 2 +- src/stories-neo/ArrowDown.stories.tsx | 2 +- src/stories-neo/ArrowLeft.stories.tsx | 2 +- src/stories-neo/ArrowNarrowLeft.stories.tsx | 2 +- src/stories-neo/ArrowNarrowRight.stories.tsx | 2 +- src/stories-neo/ArrowRight.stories.tsx | 2 +- src/stories-neo/ArrowUp.stories.tsx | 2 +- src/stories-neo/Atom.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Ban.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Bell.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellMinus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellPlus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellRinging.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellRinging2.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BellX.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BrandFacebook.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BrandTwitter.stories.tsx | 68 ++++++++++++++++ src/stories-neo/BrandWhatsapp.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Bulb.stories.tsx | 2 +- src/stories-neo/BulbOff.stories.tsx | 2 +- src/stories-neo/Check.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ChevronDown.stories.tsx | 2 +- src/stories-neo/ChevronLeft.stories.tsx | 2 +- src/stories-neo/ChevronRight.stories.tsx | 2 +- src/stories-neo/ChevronUp.stories.tsx | 2 +- src/stories-neo/ChevronsLeft.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ChevronsRight.stories.tsx | 68 ++++++++++++++++ src/stories-neo/CircleCheck.stories.tsx | 2 +- src/stories-neo/Clock.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ColorSwatch.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Confetti.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Copy.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Crown.stories.tsx | 68 ++++++++++++++++ src/stories-neo/CurrencyDollar.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Diamond.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Discount.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Discount2.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Download.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ExternalLink.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Eye.stories.tsx | 68 ++++++++++++++++ src/stories-neo/EyeCheck.stories.tsx | 68 ++++++++++++++++ src/stories-neo/EyeOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FileDownload.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FileExport.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FileReport.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FileSearch.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Flag.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Folder.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderDownload.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderEye.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderMinus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderPlus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderUpload.stories.tsx | 68 ++++++++++++++++ src/stories-neo/FolderX.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Folders.stories.tsx | 68 ++++++++++++++++ src/stories-neo/GridDots.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Home2.stories.tsx | 68 ++++++++++++++++ src/stories-neo/InfoCircle.stories.tsx | 68 ++++++++++++++++ src/stories-neo/InfoSquare.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Loader.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Lock.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Lock2.stories.tsx | 68 ++++++++++++++++ src/stories-neo/LockOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/LockOpen.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Mail.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MoodCrazyHappy.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MoodEmpty.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MoodSad.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MoodSmile.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MouseLeft.stories.tsx | 68 ++++++++++++++++ src/stories-neo/MouseRight.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Palette.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Photo.stories.tsx | 68 ++++++++++++++++ src/stories-neo/PhotoOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/PhotoStack.stories.tsx | 68 ++++++++++++++++ src/stories-neo/QuestionMark.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Redeem.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Rotate90.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ShoppingCart.stories.tsx | 2 +- .../ShoppingCartDiscount.stories.tsx | 2 +- src/stories-neo/Spray.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Stack.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Stack2.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Star.stories.tsx | 68 ++++++++++++++++ src/stories-neo/StarOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ThumbDown.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ThumbUp.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Trash.stories.tsx | 68 ++++++++++++++++ src/stories-neo/TrashOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Viewfinder.stories.tsx | 68 ++++++++++++++++ src/stories-neo/World.stories.tsx | 68 ++++++++++++++++ src/stories-neo/X.stories.tsx | 2 +- src/styles/tailwind.css | 19 +++++ 304 files changed, 9594 insertions(+), 194 deletions(-) create mode 100644 icons-optimized/alarm.svg create mode 100644 icons-optimized/alert-octagon.svg create mode 100644 icons-optimized/atom.svg create mode 100644 icons-optimized/ban.svg create mode 100644 icons-optimized/bell-minus.svg create mode 100644 icons-optimized/bell-off.svg create mode 100644 icons-optimized/bell-plus.svg create mode 100644 icons-optimized/bell-ringing-2.svg create mode 100644 icons-optimized/bell-ringing.svg create mode 100644 icons-optimized/bell-x.svg create mode 100644 icons-optimized/bell.svg create mode 100644 icons-optimized/brand-facebook.svg create mode 100644 icons-optimized/brand-twitter.svg create mode 100644 icons-optimized/brand-whatsapp.svg create mode 100644 icons-optimized/check.svg create mode 100644 icons-optimized/chevrons-left.svg create mode 100644 icons-optimized/chevrons-right.svg create mode 100644 icons-optimized/clock.svg create mode 100644 icons-optimized/color-swatch.svg create mode 100644 icons-optimized/confetti.svg create mode 100644 icons-optimized/copy.svg create mode 100644 icons-optimized/crown.svg create mode 100644 icons-optimized/currency-dollar.svg create mode 100644 icons-optimized/diamond.svg create mode 100644 icons-optimized/discount-2.svg create mode 100644 icons-optimized/discount.svg create mode 100644 icons-optimized/download.svg create mode 100644 icons-optimized/external-link.svg create mode 100644 icons-optimized/eye-check.svg create mode 100644 icons-optimized/eye-off.svg create mode 100644 icons-optimized/eye.svg create mode 100644 icons-optimized/file-download.svg create mode 100644 icons-optimized/file-export.svg create mode 100644 icons-optimized/file-report.svg create mode 100644 icons-optimized/file-search.svg create mode 100644 icons-optimized/flag.svg create mode 100644 icons-optimized/folder-download.svg create mode 100644 icons-optimized/folder-eye.svg create mode 100644 icons-optimized/folder-minus.svg create mode 100644 icons-optimized/folder-off.svg create mode 100644 icons-optimized/folder-plus.svg create mode 100644 icons-optimized/folder-upload.svg create mode 100644 icons-optimized/folder-x.svg create mode 100644 icons-optimized/folder.svg create mode 100644 icons-optimized/folders.svg create mode 100644 icons-optimized/grid-dots.svg create mode 100644 icons-optimized/home-2.svg create mode 100644 icons-optimized/info-circle.svg create mode 100644 icons-optimized/info-square.svg create mode 100644 icons-optimized/loader.svg create mode 100644 icons-optimized/lock-2.svg create mode 100644 icons-optimized/lock-off.svg create mode 100644 icons-optimized/lock-open.svg create mode 100644 icons-optimized/lock.svg create mode 100644 icons-optimized/mail.svg create mode 100644 icons-optimized/mood-crazy-happy.svg create mode 100644 icons-optimized/mood-empty.svg create mode 100644 icons-optimized/mood-sad.svg create mode 100644 icons-optimized/mood-smile.svg create mode 100644 icons-optimized/mouse-left.svg create mode 100644 icons-optimized/mouse-right.svg create mode 100644 icons-optimized/palette.svg create mode 100644 icons-optimized/photo-off.svg create mode 100644 icons-optimized/photo-stack.svg create mode 100644 icons-optimized/photo.svg create mode 100644 icons-optimized/question-mark.svg create mode 100644 icons-optimized/redeem.svg create mode 100644 icons-optimized/rotate-90.svg create mode 100644 icons-optimized/spray.svg create mode 100644 icons-optimized/stack-2.svg create mode 100644 icons-optimized/stack.svg create mode 100644 icons-optimized/star-off.svg create mode 100644 icons-optimized/star.svg create mode 100644 icons-optimized/thumb-down.svg create mode 100644 icons-optimized/thumb-up.svg create mode 100644 icons-optimized/trash-off.svg create mode 100644 icons-optimized/trash.svg create mode 100644 icons-optimized/viewfinder.svg create mode 100644 icons-optimized/world.svg create mode 100644 icons-original/fill-outline/recull.svg create mode 100644 icons-original/outline/redeem.svg create mode 100644 icons-original/outline/rotate-90.svg create mode 100644 icons-original/weird/aftershoot-credit.svg create mode 100644 src/icons-neo/alarm.tsx create mode 100644 src/icons-neo/alert-octagon.tsx create mode 100644 src/icons-neo/atom.tsx create mode 100644 src/icons-neo/ban.tsx create mode 100644 src/icons-neo/bell-minus.tsx create mode 100644 src/icons-neo/bell-off.tsx create mode 100644 src/icons-neo/bell-plus.tsx create mode 100644 src/icons-neo/bell-ringing-2.tsx create mode 100644 src/icons-neo/bell-ringing.tsx create mode 100644 src/icons-neo/bell-x.tsx create mode 100644 src/icons-neo/bell.tsx create mode 100644 src/icons-neo/brand-facebook.tsx create mode 100644 src/icons-neo/brand-twitter.tsx create mode 100644 src/icons-neo/brand-whatsapp.tsx create mode 100644 src/icons-neo/check.tsx create mode 100644 src/icons-neo/chevrons-left.tsx create mode 100644 src/icons-neo/chevrons-right.tsx create mode 100644 src/icons-neo/clock.tsx create mode 100644 src/icons-neo/color-swatch.tsx create mode 100644 src/icons-neo/confetti.tsx create mode 100644 src/icons-neo/copy.tsx create mode 100644 src/icons-neo/crown.tsx create mode 100644 src/icons-neo/currency-dollar.tsx create mode 100644 src/icons-neo/diamond.tsx create mode 100644 src/icons-neo/discount-2.tsx create mode 100644 src/icons-neo/discount.tsx create mode 100644 src/icons-neo/download.tsx create mode 100644 src/icons-neo/external-link.tsx create mode 100644 src/icons-neo/eye-check.tsx create mode 100644 src/icons-neo/eye-off.tsx create mode 100644 src/icons-neo/eye.tsx create mode 100644 src/icons-neo/file-download.tsx create mode 100644 src/icons-neo/file-export.tsx create mode 100644 src/icons-neo/file-report.tsx create mode 100644 src/icons-neo/file-search.tsx create mode 100644 src/icons-neo/flag.tsx create mode 100644 src/icons-neo/folder-download.tsx create mode 100644 src/icons-neo/folder-eye.tsx create mode 100644 src/icons-neo/folder-minus.tsx create mode 100644 src/icons-neo/folder-off.tsx create mode 100644 src/icons-neo/folder-plus.tsx create mode 100644 src/icons-neo/folder-upload.tsx create mode 100644 src/icons-neo/folder-x.tsx create mode 100644 src/icons-neo/folder.tsx create mode 100644 src/icons-neo/folders.tsx create mode 100644 src/icons-neo/grid-dots.tsx create mode 100644 src/icons-neo/home-2.tsx create mode 100644 src/icons-neo/info-circle.tsx create mode 100644 src/icons-neo/info-square.tsx create mode 100644 src/icons-neo/loader.tsx create mode 100644 src/icons-neo/lock-2.tsx create mode 100644 src/icons-neo/lock-off.tsx create mode 100644 src/icons-neo/lock-open.tsx create mode 100644 src/icons-neo/lock.tsx create mode 100644 src/icons-neo/mail.tsx create mode 100644 src/icons-neo/mood-crazy-happy.tsx create mode 100644 src/icons-neo/mood-empty.tsx create mode 100644 src/icons-neo/mood-sad.tsx create mode 100644 src/icons-neo/mood-smile.tsx create mode 100644 src/icons-neo/mouse-left.tsx create mode 100644 src/icons-neo/mouse-right.tsx create mode 100644 src/icons-neo/palette.tsx create mode 100644 src/icons-neo/photo-off.tsx create mode 100644 src/icons-neo/photo-stack.tsx create mode 100644 src/icons-neo/photo.tsx create mode 100644 src/icons-neo/question-mark.tsx create mode 100644 src/icons-neo/redeem.tsx create mode 100644 src/icons-neo/rotate-90.tsx create mode 100644 src/icons-neo/spray.tsx create mode 100644 src/icons-neo/stack-2.tsx create mode 100644 src/icons-neo/stack.tsx create mode 100644 src/icons-neo/star-off.tsx create mode 100644 src/icons-neo/star.tsx create mode 100644 src/icons-neo/thumb-down.tsx create mode 100644 src/icons-neo/thumb-up.tsx create mode 100644 src/icons-neo/trash-off.tsx create mode 100644 src/icons-neo/trash.tsx create mode 100644 src/icons-neo/viewfinder.tsx create mode 100644 src/icons-neo/world.tsx create mode 100644 src/stories-neo/Alarm.stories.tsx create mode 100644 src/stories-neo/AlertOctagon.stories.tsx create mode 100644 src/stories-neo/Atom.stories.tsx create mode 100644 src/stories-neo/Ban.stories.tsx create mode 100644 src/stories-neo/Bell.stories.tsx create mode 100644 src/stories-neo/BellMinus.stories.tsx create mode 100644 src/stories-neo/BellOff.stories.tsx create mode 100644 src/stories-neo/BellPlus.stories.tsx create mode 100644 src/stories-neo/BellRinging.stories.tsx create mode 100644 src/stories-neo/BellRinging2.stories.tsx create mode 100644 src/stories-neo/BellX.stories.tsx create mode 100644 src/stories-neo/BrandFacebook.stories.tsx create mode 100644 src/stories-neo/BrandTwitter.stories.tsx create mode 100644 src/stories-neo/BrandWhatsapp.stories.tsx create mode 100644 src/stories-neo/Check.stories.tsx create mode 100644 src/stories-neo/ChevronsLeft.stories.tsx create mode 100644 src/stories-neo/ChevronsRight.stories.tsx create mode 100644 src/stories-neo/Clock.stories.tsx create mode 100644 src/stories-neo/ColorSwatch.stories.tsx create mode 100644 src/stories-neo/Confetti.stories.tsx create mode 100644 src/stories-neo/Copy.stories.tsx create mode 100644 src/stories-neo/Crown.stories.tsx create mode 100644 src/stories-neo/CurrencyDollar.stories.tsx create mode 100644 src/stories-neo/Diamond.stories.tsx create mode 100644 src/stories-neo/Discount.stories.tsx create mode 100644 src/stories-neo/Discount2.stories.tsx create mode 100644 src/stories-neo/Download.stories.tsx create mode 100644 src/stories-neo/ExternalLink.stories.tsx create mode 100644 src/stories-neo/Eye.stories.tsx create mode 100644 src/stories-neo/EyeCheck.stories.tsx create mode 100644 src/stories-neo/EyeOff.stories.tsx create mode 100644 src/stories-neo/FileDownload.stories.tsx create mode 100644 src/stories-neo/FileExport.stories.tsx create mode 100644 src/stories-neo/FileReport.stories.tsx create mode 100644 src/stories-neo/FileSearch.stories.tsx create mode 100644 src/stories-neo/Flag.stories.tsx create mode 100644 src/stories-neo/Folder.stories.tsx create mode 100644 src/stories-neo/FolderDownload.stories.tsx create mode 100644 src/stories-neo/FolderEye.stories.tsx create mode 100644 src/stories-neo/FolderMinus.stories.tsx create mode 100644 src/stories-neo/FolderOff.stories.tsx create mode 100644 src/stories-neo/FolderPlus.stories.tsx create mode 100644 src/stories-neo/FolderUpload.stories.tsx create mode 100644 src/stories-neo/FolderX.stories.tsx create mode 100644 src/stories-neo/Folders.stories.tsx create mode 100644 src/stories-neo/GridDots.stories.tsx create mode 100644 src/stories-neo/Home2.stories.tsx create mode 100644 src/stories-neo/InfoCircle.stories.tsx create mode 100644 src/stories-neo/InfoSquare.stories.tsx create mode 100644 src/stories-neo/Loader.stories.tsx create mode 100644 src/stories-neo/Lock.stories.tsx create mode 100644 src/stories-neo/Lock2.stories.tsx create mode 100644 src/stories-neo/LockOff.stories.tsx create mode 100644 src/stories-neo/LockOpen.stories.tsx create mode 100644 src/stories-neo/Mail.stories.tsx create mode 100644 src/stories-neo/MoodCrazyHappy.stories.tsx create mode 100644 src/stories-neo/MoodEmpty.stories.tsx create mode 100644 src/stories-neo/MoodSad.stories.tsx create mode 100644 src/stories-neo/MoodSmile.stories.tsx create mode 100644 src/stories-neo/MouseLeft.stories.tsx create mode 100644 src/stories-neo/MouseRight.stories.tsx create mode 100644 src/stories-neo/Palette.stories.tsx create mode 100644 src/stories-neo/Photo.stories.tsx create mode 100644 src/stories-neo/PhotoOff.stories.tsx create mode 100644 src/stories-neo/PhotoStack.stories.tsx create mode 100644 src/stories-neo/QuestionMark.stories.tsx create mode 100644 src/stories-neo/Redeem.stories.tsx create mode 100644 src/stories-neo/Rotate90.stories.tsx create mode 100644 src/stories-neo/Spray.stories.tsx create mode 100644 src/stories-neo/Stack.stories.tsx create mode 100644 src/stories-neo/Stack2.stories.tsx create mode 100644 src/stories-neo/Star.stories.tsx create mode 100644 src/stories-neo/StarOff.stories.tsx create mode 100644 src/stories-neo/ThumbDown.stories.tsx create mode 100644 src/stories-neo/ThumbUp.stories.tsx create mode 100644 src/stories-neo/Trash.stories.tsx create mode 100644 src/stories-neo/TrashOff.stories.tsx create mode 100644 src/stories-neo/Viewfinder.stories.tsx create mode 100644 src/stories-neo/World.stories.tsx diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg index 1620fcd8..28a418ce 100644 --- a/icons-optimized/adjustments-horizontal.svg +++ b/icons-optimized/adjustments-horizontal.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/alarm.svg b/icons-optimized/alarm.svg new file mode 100644 index 00000000..4b22a0eb --- /dev/null +++ b/icons-optimized/alarm.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle.svg index 3fb257c4..ec811e16 100644 --- a/icons-optimized/alert-circle.svg +++ b/icons-optimized/alert-circle.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/alert-octagon.svg b/icons-optimized/alert-octagon.svg new file mode 100644 index 00000000..fb521d84 --- /dev/null +++ b/icons-optimized/alert-octagon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg index b2681190..21d92a03 100644 --- a/icons-optimized/alert-triangle.svg +++ b/icons-optimized/alert-triangle.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down.svg index c196b8ce..ec66b692 100644 --- a/icons-optimized/arrow-down.svg +++ b/icons-optimized/arrow-down.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left.svg index c19e01c0..1d4d2d3a 100644 --- a/icons-optimized/arrow-left.svg +++ b/icons-optimized/arrow-left.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left.svg index 40662633..775e28ae 100644 --- a/icons-optimized/arrow-narrow-left.svg +++ b/icons-optimized/arrow-narrow-left.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right.svg index 7f844660..ae85d6c7 100644 --- a/icons-optimized/arrow-narrow-right.svg +++ b/icons-optimized/arrow-narrow-right.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right.svg index d651aa41..d3459fe0 100644 --- a/icons-optimized/arrow-right.svg +++ b/icons-optimized/arrow-right.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up.svg index 122cbd4a..8fc5d459 100644 --- a/icons-optimized/arrow-up.svg +++ b/icons-optimized/arrow-up.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/atom.svg b/icons-optimized/atom.svg new file mode 100644 index 00000000..6340317e --- /dev/null +++ b/icons-optimized/atom.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/ban.svg b/icons-optimized/ban.svg new file mode 100644 index 00000000..06f208b1 --- /dev/null +++ b/icons-optimized/ban.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/bell-minus.svg b/icons-optimized/bell-minus.svg new file mode 100644 index 00000000..3bddaca8 --- /dev/null +++ b/icons-optimized/bell-minus.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell-off.svg b/icons-optimized/bell-off.svg new file mode 100644 index 00000000..8e6ddf86 --- /dev/null +++ b/icons-optimized/bell-off.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell-plus.svg b/icons-optimized/bell-plus.svg new file mode 100644 index 00000000..bebe5d46 --- /dev/null +++ b/icons-optimized/bell-plus.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/bell-ringing-2.svg b/icons-optimized/bell-ringing-2.svg new file mode 100644 index 00000000..fd9ef90e --- /dev/null +++ b/icons-optimized/bell-ringing-2.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/bell-ringing.svg b/icons-optimized/bell-ringing.svg new file mode 100644 index 00000000..00b459f2 --- /dev/null +++ b/icons-optimized/bell-ringing.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/bell-x.svg b/icons-optimized/bell-x.svg new file mode 100644 index 00000000..817ca720 --- /dev/null +++ b/icons-optimized/bell-x.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell.svg b/icons-optimized/bell.svg new file mode 100644 index 00000000..52195ffc --- /dev/null +++ b/icons-optimized/bell.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/brand-facebook.svg b/icons-optimized/brand-facebook.svg new file mode 100644 index 00000000..26e8cabe --- /dev/null +++ b/icons-optimized/brand-facebook.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-twitter.svg b/icons-optimized/brand-twitter.svg new file mode 100644 index 00000000..41378a1e --- /dev/null +++ b/icons-optimized/brand-twitter.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-whatsapp.svg b/icons-optimized/brand-whatsapp.svg new file mode 100644 index 00000000..315b0477 --- /dev/null +++ b/icons-optimized/brand-whatsapp.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off.svg index a1f526ba..8ca8836a 100644 --- a/icons-optimized/bulb-off.svg +++ b/icons-optimized/bulb-off.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb.svg index f5d147a4..d567f0f6 100644 --- a/icons-optimized/bulb.svg +++ b/icons-optimized/bulb.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/check.svg b/icons-optimized/check.svg new file mode 100644 index 00000000..929e645b --- /dev/null +++ b/icons-optimized/check.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg index d36e3bae..b7bcb899 100644 --- a/icons-optimized/chevron-down.svg +++ b/icons-optimized/chevron-down.svg @@ -6,12 +6,7 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg index bdbdf5c1..3acdda8e 100644 --- a/icons-optimized/chevron-left.svg +++ b/icons-optimized/chevron-left.svg @@ -6,12 +6,7 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg index 1c1a4a05..f511cbf6 100644 --- a/icons-optimized/chevron-right.svg +++ b/icons-optimized/chevron-right.svg @@ -6,12 +6,7 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg index 2b2652b6..8c44ac3a 100644 --- a/icons-optimized/chevron-up.svg +++ b/icons-optimized/chevron-up.svg @@ -6,12 +6,7 @@ viewBox="0 0 24 24" > - + diff --git a/icons-optimized/chevrons-left.svg b/icons-optimized/chevrons-left.svg new file mode 100644 index 00000000..ab445412 --- /dev/null +++ b/icons-optimized/chevrons-left.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/chevrons-right.svg b/icons-optimized/chevrons-right.svg new file mode 100644 index 00000000..a531016c --- /dev/null +++ b/icons-optimized/chevrons-right.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check.svg index de94b3ed..b5d5f423 100644 --- a/icons-optimized/circle-check.svg +++ b/icons-optimized/circle-check.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-optimized/clock.svg b/icons-optimized/clock.svg new file mode 100644 index 00000000..1c9e808f --- /dev/null +++ b/icons-optimized/clock.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/color-swatch.svg b/icons-optimized/color-swatch.svg new file mode 100644 index 00000000..e8a1d362 --- /dev/null +++ b/icons-optimized/color-swatch.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/confetti.svg b/icons-optimized/confetti.svg new file mode 100644 index 00000000..eb102c02 --- /dev/null +++ b/icons-optimized/confetti.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/copy.svg b/icons-optimized/copy.svg new file mode 100644 index 00000000..95d5643b --- /dev/null +++ b/icons-optimized/copy.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/crown.svg b/icons-optimized/crown.svg new file mode 100644 index 00000000..e63845dd --- /dev/null +++ b/icons-optimized/crown.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/currency-dollar.svg b/icons-optimized/currency-dollar.svg new file mode 100644 index 00000000..4aa52748 --- /dev/null +++ b/icons-optimized/currency-dollar.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/diamond.svg b/icons-optimized/diamond.svg new file mode 100644 index 00000000..8f608b7e --- /dev/null +++ b/icons-optimized/diamond.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/discount-2.svg b/icons-optimized/discount-2.svg new file mode 100644 index 00000000..30c2dcb9 --- /dev/null +++ b/icons-optimized/discount-2.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/discount.svg b/icons-optimized/discount.svg new file mode 100644 index 00000000..a31b0dbf --- /dev/null +++ b/icons-optimized/discount.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/download.svg b/icons-optimized/download.svg new file mode 100644 index 00000000..b200efc5 --- /dev/null +++ b/icons-optimized/download.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/external-link.svg b/icons-optimized/external-link.svg new file mode 100644 index 00000000..453b7de6 --- /dev/null +++ b/icons-optimized/external-link.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye-check.svg b/icons-optimized/eye-check.svg new file mode 100644 index 00000000..cc7b5faf --- /dev/null +++ b/icons-optimized/eye-check.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye-off.svg b/icons-optimized/eye-off.svg new file mode 100644 index 00000000..470f72e3 --- /dev/null +++ b/icons-optimized/eye-off.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye.svg b/icons-optimized/eye.svg new file mode 100644 index 00000000..0d19b87b --- /dev/null +++ b/icons-optimized/eye.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/file-download.svg b/icons-optimized/file-download.svg new file mode 100644 index 00000000..d570b4f9 --- /dev/null +++ b/icons-optimized/file-download.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/file-export.svg b/icons-optimized/file-export.svg new file mode 100644 index 00000000..d0a11bd8 --- /dev/null +++ b/icons-optimized/file-export.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/file-report.svg b/icons-optimized/file-report.svg new file mode 100644 index 00000000..897a2d03 --- /dev/null +++ b/icons-optimized/file-report.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/file-search.svg b/icons-optimized/file-search.svg new file mode 100644 index 00000000..427bac97 --- /dev/null +++ b/icons-optimized/file-search.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/flag.svg b/icons-optimized/flag.svg new file mode 100644 index 00000000..63e91be7 --- /dev/null +++ b/icons-optimized/flag.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/folder-download.svg b/icons-optimized/folder-download.svg new file mode 100644 index 00000000..ef0c6edc --- /dev/null +++ b/icons-optimized/folder-download.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-eye.svg b/icons-optimized/folder-eye.svg new file mode 100644 index 00000000..4cb460f0 --- /dev/null +++ b/icons-optimized/folder-eye.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-minus.svg b/icons-optimized/folder-minus.svg new file mode 100644 index 00000000..d1da1c85 --- /dev/null +++ b/icons-optimized/folder-minus.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder-off.svg b/icons-optimized/folder-off.svg new file mode 100644 index 00000000..47100d16 --- /dev/null +++ b/icons-optimized/folder-off.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder-plus.svg b/icons-optimized/folder-plus.svg new file mode 100644 index 00000000..a93b65f1 --- /dev/null +++ b/icons-optimized/folder-plus.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-upload.svg b/icons-optimized/folder-upload.svg new file mode 100644 index 00000000..ac9a5cb1 --- /dev/null +++ b/icons-optimized/folder-upload.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-x.svg b/icons-optimized/folder-x.svg new file mode 100644 index 00000000..47fa1b91 --- /dev/null +++ b/icons-optimized/folder-x.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder.svg b/icons-optimized/folder.svg new file mode 100644 index 00000000..e3b414cb --- /dev/null +++ b/icons-optimized/folder.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/folders.svg b/icons-optimized/folders.svg new file mode 100644 index 00000000..00b236c9 --- /dev/null +++ b/icons-optimized/folders.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/grid-dots.svg b/icons-optimized/grid-dots.svg new file mode 100644 index 00000000..bf5b2a3a --- /dev/null +++ b/icons-optimized/grid-dots.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/home-2.svg b/icons-optimized/home-2.svg new file mode 100644 index 00000000..5ab36c8e --- /dev/null +++ b/icons-optimized/home-2.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/info-circle.svg b/icons-optimized/info-circle.svg new file mode 100644 index 00000000..c8aaa525 --- /dev/null +++ b/icons-optimized/info-circle.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/info-square.svg b/icons-optimized/info-square.svg new file mode 100644 index 00000000..265cd205 --- /dev/null +++ b/icons-optimized/info-square.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/loader.svg b/icons-optimized/loader.svg new file mode 100644 index 00000000..34fcae87 --- /dev/null +++ b/icons-optimized/loader.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/lock-2.svg b/icons-optimized/lock-2.svg new file mode 100644 index 00000000..eab9a77a --- /dev/null +++ b/icons-optimized/lock-2.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/lock-off.svg b/icons-optimized/lock-off.svg new file mode 100644 index 00000000..2e54faab --- /dev/null +++ b/icons-optimized/lock-off.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/lock-open.svg b/icons-optimized/lock-open.svg new file mode 100644 index 00000000..c5c8d74e --- /dev/null +++ b/icons-optimized/lock-open.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/lock.svg b/icons-optimized/lock.svg new file mode 100644 index 00000000..2ff6f6aa --- /dev/null +++ b/icons-optimized/lock.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/mail.svg b/icons-optimized/mail.svg new file mode 100644 index 00000000..9cf9df66 --- /dev/null +++ b/icons-optimized/mail.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/mood-crazy-happy.svg b/icons-optimized/mood-crazy-happy.svg new file mode 100644 index 00000000..7efadfd9 --- /dev/null +++ b/icons-optimized/mood-crazy-happy.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/mood-empty.svg b/icons-optimized/mood-empty.svg new file mode 100644 index 00000000..884a7d74 --- /dev/null +++ b/icons-optimized/mood-empty.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mood-sad.svg b/icons-optimized/mood-sad.svg new file mode 100644 index 00000000..fa78a56d --- /dev/null +++ b/icons-optimized/mood-sad.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mood-smile.svg b/icons-optimized/mood-smile.svg new file mode 100644 index 00000000..07400297 --- /dev/null +++ b/icons-optimized/mood-smile.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mouse-left.svg b/icons-optimized/mouse-left.svg new file mode 100644 index 00000000..1394f9c0 --- /dev/null +++ b/icons-optimized/mouse-left.svg @@ -0,0 +1,17 @@ + + + + diff --git a/icons-optimized/mouse-right.svg b/icons-optimized/mouse-right.svg new file mode 100644 index 00000000..206e2139 --- /dev/null +++ b/icons-optimized/mouse-right.svg @@ -0,0 +1,17 @@ + + + + diff --git a/icons-optimized/palette.svg b/icons-optimized/palette.svg new file mode 100644 index 00000000..8be2ec5c --- /dev/null +++ b/icons-optimized/palette.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/photo-off.svg b/icons-optimized/photo-off.svg new file mode 100644 index 00000000..2ff98daf --- /dev/null +++ b/icons-optimized/photo-off.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/photo-stack.svg b/icons-optimized/photo-stack.svg new file mode 100644 index 00000000..bbc38523 --- /dev/null +++ b/icons-optimized/photo-stack.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/photo.svg b/icons-optimized/photo.svg new file mode 100644 index 00000000..e35a0cd3 --- /dev/null +++ b/icons-optimized/photo.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/question-mark.svg b/icons-optimized/question-mark.svg new file mode 100644 index 00000000..96ebddd7 --- /dev/null +++ b/icons-optimized/question-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/redeem.svg b/icons-optimized/redeem.svg new file mode 100644 index 00000000..fff1e2ea --- /dev/null +++ b/icons-optimized/redeem.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/icons-optimized/rotate-90.svg b/icons-optimized/rotate-90.svg new file mode 100644 index 00000000..48ac5901 --- /dev/null +++ b/icons-optimized/rotate-90.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount.svg index effc57a7..d69e7ba1 100644 --- a/icons-optimized/shopping-cart-discount.svg +++ b/icons-optimized/shopping-cart-discount.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 25" > - + diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart.svg index b5261491..53fa5536 100644 --- a/icons-optimized/shopping-cart.svg +++ b/icons-optimized/shopping-cart.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 25" > - + diff --git a/icons-optimized/spray.svg b/icons-optimized/spray.svg new file mode 100644 index 00000000..dea9b74d --- /dev/null +++ b/icons-optimized/spray.svg @@ -0,0 +1,14 @@ + + + + diff --git a/icons-optimized/stack-2.svg b/icons-optimized/stack-2.svg new file mode 100644 index 00000000..6a6f72b9 --- /dev/null +++ b/icons-optimized/stack-2.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/stack.svg b/icons-optimized/stack.svg new file mode 100644 index 00000000..0bf5b83a --- /dev/null +++ b/icons-optimized/stack.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/icons-optimized/star-off.svg b/icons-optimized/star-off.svg new file mode 100644 index 00000000..e0778f45 --- /dev/null +++ b/icons-optimized/star-off.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/icons-optimized/star.svg b/icons-optimized/star.svg new file mode 100644 index 00000000..76052397 --- /dev/null +++ b/icons-optimized/star.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/thumb-down.svg b/icons-optimized/thumb-down.svg new file mode 100644 index 00000000..fb01f70f --- /dev/null +++ b/icons-optimized/thumb-down.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/thumb-up.svg b/icons-optimized/thumb-up.svg new file mode 100644 index 00000000..c334e0dc --- /dev/null +++ b/icons-optimized/thumb-up.svg @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/icons-optimized/trash-off.svg b/icons-optimized/trash-off.svg new file mode 100644 index 00000000..9e3f8074 --- /dev/null +++ b/icons-optimized/trash-off.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/trash.svg b/icons-optimized/trash.svg new file mode 100644 index 00000000..9124103d --- /dev/null +++ b/icons-optimized/trash.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/viewfinder.svg b/icons-optimized/viewfinder.svg new file mode 100644 index 00000000..c561a921 --- /dev/null +++ b/icons-optimized/viewfinder.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/world.svg b/icons-optimized/world.svg new file mode 100644 index 00000000..ba2f3c8b --- /dev/null +++ b/icons-optimized/world.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/x.svg b/icons-optimized/x.svg index 0c2d42fb..98a75b49 100644 --- a/icons-optimized/x.svg +++ b/icons-optimized/x.svg @@ -5,12 +5,7 @@ fill="none" viewBox="0 0 24 24" > - + diff --git a/icons-original/fill-outline/recull.svg b/icons-original/fill-outline/recull.svg new file mode 100644 index 00000000..a2df2175 --- /dev/null +++ b/icons-original/fill-outline/recull.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/fill/play-fill.svg b/icons-original/fill/play-fill.svg index 7c771706..637ebc07 100644 --- a/icons-original/fill/play-fill.svg +++ b/icons-original/fill/play-fill.svg @@ -1,3 +1,4 @@ - + diff --git a/icons-original/outline/mood-sad.svg b/icons-original/outline/mood-sad.svg index 3d9acc1f..a465d4c0 100644 --- a/icons-original/outline/mood-sad.svg +++ b/icons-original/outline/mood-sad.svg @@ -1,9 +1,9 @@ - - - - + + + + diff --git a/icons-original/outline/redeem.svg b/icons-original/outline/redeem.svg new file mode 100644 index 00000000..767d94c6 --- /dev/null +++ b/icons-original/outline/redeem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/outline/rotate-90.svg b/icons-original/outline/rotate-90.svg new file mode 100644 index 00000000..9e46ef49 --- /dev/null +++ b/icons-original/outline/rotate-90.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/weird/aftershoot-credit.svg b/icons-original/weird/aftershoot-credit.svg new file mode 100644 index 00000000..73c8b775 --- /dev/null +++ b/icons-original/weird/aftershoot-credit.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index 2bb023ce..e473f3fb 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -74,7 +74,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 76975614..00c15e1f 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -24,7 +24,7 @@ async function optimizeSvg(svg, path) { { name: 'removeAttrs', params: { - attrs: '(stroke)', + attrs: '(stroke|stroke-width)', }, }, // custom plugin diff --git a/src/icons-neo/adjustments-horizontal.tsx b/src/icons-neo/adjustments-horizontal.tsx index 973d302b..be5138f2 100644 --- a/src/icons-neo/adjustments-horizontal.tsx +++ b/src/icons-neo/adjustments-horizontal.tsx @@ -14,9 +14,8 @@ const AdjustmentsHorizontal = createASIcon( diff --git a/src/icons-neo/alarm.tsx b/src/icons-neo/alarm.tsx new file mode 100644 index 00000000..68523497 --- /dev/null +++ b/src/icons-neo/alarm.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Alarm = createASIcon( + "Alarm", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default Alarm; diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx index f61b79a2..f58d89b4 100644 --- a/src/icons-neo/alert-circle.tsx +++ b/src/icons-neo/alert-circle.tsx @@ -14,9 +14,8 @@ const AlertCircle = createASIcon( diff --git a/src/icons-neo/alert-octagon.tsx b/src/icons-neo/alert-octagon.tsx new file mode 100644 index 00000000..2fceb54c --- /dev/null +++ b/src/icons-neo/alert-octagon.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertOctagon = createASIcon( + "AlertOctagon", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default AlertOctagon; diff --git a/src/icons-neo/alert-triangle.tsx b/src/icons-neo/alert-triangle.tsx index 9f2aed65..4b1fe674 100644 --- a/src/icons-neo/alert-triangle.tsx +++ b/src/icons-neo/alert-triangle.tsx @@ -14,9 +14,8 @@ const AlertTriangle = createASIcon( diff --git a/src/icons-neo/arrow-down.tsx b/src/icons-neo/arrow-down.tsx index 4e809708..ba8febe1 100644 --- a/src/icons-neo/arrow-down.tsx +++ b/src/icons-neo/arrow-down.tsx @@ -14,9 +14,8 @@ const ArrowDown = createASIcon( diff --git a/src/icons-neo/arrow-left.tsx b/src/icons-neo/arrow-left.tsx index 38f3e489..8629a838 100644 --- a/src/icons-neo/arrow-left.tsx +++ b/src/icons-neo/arrow-left.tsx @@ -14,9 +14,8 @@ const ArrowLeft = createASIcon( diff --git a/src/icons-neo/arrow-narrow-left.tsx b/src/icons-neo/arrow-narrow-left.tsx index 81ca8121..4eedee0f 100644 --- a/src/icons-neo/arrow-narrow-left.tsx +++ b/src/icons-neo/arrow-narrow-left.tsx @@ -14,9 +14,8 @@ const ArrowNarrowLeft = createASIcon( diff --git a/src/icons-neo/arrow-narrow-right.tsx b/src/icons-neo/arrow-narrow-right.tsx index 48635f38..6a8ad26e 100644 --- a/src/icons-neo/arrow-narrow-right.tsx +++ b/src/icons-neo/arrow-narrow-right.tsx @@ -14,9 +14,8 @@ const ArrowNarrowRight = createASIcon( diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx index 52a4ef87..bef4df6e 100644 --- a/src/icons-neo/arrow-right.tsx +++ b/src/icons-neo/arrow-right.tsx @@ -14,9 +14,8 @@ const ArrowRight = createASIcon( diff --git a/src/icons-neo/arrow-up.tsx b/src/icons-neo/arrow-up.tsx index 2c8a07dc..67b8f26b 100644 --- a/src/icons-neo/arrow-up.tsx +++ b/src/icons-neo/arrow-up.tsx @@ -14,9 +14,8 @@ const ArrowUp = createASIcon( diff --git a/src/icons-neo/atom.tsx b/src/icons-neo/atom.tsx new file mode 100644 index 00000000..d4b1756a --- /dev/null +++ b/src/icons-neo/atom.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Atom = createASIcon( + "Atom", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Atom; diff --git a/src/icons-neo/ban.tsx b/src/icons-neo/ban.tsx new file mode 100644 index 00000000..314967d8 --- /dev/null +++ b/src/icons-neo/ban.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Ban = createASIcon( + "Ban", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Ban; diff --git a/src/icons-neo/bell-minus.tsx b/src/icons-neo/bell-minus.tsx new file mode 100644 index 00000000..737f4d46 --- /dev/null +++ b/src/icons-neo/bell-minus.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellMinus = createASIcon( + "BellMinus", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default BellMinus; diff --git a/src/icons-neo/bell-off.tsx b/src/icons-neo/bell-off.tsx new file mode 100644 index 00000000..8e5ce209 --- /dev/null +++ b/src/icons-neo/bell-off.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellOff = createASIcon( + "BellOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default BellOff; diff --git a/src/icons-neo/bell-plus.tsx b/src/icons-neo/bell-plus.tsx new file mode 100644 index 00000000..f502edd7 --- /dev/null +++ b/src/icons-neo/bell-plus.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellPlus = createASIcon( + "BellPlus", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default BellPlus; diff --git a/src/icons-neo/bell-ringing-2.tsx b/src/icons-neo/bell-ringing-2.tsx new file mode 100644 index 00000000..71f568a3 --- /dev/null +++ b/src/icons-neo/bell-ringing-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellRinging2 = createASIcon( + "BellRinging2", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default BellRinging2; diff --git a/src/icons-neo/bell-ringing.tsx b/src/icons-neo/bell-ringing.tsx new file mode 100644 index 00000000..f7c65c27 --- /dev/null +++ b/src/icons-neo/bell-ringing.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellRinging = createASIcon( + "BellRinging", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default BellRinging; diff --git a/src/icons-neo/bell-x.tsx b/src/icons-neo/bell-x.tsx new file mode 100644 index 00000000..b070e1c2 --- /dev/null +++ b/src/icons-neo/bell-x.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellX = createASIcon( + "BellX", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default BellX; diff --git a/src/icons-neo/bell.tsx b/src/icons-neo/bell.tsx new file mode 100644 index 00000000..d93277de --- /dev/null +++ b/src/icons-neo/bell.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Bell = createASIcon( + "Bell", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Bell; diff --git a/src/icons-neo/brand-facebook.tsx b/src/icons-neo/brand-facebook.tsx new file mode 100644 index 00000000..73d2dd13 --- /dev/null +++ b/src/icons-neo/brand-facebook.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandFacebook = createASIcon( + "BrandFacebook", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default BrandFacebook; diff --git a/src/icons-neo/brand-twitter.tsx b/src/icons-neo/brand-twitter.tsx new file mode 100644 index 00000000..200050e4 --- /dev/null +++ b/src/icons-neo/brand-twitter.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandTwitter = createASIcon( + "BrandTwitter", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , +); + +export default BrandTwitter; diff --git a/src/icons-neo/brand-whatsapp.tsx b/src/icons-neo/brand-whatsapp.tsx new file mode 100644 index 00000000..05ab7127 --- /dev/null +++ b/src/icons-neo/brand-whatsapp.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandWhatsapp = createASIcon( + "BrandWhatsapp", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default BrandWhatsapp; diff --git a/src/icons-neo/bulb-off.tsx b/src/icons-neo/bulb-off.tsx index dd6dbeac..314af868 100644 --- a/src/icons-neo/bulb-off.tsx +++ b/src/icons-neo/bulb-off.tsx @@ -14,9 +14,8 @@ const BulbOff = createASIcon( diff --git a/src/icons-neo/bulb.tsx b/src/icons-neo/bulb.tsx index e6ef12bc..40c71e74 100644 --- a/src/icons-neo/bulb.tsx +++ b/src/icons-neo/bulb.tsx @@ -14,9 +14,8 @@ const Bulb = createASIcon( diff --git a/src/icons-neo/check.tsx b/src/icons-neo/check.tsx new file mode 100644 index 00000000..03b85231 --- /dev/null +++ b/src/icons-neo/check.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Check = createASIcon( + "Check", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Check; diff --git a/src/icons-neo/chevron-down.tsx b/src/icons-neo/chevron-down.tsx index c5464adf..44dd33bc 100644 --- a/src/icons-neo/chevron-down.tsx +++ b/src/icons-neo/chevron-down.tsx @@ -12,12 +12,7 @@ const ChevronDown = createASIcon( }, - + diff --git a/src/icons-neo/chevron-left.tsx b/src/icons-neo/chevron-left.tsx index 6598a392..da563a79 100644 --- a/src/icons-neo/chevron-left.tsx +++ b/src/icons-neo/chevron-left.tsx @@ -12,12 +12,7 @@ const ChevronLeft = createASIcon( }, - + diff --git a/src/icons-neo/chevron-right.tsx b/src/icons-neo/chevron-right.tsx index aab87a2e..706e7bff 100644 --- a/src/icons-neo/chevron-right.tsx +++ b/src/icons-neo/chevron-right.tsx @@ -12,12 +12,7 @@ const ChevronRight = createASIcon( }, - + diff --git a/src/icons-neo/chevron-up.tsx b/src/icons-neo/chevron-up.tsx index b0ed2a02..11b05592 100644 --- a/src/icons-neo/chevron-up.tsx +++ b/src/icons-neo/chevron-up.tsx @@ -12,12 +12,7 @@ const ChevronUp = createASIcon( }, - + diff --git a/src/icons-neo/chevrons-left.tsx b/src/icons-neo/chevrons-left.tsx new file mode 100644 index 00000000..3ca014c0 --- /dev/null +++ b/src/icons-neo/chevrons-left.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronsLeft = createASIcon( + "ChevronsLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default ChevronsLeft; diff --git a/src/icons-neo/chevrons-right.tsx b/src/icons-neo/chevrons-right.tsx new file mode 100644 index 00000000..80c5b3ca --- /dev/null +++ b/src/icons-neo/chevrons-right.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronsRight = createASIcon( + "ChevronsRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default ChevronsRight; diff --git a/src/icons-neo/circle-check.tsx b/src/icons-neo/circle-check.tsx index 6113acff..ae5d2065 100644 --- a/src/icons-neo/circle-check.tsx +++ b/src/icons-neo/circle-check.tsx @@ -14,9 +14,8 @@ const CircleCheck = createASIcon( diff --git a/src/icons-neo/clock.tsx b/src/icons-neo/clock.tsx new file mode 100644 index 00000000..6a90ce97 --- /dev/null +++ b/src/icons-neo/clock.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Clock = createASIcon( + "Clock", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Clock; diff --git a/src/icons-neo/color-swatch.tsx b/src/icons-neo/color-swatch.tsx new file mode 100644 index 00000000..86d45879 --- /dev/null +++ b/src/icons-neo/color-swatch.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ColorSwatch = createASIcon( + "ColorSwatch", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default ColorSwatch; diff --git a/src/icons-neo/confetti.tsx b/src/icons-neo/confetti.tsx new file mode 100644 index 00000000..8ea1d09c --- /dev/null +++ b/src/icons-neo/confetti.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Confetti = createASIcon( + "Confetti", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + + , +); + +export default Confetti; diff --git a/src/icons-neo/copy.tsx b/src/icons-neo/copy.tsx new file mode 100644 index 00000000..4ea79c42 --- /dev/null +++ b/src/icons-neo/copy.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Copy = createASIcon( + "Copy", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default Copy; diff --git a/src/icons-neo/crown.tsx b/src/icons-neo/crown.tsx new file mode 100644 index 00000000..438573d5 --- /dev/null +++ b/src/icons-neo/crown.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown = createASIcon( + "Crown", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Crown; diff --git a/src/icons-neo/currency-dollar.tsx b/src/icons-neo/currency-dollar.tsx new file mode 100644 index 00000000..9674a04a --- /dev/null +++ b/src/icons-neo/currency-dollar.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CurrencyDollar = createASIcon( + "CurrencyDollar", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default CurrencyDollar; diff --git a/src/icons-neo/diamond.tsx b/src/icons-neo/diamond.tsx new file mode 100644 index 00000000..bef63574 --- /dev/null +++ b/src/icons-neo/diamond.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Diamond = createASIcon( + "Diamond", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Diamond; diff --git a/src/icons-neo/discount-2.tsx b/src/icons-neo/discount-2.tsx new file mode 100644 index 00000000..d7ff8707 --- /dev/null +++ b/src/icons-neo/discount-2.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Discount2 = createASIcon( + "Discount2", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default Discount2; diff --git a/src/icons-neo/discount.tsx b/src/icons-neo/discount.tsx new file mode 100644 index 00000000..742f1047 --- /dev/null +++ b/src/icons-neo/discount.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Discount = createASIcon( + "Discount", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default Discount; diff --git a/src/icons-neo/download.tsx b/src/icons-neo/download.tsx new file mode 100644 index 00000000..e1e41d12 --- /dev/null +++ b/src/icons-neo/download.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Download = createASIcon( + "Download", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Download; diff --git a/src/icons-neo/external-link.tsx b/src/icons-neo/external-link.tsx new file mode 100644 index 00000000..c8464b98 --- /dev/null +++ b/src/icons-neo/external-link.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ExternalLink = createASIcon( + "ExternalLink", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default ExternalLink; diff --git a/src/icons-neo/eye-check.tsx b/src/icons-neo/eye-check.tsx new file mode 100644 index 00000000..449f4af0 --- /dev/null +++ b/src/icons-neo/eye-check.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const EyeCheck = createASIcon( + "EyeCheck", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default EyeCheck; diff --git a/src/icons-neo/eye-off.tsx b/src/icons-neo/eye-off.tsx new file mode 100644 index 00000000..6b1554f8 --- /dev/null +++ b/src/icons-neo/eye-off.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const EyeOff = createASIcon( + "EyeOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default EyeOff; diff --git a/src/icons-neo/eye.tsx b/src/icons-neo/eye.tsx new file mode 100644 index 00000000..a814eb4e --- /dev/null +++ b/src/icons-neo/eye.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Eye = createASIcon( + "Eye", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Eye; diff --git a/src/icons-neo/file-download.tsx b/src/icons-neo/file-download.tsx new file mode 100644 index 00000000..ae1f9592 --- /dev/null +++ b/src/icons-neo/file-download.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileDownload = createASIcon( + "FileDownload", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default FileDownload; diff --git a/src/icons-neo/file-export.tsx b/src/icons-neo/file-export.tsx new file mode 100644 index 00000000..c180a053 --- /dev/null +++ b/src/icons-neo/file-export.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileExport = createASIcon( + "FileExport", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default FileExport; diff --git a/src/icons-neo/file-report.tsx b/src/icons-neo/file-report.tsx new file mode 100644 index 00000000..0e5a5af6 --- /dev/null +++ b/src/icons-neo/file-report.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileReport = createASIcon( + "FileReport", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default FileReport; diff --git a/src/icons-neo/file-search.tsx b/src/icons-neo/file-search.tsx new file mode 100644 index 00000000..a57e642c --- /dev/null +++ b/src/icons-neo/file-search.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileSearch = createASIcon( + "FileSearch", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default FileSearch; diff --git a/src/icons-neo/flag.tsx b/src/icons-neo/flag.tsx new file mode 100644 index 00000000..ba804c2d --- /dev/null +++ b/src/icons-neo/flag.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Flag = createASIcon( + "Flag", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , +); + +export default Flag; diff --git a/src/icons-neo/folder-download.tsx b/src/icons-neo/folder-download.tsx new file mode 100644 index 00000000..53a88854 --- /dev/null +++ b/src/icons-neo/folder-download.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderDownload = createASIcon( + "FolderDownload", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default FolderDownload; diff --git a/src/icons-neo/folder-eye.tsx b/src/icons-neo/folder-eye.tsx new file mode 100644 index 00000000..f72da5d4 --- /dev/null +++ b/src/icons-neo/folder-eye.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderEye = createASIcon( + "FolderEye", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default FolderEye; diff --git a/src/icons-neo/folder-minus.tsx b/src/icons-neo/folder-minus.tsx new file mode 100644 index 00000000..745e12c8 --- /dev/null +++ b/src/icons-neo/folder-minus.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderMinus = createASIcon( + "FolderMinus", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default FolderMinus; diff --git a/src/icons-neo/folder-off.tsx b/src/icons-neo/folder-off.tsx new file mode 100644 index 00000000..f4c4ead1 --- /dev/null +++ b/src/icons-neo/folder-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderOff = createASIcon( + "FolderOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default FolderOff; diff --git a/src/icons-neo/folder-plus.tsx b/src/icons-neo/folder-plus.tsx new file mode 100644 index 00000000..e6f36c46 --- /dev/null +++ b/src/icons-neo/folder-plus.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderPlus = createASIcon( + "FolderPlus", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default FolderPlus; diff --git a/src/icons-neo/folder-upload.tsx b/src/icons-neo/folder-upload.tsx new file mode 100644 index 00000000..36c96596 --- /dev/null +++ b/src/icons-neo/folder-upload.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderUpload = createASIcon( + "FolderUpload", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default FolderUpload; diff --git a/src/icons-neo/folder-x.tsx b/src/icons-neo/folder-x.tsx new file mode 100644 index 00000000..2430c465 --- /dev/null +++ b/src/icons-neo/folder-x.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderX = createASIcon( + "FolderX", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default FolderX; diff --git a/src/icons-neo/folder.tsx b/src/icons-neo/folder.tsx new file mode 100644 index 00000000..48872be6 --- /dev/null +++ b/src/icons-neo/folder.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Folder = createASIcon( + "Folder", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , +); + +export default Folder; diff --git a/src/icons-neo/folders.tsx b/src/icons-neo/folders.tsx new file mode 100644 index 00000000..083ceb91 --- /dev/null +++ b/src/icons-neo/folders.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Folders = createASIcon( + "Folders", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default Folders; diff --git a/src/icons-neo/grid-dots.tsx b/src/icons-neo/grid-dots.tsx new file mode 100644 index 00000000..5a535490 --- /dev/null +++ b/src/icons-neo/grid-dots.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridDots = createASIcon( + "GridDots", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , +); + +export default GridDots; diff --git a/src/icons-neo/home-2.tsx b/src/icons-neo/home-2.tsx new file mode 100644 index 00000000..19d9925a --- /dev/null +++ b/src/icons-neo/home-2.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Home2 = createASIcon( + "Home2", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + + , +); + +export default Home2; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index cc5e1073..3e2c13da 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -1,5 +1,7 @@ export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; +export { default as Alarm } from './alarm'; export { default as AlertCircle } from './alert-circle'; +export { default as AlertOctagon } from './alert-octagon'; export { default as AlertTriangle } from './alert-triangle'; export { default as ArrowDown } from './arrow-down'; export { default as ArrowLeft } from './arrow-left'; @@ -7,14 +9,91 @@ export { default as ArrowNarrowLeft } from './arrow-narrow-left'; export { default as ArrowNarrowRight } from './arrow-narrow-right'; export { default as ArrowRight } from './arrow-right'; export { default as ArrowUp } from './arrow-up'; +export { default as Atom } from './atom'; +export { default as Ban } from './ban'; +export { default as BellMinus } from './bell-minus'; +export { default as BellOff } from './bell-off'; +export { default as BellPlus } from './bell-plus'; +export { default as BellRinging2 } from './bell-ringing-2'; +export { default as BellRinging } from './bell-ringing'; +export { default as BellX } from './bell-x'; +export { default as Bell } from './bell'; +export { default as BrandFacebook } from './brand-facebook'; +export { default as BrandTwitter } from './brand-twitter'; +export { default as BrandWhatsapp } from './brand-whatsapp'; export { default as BulbOff } from './bulb-off'; export { default as Bulb } from './bulb'; +export { default as Check } from './check'; export { default as ChevronDown } from './chevron-down'; export { default as ChevronLeft } from './chevron-left'; export { default as ChevronRight } from './chevron-right'; export { default as ChevronUp } from './chevron-up'; +export { default as ChevronsLeft } from './chevrons-left'; +export { default as ChevronsRight } from './chevrons-right'; export { default as CircleCheck } from './circle-check'; +export { default as Clock } from './clock'; +export { default as ColorSwatch } from './color-swatch'; +export { default as Confetti } from './confetti'; +export { default as Copy } from './copy'; +export { default as Crown } from './crown'; +export { default as CurrencyDollar } from './currency-dollar'; +export { default as Diamond } from './diamond'; +export { default as Discount2 } from './discount-2'; +export { default as Discount } from './discount'; +export { default as Download } from './download'; +export { default as ExternalLink } from './external-link'; +export { default as EyeCheck } from './eye-check'; +export { default as EyeOff } from './eye-off'; +export { default as Eye } from './eye'; +export { default as FileDownload } from './file-download'; +export { default as FileExport } from './file-export'; +export { default as FileReport } from './file-report'; +export { default as FileSearch } from './file-search'; +export { default as Flag } from './flag'; +export { default as FolderDownload } from './folder-download'; +export { default as FolderEye } from './folder-eye'; +export { default as FolderMinus } from './folder-minus'; +export { default as FolderOff } from './folder-off'; +export { default as FolderPlus } from './folder-plus'; +export { default as FolderUpload } from './folder-upload'; +export { default as FolderX } from './folder-x'; +export { default as Folder } from './folder'; +export { default as Folders } from './folders'; +export { default as GridDots } from './grid-dots'; +export { default as Home2 } from './home-2'; +export { default as InfoCircle } from './info-circle'; +export { default as InfoSquare } from './info-square'; +export { default as Loader } from './loader'; +export { default as Lock2 } from './lock-2'; +export { default as LockOff } from './lock-off'; +export { default as LockOpen } from './lock-open'; +export { default as Lock } from './lock'; +export { default as Mail } from './mail'; +export { default as MoodCrazyHappy } from './mood-crazy-happy'; +export { default as MoodEmpty } from './mood-empty'; +export { default as MoodSad } from './mood-sad'; +export { default as MoodSmile } from './mood-smile'; +export { default as MouseLeft } from './mouse-left'; +export { default as MouseRight } from './mouse-right'; +export { default as Palette } from './palette'; +export { default as PhotoOff } from './photo-off'; +export { default as PhotoStack } from './photo-stack'; +export { default as Photo } from './photo'; +export { default as QuestionMark } from './question-mark'; +export { default as Redeem } from './redeem'; +export { default as Rotate90 } from './rotate-90'; export { default as ShoppingCartDiscount } from './shopping-cart-discount'; export { default as ShoppingCart } from './shopping-cart'; +export { default as Spray } from './spray'; +export { default as Stack2 } from './stack-2'; +export { default as Stack } from './stack'; +export { default as StarOff } from './star-off'; +export { default as Star } from './star'; +export { default as ThumbDown } from './thumb-down'; +export { default as ThumbUp } from './thumb-up'; +export { default as TrashOff } from './trash-off'; +export { default as Trash } from './trash'; +export { default as Viewfinder } from './viewfinder'; +export { default as World } from './world'; export { default as X } from './x'; diff --git a/src/icons-neo/info-circle.tsx b/src/icons-neo/info-circle.tsx new file mode 100644 index 00000000..4fda2186 --- /dev/null +++ b/src/icons-neo/info-circle.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoCircle = createASIcon( + "InfoCircle", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default InfoCircle; diff --git a/src/icons-neo/info-square.tsx b/src/icons-neo/info-square.tsx new file mode 100644 index 00000000..2e91f499 --- /dev/null +++ b/src/icons-neo/info-square.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoSquare = createASIcon( + "InfoSquare", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default InfoSquare; diff --git a/src/icons-neo/loader.tsx b/src/icons-neo/loader.tsx new file mode 100644 index 00000000..8754c2dc --- /dev/null +++ b/src/icons-neo/loader.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loader = createASIcon( + "Loader", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , +); + +export default Loader; diff --git a/src/icons-neo/lock-2.tsx b/src/icons-neo/lock-2.tsx new file mode 100644 index 00000000..01a1d723 --- /dev/null +++ b/src/icons-neo/lock-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Lock2 = createASIcon( + "Lock2", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Lock2; diff --git a/src/icons-neo/lock-off.tsx b/src/icons-neo/lock-off.tsx new file mode 100644 index 00000000..9f1e3494 --- /dev/null +++ b/src/icons-neo/lock-off.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LockOff = createASIcon( + "LockOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default LockOff; diff --git a/src/icons-neo/lock-open.tsx b/src/icons-neo/lock-open.tsx new file mode 100644 index 00000000..8ddbd5ca --- /dev/null +++ b/src/icons-neo/lock-open.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LockOpen = createASIcon( + "LockOpen", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default LockOpen; diff --git a/src/icons-neo/lock.tsx b/src/icons-neo/lock.tsx new file mode 100644 index 00000000..af4347be --- /dev/null +++ b/src/icons-neo/lock.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Lock = createASIcon( + "Lock", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Lock; diff --git a/src/icons-neo/mail.tsx b/src/icons-neo/mail.tsx new file mode 100644 index 00000000..87863ad7 --- /dev/null +++ b/src/icons-neo/mail.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Mail = createASIcon( + "Mail", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Mail; diff --git a/src/icons-neo/mood-crazy-happy.tsx b/src/icons-neo/mood-crazy-happy.tsx new file mode 100644 index 00000000..0a36b314 --- /dev/null +++ b/src/icons-neo/mood-crazy-happy.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodCrazyHappy = createASIcon( + "MoodCrazyHappy", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , +); + +export default MoodCrazyHappy; diff --git a/src/icons-neo/mood-empty.tsx b/src/icons-neo/mood-empty.tsx new file mode 100644 index 00000000..4466c144 --- /dev/null +++ b/src/icons-neo/mood-empty.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodEmpty = createASIcon( + "MoodEmpty", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default MoodEmpty; diff --git a/src/icons-neo/mood-sad.tsx b/src/icons-neo/mood-sad.tsx new file mode 100644 index 00000000..cc317de7 --- /dev/null +++ b/src/icons-neo/mood-sad.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodSad = createASIcon( + "MoodSad", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default MoodSad; diff --git a/src/icons-neo/mood-smile.tsx b/src/icons-neo/mood-smile.tsx new file mode 100644 index 00000000..88498a43 --- /dev/null +++ b/src/icons-neo/mood-smile.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodSmile = createASIcon( + "MoodSmile", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default MoodSmile; diff --git a/src/icons-neo/mouse-left.tsx b/src/icons-neo/mouse-left.tsx new file mode 100644 index 00000000..795c88b6 --- /dev/null +++ b/src/icons-neo/mouse-left.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseLeft = createASIcon( + "MouseLeft", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default MouseLeft; diff --git a/src/icons-neo/mouse-right.tsx b/src/icons-neo/mouse-right.tsx new file mode 100644 index 00000000..4a496d12 --- /dev/null +++ b/src/icons-neo/mouse-right.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseRight = createASIcon( + "MouseRight", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default MouseRight; diff --git a/src/icons-neo/palette.tsx b/src/icons-neo/palette.tsx new file mode 100644 index 00000000..fe3715b9 --- /dev/null +++ b/src/icons-neo/palette.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Palette = createASIcon( + "Palette", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default Palette; diff --git a/src/icons-neo/photo-off.tsx b/src/icons-neo/photo-off.tsx new file mode 100644 index 00000000..5d2c5cac --- /dev/null +++ b/src/icons-neo/photo-off.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoOff = createASIcon( + "PhotoOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default PhotoOff; diff --git a/src/icons-neo/photo-stack.tsx b/src/icons-neo/photo-stack.tsx new file mode 100644 index 00000000..a130a180 --- /dev/null +++ b/src/icons-neo/photo-stack.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoStack = createASIcon( + "PhotoStack", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default PhotoStack; diff --git a/src/icons-neo/photo.tsx b/src/icons-neo/photo.tsx new file mode 100644 index 00000000..50573af8 --- /dev/null +++ b/src/icons-neo/photo.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Photo = createASIcon( + "Photo", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default Photo; diff --git a/src/icons-neo/question-mark.tsx b/src/icons-neo/question-mark.tsx new file mode 100644 index 00000000..f2b60e20 --- /dev/null +++ b/src/icons-neo/question-mark.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const QuestionMark = createASIcon( + "QuestionMark", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default QuestionMark; diff --git a/src/icons-neo/redeem.tsx b/src/icons-neo/redeem.tsx new file mode 100644 index 00000000..9eaf1629 --- /dev/null +++ b/src/icons-neo/redeem.tsx @@ -0,0 +1,41 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Redeem = createASIcon( + "Redeem", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + , +); + +export default Redeem; diff --git a/src/icons-neo/rotate-90.tsx b/src/icons-neo/rotate-90.tsx new file mode 100644 index 00000000..5d2d9012 --- /dev/null +++ b/src/icons-neo/rotate-90.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Rotate90 = createASIcon( + "Rotate90", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Rotate90; diff --git a/src/icons-neo/shopping-cart-discount.tsx b/src/icons-neo/shopping-cart-discount.tsx index 42749621..4ff9e681 100644 --- a/src/icons-neo/shopping-cart-discount.tsx +++ b/src/icons-neo/shopping-cart-discount.tsx @@ -14,9 +14,8 @@ const ShoppingCartDiscount = createASIcon( diff --git a/src/icons-neo/shopping-cart.tsx b/src/icons-neo/shopping-cart.tsx index ffb31671..e0b379ba 100644 --- a/src/icons-neo/shopping-cart.tsx +++ b/src/icons-neo/shopping-cart.tsx @@ -14,9 +14,8 @@ const ShoppingCart = createASIcon( diff --git a/src/icons-neo/spray.tsx b/src/icons-neo/spray.tsx new file mode 100644 index 00000000..ec018216 --- /dev/null +++ b/src/icons-neo/spray.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Spray = createASIcon( + "Spray", + { + xmlns: "http://www.w3.org/2000/svg", + width: "16", + height: "21", + fill: "none", + viewBox: "0 0 16 21", + }, + + + + , +); + +export default Spray; diff --git a/src/icons-neo/stack-2.tsx b/src/icons-neo/stack-2.tsx new file mode 100644 index 00000000..19af835c --- /dev/null +++ b/src/icons-neo/stack-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Stack2 = createASIcon( + "Stack2", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Stack2; diff --git a/src/icons-neo/stack.tsx b/src/icons-neo/stack.tsx new file mode 100644 index 00000000..692f2503 --- /dev/null +++ b/src/icons-neo/stack.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Stack = createASIcon( + "Stack", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Stack; diff --git a/src/icons-neo/star-off.tsx b/src/icons-neo/star-off.tsx new file mode 100644 index 00000000..22510860 --- /dev/null +++ b/src/icons-neo/star-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarOff = createASIcon( + "StarOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default StarOff; diff --git a/src/icons-neo/star.tsx b/src/icons-neo/star.tsx new file mode 100644 index 00000000..27b91ac9 --- /dev/null +++ b/src/icons-neo/star.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star = createASIcon( + "Star", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Star; diff --git a/src/icons-neo/thumb-down.tsx b/src/icons-neo/thumb-down.tsx new file mode 100644 index 00000000..21056b14 --- /dev/null +++ b/src/icons-neo/thumb-down.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ThumbDown = createASIcon( + "ThumbDown", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default ThumbDown; diff --git a/src/icons-neo/thumb-up.tsx b/src/icons-neo/thumb-up.tsx new file mode 100644 index 00000000..3c6789ef --- /dev/null +++ b/src/icons-neo/thumb-up.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ThumbUp = createASIcon( + "ThumbUp", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default ThumbUp; diff --git a/src/icons-neo/trash-off.tsx b/src/icons-neo/trash-off.tsx new file mode 100644 index 00000000..c9e46d71 --- /dev/null +++ b/src/icons-neo/trash-off.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const TrashOff = createASIcon( + "TrashOff", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + , +); + +export default TrashOff; diff --git a/src/icons-neo/trash.tsx b/src/icons-neo/trash.tsx new file mode 100644 index 00000000..8d2b19fa --- /dev/null +++ b/src/icons-neo/trash.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Trash = createASIcon( + "Trash", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "24", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , +); + +export default Trash; diff --git a/src/icons-neo/viewfinder.tsx b/src/icons-neo/viewfinder.tsx new file mode 100644 index 00000000..2cab2172 --- /dev/null +++ b/src/icons-neo/viewfinder.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Viewfinder = createASIcon( + "Viewfinder", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , +); + +export default Viewfinder; diff --git a/src/icons-neo/world.tsx b/src/icons-neo/world.tsx new file mode 100644 index 00000000..cc224697 --- /dev/null +++ b/src/icons-neo/world.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const World = createASIcon( + "World", + { + xmlns: "http://www.w3.org/2000/svg", + width: "24", + height: "25", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default World; diff --git a/src/icons-neo/x.tsx b/src/icons-neo/x.tsx index 2e3ba2ad..fe9394fb 100644 --- a/src/icons-neo/x.tsx +++ b/src/icons-neo/x.tsx @@ -14,9 +14,8 @@ const X = createASIcon( diff --git a/src/stories-neo/AdjustmentsHorizontal.stories.tsx b/src/stories-neo/AdjustmentsHorizontal.stories.tsx index f22abd0c..207fbf4b 100644 --- a/src/stories-neo/AdjustmentsHorizontal.stories.tsx +++ b/src/stories-neo/AdjustmentsHorizontal.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/Alarm.stories.tsx b/src/stories-neo/Alarm.stories.tsx new file mode 100644 index 00000000..32454c6d --- /dev/null +++ b/src/stories-neo/Alarm.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Alarm from '../icons-neo/alarm' + + const meta: Meta = { + component: Alarm, + title: 'omega/Alarm', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/AlertCircle.stories.tsx b/src/stories-neo/AlertCircle.stories.tsx index 45151c07..3603b3fd 100644 --- a/src/stories-neo/AlertCircle.stories.tsx +++ b/src/stories-neo/AlertCircle.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/AlertOctagon.stories.tsx b/src/stories-neo/AlertOctagon.stories.tsx new file mode 100644 index 00000000..ec2a02b7 --- /dev/null +++ b/src/stories-neo/AlertOctagon.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertOctagon from '../icons-neo/alert-octagon' + + const meta: Meta = { + component: AlertOctagon, + title: 'omega/AlertOctagon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/AlertTriangle.stories.tsx b/src/stories-neo/AlertTriangle.stories.tsx index 5f979c0d..31864693 100644 --- a/src/stories-neo/AlertTriangle.stories.tsx +++ b/src/stories-neo/AlertTriangle.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowDown.stories.tsx b/src/stories-neo/ArrowDown.stories.tsx index 9a1126d2..7b973ec8 100644 --- a/src/stories-neo/ArrowDown.stories.tsx +++ b/src/stories-neo/ArrowDown.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowLeft.stories.tsx b/src/stories-neo/ArrowLeft.stories.tsx index f451af1a..396ee563 100644 --- a/src/stories-neo/ArrowLeft.stories.tsx +++ b/src/stories-neo/ArrowLeft.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowNarrowLeft.stories.tsx b/src/stories-neo/ArrowNarrowLeft.stories.tsx index 7d99cc98..2b4eaf4d 100644 --- a/src/stories-neo/ArrowNarrowLeft.stories.tsx +++ b/src/stories-neo/ArrowNarrowLeft.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowNarrowRight.stories.tsx b/src/stories-neo/ArrowNarrowRight.stories.tsx index 77fb486a..1167f8bf 100644 --- a/src/stories-neo/ArrowNarrowRight.stories.tsx +++ b/src/stories-neo/ArrowNarrowRight.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowRight.stories.tsx b/src/stories-neo/ArrowRight.stories.tsx index f06a1773..897cb27c 100644 --- a/src/stories-neo/ArrowRight.stories.tsx +++ b/src/stories-neo/ArrowRight.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ArrowUp.stories.tsx b/src/stories-neo/ArrowUp.stories.tsx index c099f9a6..bfe216a9 100644 --- a/src/stories-neo/ArrowUp.stories.tsx +++ b/src/stories-neo/ArrowUp.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/Atom.stories.tsx b/src/stories-neo/Atom.stories.tsx new file mode 100644 index 00000000..35c8fda0 --- /dev/null +++ b/src/stories-neo/Atom.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Atom from '../icons-neo/atom' + + const meta: Meta = { + component: Atom, + title: 'omega/Atom', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Ban.stories.tsx b/src/stories-neo/Ban.stories.tsx new file mode 100644 index 00000000..a2f8ecbf --- /dev/null +++ b/src/stories-neo/Ban.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Ban from '../icons-neo/ban' + + const meta: Meta = { + component: Ban, + title: 'omega/Ban', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Bell.stories.tsx b/src/stories-neo/Bell.stories.tsx new file mode 100644 index 00000000..15636744 --- /dev/null +++ b/src/stories-neo/Bell.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Bell from '../icons-neo/bell' + + const meta: Meta = { + component: Bell, + title: 'omega/Bell', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellMinus.stories.tsx b/src/stories-neo/BellMinus.stories.tsx new file mode 100644 index 00000000..208f9d48 --- /dev/null +++ b/src/stories-neo/BellMinus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellMinus from '../icons-neo/bell-minus' + + const meta: Meta = { + component: BellMinus, + title: 'omega/BellMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellOff.stories.tsx b/src/stories-neo/BellOff.stories.tsx new file mode 100644 index 00000000..6d70c893 --- /dev/null +++ b/src/stories-neo/BellOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellOff from '../icons-neo/bell-off' + + const meta: Meta = { + component: BellOff, + title: 'omega/BellOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellPlus.stories.tsx b/src/stories-neo/BellPlus.stories.tsx new file mode 100644 index 00000000..e6678774 --- /dev/null +++ b/src/stories-neo/BellPlus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellPlus from '../icons-neo/bell-plus' + + const meta: Meta = { + component: BellPlus, + title: 'omega/BellPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellRinging.stories.tsx b/src/stories-neo/BellRinging.stories.tsx new file mode 100644 index 00000000..2d6823d4 --- /dev/null +++ b/src/stories-neo/BellRinging.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRinging from '../icons-neo/bell-ringing' + + const meta: Meta = { + component: BellRinging, + title: 'omega/BellRinging', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellRinging2.stories.tsx b/src/stories-neo/BellRinging2.stories.tsx new file mode 100644 index 00000000..389b423f --- /dev/null +++ b/src/stories-neo/BellRinging2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRinging2 from '../icons-neo/bell-ringing-2' + + const meta: Meta = { + component: BellRinging2, + title: 'omega/BellRinging2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BellX.stories.tsx b/src/stories-neo/BellX.stories.tsx new file mode 100644 index 00000000..440c94fc --- /dev/null +++ b/src/stories-neo/BellX.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellX from '../icons-neo/bell-x' + + const meta: Meta = { + component: BellX, + title: 'omega/BellX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BrandFacebook.stories.tsx b/src/stories-neo/BrandFacebook.stories.tsx new file mode 100644 index 00000000..c2d07d86 --- /dev/null +++ b/src/stories-neo/BrandFacebook.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandFacebook from '../icons-neo/brand-facebook' + + const meta: Meta = { + component: BrandFacebook, + title: 'omega/BrandFacebook', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BrandTwitter.stories.tsx b/src/stories-neo/BrandTwitter.stories.tsx new file mode 100644 index 00000000..79dab5f5 --- /dev/null +++ b/src/stories-neo/BrandTwitter.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandTwitter from '../icons-neo/brand-twitter' + + const meta: Meta = { + component: BrandTwitter, + title: 'omega/BrandTwitter', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BrandWhatsapp.stories.tsx b/src/stories-neo/BrandWhatsapp.stories.tsx new file mode 100644 index 00000000..77d8417e --- /dev/null +++ b/src/stories-neo/BrandWhatsapp.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandWhatsapp from '../icons-neo/brand-whatsapp' + + const meta: Meta = { + component: BrandWhatsapp, + title: 'omega/BrandWhatsapp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Bulb.stories.tsx b/src/stories-neo/Bulb.stories.tsx index b16ce707..98c2a1f8 100644 --- a/src/stories-neo/Bulb.stories.tsx +++ b/src/stories-neo/Bulb.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/BulbOff.stories.tsx b/src/stories-neo/BulbOff.stories.tsx index 99d433aa..2d4be2c5 100644 --- a/src/stories-neo/BulbOff.stories.tsx +++ b/src/stories-neo/BulbOff.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-neo/Check.stories.tsx new file mode 100644 index 00000000..a8a22f6e --- /dev/null +++ b/src/stories-neo/Check.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Check from '../icons-neo/check' + + const meta: Meta = { + component: Check, + title: 'omega/Check', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ChevronDown.stories.tsx b/src/stories-neo/ChevronDown.stories.tsx index afc268b7..373374ee 100644 --- a/src/stories-neo/ChevronDown.stories.tsx +++ b/src/stories-neo/ChevronDown.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ChevronLeft.stories.tsx b/src/stories-neo/ChevronLeft.stories.tsx index b8f91c45..6d485b5d 100644 --- a/src/stories-neo/ChevronLeft.stories.tsx +++ b/src/stories-neo/ChevronLeft.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ChevronRight.stories.tsx b/src/stories-neo/ChevronRight.stories.tsx index 091db388..67f2efee 100644 --- a/src/stories-neo/ChevronRight.stories.tsx +++ b/src/stories-neo/ChevronRight.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ChevronUp.stories.tsx b/src/stories-neo/ChevronUp.stories.tsx index 9099c549..9ce0a806 100644 --- a/src/stories-neo/ChevronUp.stories.tsx +++ b/src/stories-neo/ChevronUp.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ChevronsLeft.stories.tsx b/src/stories-neo/ChevronsLeft.stories.tsx new file mode 100644 index 00000000..53346fc3 --- /dev/null +++ b/src/stories-neo/ChevronsLeft.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsLeft from '../icons-neo/chevrons-left' + + const meta: Meta = { + component: ChevronsLeft, + title: 'omega/ChevronsLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ChevronsRight.stories.tsx b/src/stories-neo/ChevronsRight.stories.tsx new file mode 100644 index 00000000..0f44d9cd --- /dev/null +++ b/src/stories-neo/ChevronsRight.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsRight from '../icons-neo/chevrons-right' + + const meta: Meta = { + component: ChevronsRight, + title: 'omega/ChevronsRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CircleCheck.stories.tsx b/src/stories-neo/CircleCheck.stories.tsx index 52c52e93..69e615ae 100644 --- a/src/stories-neo/CircleCheck.stories.tsx +++ b/src/stories-neo/CircleCheck.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/Clock.stories.tsx b/src/stories-neo/Clock.stories.tsx new file mode 100644 index 00000000..efb90b4a --- /dev/null +++ b/src/stories-neo/Clock.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Clock from '../icons-neo/clock' + + const meta: Meta = { + component: Clock, + title: 'omega/Clock', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ColorSwatch.stories.tsx b/src/stories-neo/ColorSwatch.stories.tsx new file mode 100644 index 00000000..aed27f02 --- /dev/null +++ b/src/stories-neo/ColorSwatch.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ColorSwatch from '../icons-neo/color-swatch' + + const meta: Meta = { + component: ColorSwatch, + title: 'omega/ColorSwatch', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-neo/Confetti.stories.tsx new file mode 100644 index 00000000..24201a8b --- /dev/null +++ b/src/stories-neo/Confetti.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Confetti from '../icons-neo/confetti' + + const meta: Meta = { + component: Confetti, + title: 'omega/Confetti', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-neo/Copy.stories.tsx new file mode 100644 index 00000000..21c831c7 --- /dev/null +++ b/src/stories-neo/Copy.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Copy from '../icons-neo/copy' + + const meta: Meta = { + component: Copy, + title: 'omega/Copy', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-neo/Crown.stories.tsx new file mode 100644 index 00000000..63683980 --- /dev/null +++ b/src/stories-neo/Crown.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Crown from '../icons-neo/crown' + + const meta: Meta = { + component: Crown, + title: 'omega/Crown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CurrencyDollar.stories.tsx b/src/stories-neo/CurrencyDollar.stories.tsx new file mode 100644 index 00000000..bae15637 --- /dev/null +++ b/src/stories-neo/CurrencyDollar.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrencyDollar from '../icons-neo/currency-dollar' + + const meta: Meta = { + component: CurrencyDollar, + title: 'omega/CurrencyDollar', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Diamond.stories.tsx b/src/stories-neo/Diamond.stories.tsx new file mode 100644 index 00000000..56401d37 --- /dev/null +++ b/src/stories-neo/Diamond.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Diamond from '../icons-neo/diamond' + + const meta: Meta = { + component: Diamond, + title: 'omega/Diamond', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Discount.stories.tsx b/src/stories-neo/Discount.stories.tsx new file mode 100644 index 00000000..b26527b8 --- /dev/null +++ b/src/stories-neo/Discount.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Discount from '../icons-neo/discount' + + const meta: Meta = { + component: Discount, + title: 'omega/Discount', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Discount2.stories.tsx b/src/stories-neo/Discount2.stories.tsx new file mode 100644 index 00000000..0b2d83bc --- /dev/null +++ b/src/stories-neo/Discount2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Discount2 from '../icons-neo/discount-2' + + const meta: Meta = { + component: Discount2, + title: 'omega/Discount2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Download.stories.tsx b/src/stories-neo/Download.stories.tsx new file mode 100644 index 00000000..52290dfe --- /dev/null +++ b/src/stories-neo/Download.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Download from '../icons-neo/download' + + const meta: Meta = { + component: Download, + title: 'omega/Download', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ExternalLink.stories.tsx b/src/stories-neo/ExternalLink.stories.tsx new file mode 100644 index 00000000..eb008019 --- /dev/null +++ b/src/stories-neo/ExternalLink.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ExternalLink from '../icons-neo/external-link' + + const meta: Meta = { + component: ExternalLink, + title: 'omega/ExternalLink', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Eye.stories.tsx b/src/stories-neo/Eye.stories.tsx new file mode 100644 index 00000000..97c8cd85 --- /dev/null +++ b/src/stories-neo/Eye.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Eye from '../icons-neo/eye' + + const meta: Meta = { + component: Eye, + title: 'omega/Eye', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/EyeCheck.stories.tsx b/src/stories-neo/EyeCheck.stories.tsx new file mode 100644 index 00000000..449d9e35 --- /dev/null +++ b/src/stories-neo/EyeCheck.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeCheck from '../icons-neo/eye-check' + + const meta: Meta = { + component: EyeCheck, + title: 'omega/EyeCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/EyeOff.stories.tsx b/src/stories-neo/EyeOff.stories.tsx new file mode 100644 index 00000000..85d482fd --- /dev/null +++ b/src/stories-neo/EyeOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeOff from '../icons-neo/eye-off' + + const meta: Meta = { + component: EyeOff, + title: 'omega/EyeOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FileDownload.stories.tsx b/src/stories-neo/FileDownload.stories.tsx new file mode 100644 index 00000000..9299645e --- /dev/null +++ b/src/stories-neo/FileDownload.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileDownload from '../icons-neo/file-download' + + const meta: Meta = { + component: FileDownload, + title: 'omega/FileDownload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FileExport.stories.tsx b/src/stories-neo/FileExport.stories.tsx new file mode 100644 index 00000000..14208686 --- /dev/null +++ b/src/stories-neo/FileExport.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileExport from '../icons-neo/file-export' + + const meta: Meta = { + component: FileExport, + title: 'omega/FileExport', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FileReport.stories.tsx b/src/stories-neo/FileReport.stories.tsx new file mode 100644 index 00000000..9e8eb965 --- /dev/null +++ b/src/stories-neo/FileReport.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileReport from '../icons-neo/file-report' + + const meta: Meta = { + component: FileReport, + title: 'omega/FileReport', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FileSearch.stories.tsx b/src/stories-neo/FileSearch.stories.tsx new file mode 100644 index 00000000..ac61b035 --- /dev/null +++ b/src/stories-neo/FileSearch.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileSearch from '../icons-neo/file-search' + + const meta: Meta = { + component: FileSearch, + title: 'omega/FileSearch', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Flag.stories.tsx b/src/stories-neo/Flag.stories.tsx new file mode 100644 index 00000000..8b6985ea --- /dev/null +++ b/src/stories-neo/Flag.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Flag from '../icons-neo/flag' + + const meta: Meta = { + component: Flag, + title: 'omega/Flag', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Folder.stories.tsx b/src/stories-neo/Folder.stories.tsx new file mode 100644 index 00000000..1d1eb5fd --- /dev/null +++ b/src/stories-neo/Folder.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Folder from '../icons-neo/folder' + + const meta: Meta = { + component: Folder, + title: 'omega/Folder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderDownload.stories.tsx b/src/stories-neo/FolderDownload.stories.tsx new file mode 100644 index 00000000..f0d1398a --- /dev/null +++ b/src/stories-neo/FolderDownload.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderDownload from '../icons-neo/folder-download' + + const meta: Meta = { + component: FolderDownload, + title: 'omega/FolderDownload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderEye.stories.tsx b/src/stories-neo/FolderEye.stories.tsx new file mode 100644 index 00000000..2da81e67 --- /dev/null +++ b/src/stories-neo/FolderEye.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderEye from '../icons-neo/folder-eye' + + const meta: Meta = { + component: FolderEye, + title: 'omega/FolderEye', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderMinus.stories.tsx b/src/stories-neo/FolderMinus.stories.tsx new file mode 100644 index 00000000..8c1779a0 --- /dev/null +++ b/src/stories-neo/FolderMinus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderMinus from '../icons-neo/folder-minus' + + const meta: Meta = { + component: FolderMinus, + title: 'omega/FolderMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderOff.stories.tsx b/src/stories-neo/FolderOff.stories.tsx new file mode 100644 index 00000000..0d5c9bb5 --- /dev/null +++ b/src/stories-neo/FolderOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderOff from '../icons-neo/folder-off' + + const meta: Meta = { + component: FolderOff, + title: 'omega/FolderOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderPlus.stories.tsx b/src/stories-neo/FolderPlus.stories.tsx new file mode 100644 index 00000000..2d3c30bf --- /dev/null +++ b/src/stories-neo/FolderPlus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderPlus from '../icons-neo/folder-plus' + + const meta: Meta = { + component: FolderPlus, + title: 'omega/FolderPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderUpload.stories.tsx b/src/stories-neo/FolderUpload.stories.tsx new file mode 100644 index 00000000..6690ae53 --- /dev/null +++ b/src/stories-neo/FolderUpload.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderUpload from '../icons-neo/folder-upload' + + const meta: Meta = { + component: FolderUpload, + title: 'omega/FolderUpload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FolderX.stories.tsx b/src/stories-neo/FolderX.stories.tsx new file mode 100644 index 00000000..8f213086 --- /dev/null +++ b/src/stories-neo/FolderX.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderX from '../icons-neo/folder-x' + + const meta: Meta = { + component: FolderX, + title: 'omega/FolderX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Folders.stories.tsx b/src/stories-neo/Folders.stories.tsx new file mode 100644 index 00000000..8e633ccf --- /dev/null +++ b/src/stories-neo/Folders.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Folders from '../icons-neo/folders' + + const meta: Meta = { + component: Folders, + title: 'omega/Folders', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/GridDots.stories.tsx b/src/stories-neo/GridDots.stories.tsx new file mode 100644 index 00000000..cad10119 --- /dev/null +++ b/src/stories-neo/GridDots.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridDots from '../icons-neo/grid-dots' + + const meta: Meta = { + component: GridDots, + title: 'omega/GridDots', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Home2.stories.tsx b/src/stories-neo/Home2.stories.tsx new file mode 100644 index 00000000..738170b0 --- /dev/null +++ b/src/stories-neo/Home2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Home2 from '../icons-neo/home-2' + + const meta: Meta = { + component: Home2, + title: 'omega/Home2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/InfoCircle.stories.tsx b/src/stories-neo/InfoCircle.stories.tsx new file mode 100644 index 00000000..320d2a3b --- /dev/null +++ b/src/stories-neo/InfoCircle.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCircle from '../icons-neo/info-circle' + + const meta: Meta = { + component: InfoCircle, + title: 'omega/InfoCircle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/InfoSquare.stories.tsx b/src/stories-neo/InfoSquare.stories.tsx new file mode 100644 index 00000000..d3986b99 --- /dev/null +++ b/src/stories-neo/InfoSquare.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoSquare from '../icons-neo/info-square' + + const meta: Meta = { + component: InfoSquare, + title: 'omega/InfoSquare', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Loader.stories.tsx b/src/stories-neo/Loader.stories.tsx new file mode 100644 index 00000000..8d9e3169 --- /dev/null +++ b/src/stories-neo/Loader.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Loader from '../icons-neo/loader' + + const meta: Meta = { + component: Loader, + title: 'omega/Loader', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Lock.stories.tsx b/src/stories-neo/Lock.stories.tsx new file mode 100644 index 00000000..0f9f888a --- /dev/null +++ b/src/stories-neo/Lock.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Lock from '../icons-neo/lock' + + const meta: Meta = { + component: Lock, + title: 'omega/Lock', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Lock2.stories.tsx b/src/stories-neo/Lock2.stories.tsx new file mode 100644 index 00000000..0bd274d3 --- /dev/null +++ b/src/stories-neo/Lock2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Lock2 from '../icons-neo/lock-2' + + const meta: Meta = { + component: Lock2, + title: 'omega/Lock2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/LockOff.stories.tsx b/src/stories-neo/LockOff.stories.tsx new file mode 100644 index 00000000..09d5e030 --- /dev/null +++ b/src/stories-neo/LockOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOff from '../icons-neo/lock-off' + + const meta: Meta = { + component: LockOff, + title: 'omega/LockOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/LockOpen.stories.tsx b/src/stories-neo/LockOpen.stories.tsx new file mode 100644 index 00000000..ad41ae2b --- /dev/null +++ b/src/stories-neo/LockOpen.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOpen from '../icons-neo/lock-open' + + const meta: Meta = { + component: LockOpen, + title: 'omega/LockOpen', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Mail.stories.tsx b/src/stories-neo/Mail.stories.tsx new file mode 100644 index 00000000..b45233a6 --- /dev/null +++ b/src/stories-neo/Mail.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Mail from '../icons-neo/mail' + + const meta: Meta = { + component: Mail, + title: 'omega/Mail', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MoodCrazyHappy.stories.tsx b/src/stories-neo/MoodCrazyHappy.stories.tsx new file mode 100644 index 00000000..0a92dc12 --- /dev/null +++ b/src/stories-neo/MoodCrazyHappy.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodCrazyHappy from '../icons-neo/mood-crazy-happy' + + const meta: Meta = { + component: MoodCrazyHappy, + title: 'omega/MoodCrazyHappy', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MoodEmpty.stories.tsx b/src/stories-neo/MoodEmpty.stories.tsx new file mode 100644 index 00000000..4e8c2782 --- /dev/null +++ b/src/stories-neo/MoodEmpty.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodEmpty from '../icons-neo/mood-empty' + + const meta: Meta = { + component: MoodEmpty, + title: 'omega/MoodEmpty', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MoodSad.stories.tsx b/src/stories-neo/MoodSad.stories.tsx new file mode 100644 index 00000000..85f21b35 --- /dev/null +++ b/src/stories-neo/MoodSad.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSad from '../icons-neo/mood-sad' + + const meta: Meta = { + component: MoodSad, + title: 'omega/MoodSad', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MoodSmile.stories.tsx b/src/stories-neo/MoodSmile.stories.tsx new file mode 100644 index 00000000..a917ddab --- /dev/null +++ b/src/stories-neo/MoodSmile.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSmile from '../icons-neo/mood-smile' + + const meta: Meta = { + component: MoodSmile, + title: 'omega/MoodSmile', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MouseLeft.stories.tsx b/src/stories-neo/MouseLeft.stories.tsx new file mode 100644 index 00000000..e72da0e3 --- /dev/null +++ b/src/stories-neo/MouseLeft.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseLeft from '../icons-neo/mouse-left' + + const meta: Meta = { + component: MouseLeft, + title: 'omega/MouseLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MouseRight.stories.tsx b/src/stories-neo/MouseRight.stories.tsx new file mode 100644 index 00000000..d4ea6273 --- /dev/null +++ b/src/stories-neo/MouseRight.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseRight from '../icons-neo/mouse-right' + + const meta: Meta = { + component: MouseRight, + title: 'omega/MouseRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Palette.stories.tsx b/src/stories-neo/Palette.stories.tsx new file mode 100644 index 00000000..26029679 --- /dev/null +++ b/src/stories-neo/Palette.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Palette from '../icons-neo/palette' + + const meta: Meta = { + component: Palette, + title: 'omega/Palette', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Photo.stories.tsx b/src/stories-neo/Photo.stories.tsx new file mode 100644 index 00000000..a22e9c2a --- /dev/null +++ b/src/stories-neo/Photo.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Photo from '../icons-neo/photo' + + const meta: Meta = { + component: Photo, + title: 'omega/Photo', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/PhotoOff.stories.tsx b/src/stories-neo/PhotoOff.stories.tsx new file mode 100644 index 00000000..f248ab9c --- /dev/null +++ b/src/stories-neo/PhotoOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOff from '../icons-neo/photo-off' + + const meta: Meta = { + component: PhotoOff, + title: 'omega/PhotoOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/PhotoStack.stories.tsx b/src/stories-neo/PhotoStack.stories.tsx new file mode 100644 index 00000000..8b07b342 --- /dev/null +++ b/src/stories-neo/PhotoStack.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoStack from '../icons-neo/photo-stack' + + const meta: Meta = { + component: PhotoStack, + title: 'omega/PhotoStack', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/QuestionMark.stories.tsx b/src/stories-neo/QuestionMark.stories.tsx new file mode 100644 index 00000000..f7fa80ef --- /dev/null +++ b/src/stories-neo/QuestionMark.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import QuestionMark from '../icons-neo/question-mark' + + const meta: Meta = { + component: QuestionMark, + title: 'omega/QuestionMark', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Redeem.stories.tsx b/src/stories-neo/Redeem.stories.tsx new file mode 100644 index 00000000..e2495d7f --- /dev/null +++ b/src/stories-neo/Redeem.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Redeem from '../icons-neo/redeem' + + const meta: Meta = { + component: Redeem, + title: 'omega/Redeem', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Rotate90.stories.tsx b/src/stories-neo/Rotate90.stories.tsx new file mode 100644 index 00000000..ad2b5891 --- /dev/null +++ b/src/stories-neo/Rotate90.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Rotate90 from '../icons-neo/rotate-90' + + const meta: Meta = { + component: Rotate90, + title: 'omega/Rotate90', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ShoppingCart.stories.tsx b/src/stories-neo/ShoppingCart.stories.tsx index 98b1036d..a7d209ed 100644 --- a/src/stories-neo/ShoppingCart.stories.tsx +++ b/src/stories-neo/ShoppingCart.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/ShoppingCartDiscount.stories.tsx b/src/stories-neo/ShoppingCartDiscount.stories.tsx index 4e886815..a289bddc 100644 --- a/src/stories-neo/ShoppingCartDiscount.stories.tsx +++ b/src/stories-neo/ShoppingCartDiscount.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/stories-neo/Spray.stories.tsx b/src/stories-neo/Spray.stories.tsx new file mode 100644 index 00000000..e68ee580 --- /dev/null +++ b/src/stories-neo/Spray.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Spray from '../icons-neo/spray' + + const meta: Meta = { + component: Spray, + title: 'omega/Spray', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Stack.stories.tsx b/src/stories-neo/Stack.stories.tsx new file mode 100644 index 00000000..1624d404 --- /dev/null +++ b/src/stories-neo/Stack.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Stack from '../icons-neo/stack' + + const meta: Meta = { + component: Stack, + title: 'omega/Stack', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Stack2.stories.tsx b/src/stories-neo/Stack2.stories.tsx new file mode 100644 index 00000000..6ff820c2 --- /dev/null +++ b/src/stories-neo/Stack2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Stack2 from '../icons-neo/stack-2' + + const meta: Meta = { + component: Stack2, + title: 'omega/Stack2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Star.stories.tsx b/src/stories-neo/Star.stories.tsx new file mode 100644 index 00000000..72e799a1 --- /dev/null +++ b/src/stories-neo/Star.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star from '../icons-neo/star' + + const meta: Meta = { + component: Star, + title: 'omega/Star', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/StarOff.stories.tsx b/src/stories-neo/StarOff.stories.tsx new file mode 100644 index 00000000..fd434d95 --- /dev/null +++ b/src/stories-neo/StarOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarOff from '../icons-neo/star-off' + + const meta: Meta = { + component: StarOff, + title: 'omega/StarOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ThumbDown.stories.tsx b/src/stories-neo/ThumbDown.stories.tsx new file mode 100644 index 00000000..842b502f --- /dev/null +++ b/src/stories-neo/ThumbDown.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbDown from '../icons-neo/thumb-down' + + const meta: Meta = { + component: ThumbDown, + title: 'omega/ThumbDown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ThumbUp.stories.tsx b/src/stories-neo/ThumbUp.stories.tsx new file mode 100644 index 00000000..46c7c3db --- /dev/null +++ b/src/stories-neo/ThumbUp.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbUp from '../icons-neo/thumb-up' + + const meta: Meta = { + component: ThumbUp, + title: 'omega/ThumbUp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Trash.stories.tsx b/src/stories-neo/Trash.stories.tsx new file mode 100644 index 00000000..5a809a75 --- /dev/null +++ b/src/stories-neo/Trash.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Trash from '../icons-neo/trash' + + const meta: Meta = { + component: Trash, + title: 'omega/Trash', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/TrashOff.stories.tsx b/src/stories-neo/TrashOff.stories.tsx new file mode 100644 index 00000000..4322b0bb --- /dev/null +++ b/src/stories-neo/TrashOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TrashOff from '../icons-neo/trash-off' + + const meta: Meta = { + component: TrashOff, + title: 'omega/TrashOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Viewfinder.stories.tsx b/src/stories-neo/Viewfinder.stories.tsx new file mode 100644 index 00000000..ec6775bb --- /dev/null +++ b/src/stories-neo/Viewfinder.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Viewfinder from '../icons-neo/viewfinder' + + const meta: Meta = { + component: Viewfinder, + title: 'omega/Viewfinder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/World.stories.tsx b/src/stories-neo/World.stories.tsx new file mode 100644 index 00000000..bcc1c01b --- /dev/null +++ b/src/stories-neo/World.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import World from '../icons-neo/world' + + const meta: Meta = { + component: World, + title: 'omega/World', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 50, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/X.stories.tsx b/src/stories-neo/X.stories.tsx index feb2ca0d..fbba07ca 100644 --- a/src/stories-neo/X.stories.tsx +++ b/src/stories-neo/X.stories.tsx @@ -61,7 +61,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const ClassName: Story = { args: { - className: 'text-red-500', + className: 'text-red-400 stroke-1 hover:text-blue-400', }, } diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 442173dc..b47160b5 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -634,6 +634,11 @@ video { flex-shrink: 0; } +.rotate-90 { + --tw-rotate: 90deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } @@ -702,6 +707,10 @@ video { stroke-width: 2; } +.stroke-1 { + stroke-width: 1; +} + .p-2 { padding: 0.5rem; } @@ -731,6 +740,11 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-red-400 { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + .outline { outline-style: solid; } @@ -744,6 +758,11 @@ video { color: rgb(34 197 94 / var(--tw-text-opacity)); } +.hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + .group:hover .group-hover\:text-green-500 { --tw-text-opacity: 1; color: rgb(34 197 94 / var(--tw-text-opacity)); From 8351d388b8de2264e45f141d22933fd109475c3a Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 18:24:58 +0530 Subject: [PATCH 13/34] update: add all general icons --- icons-original/fill/scissors-fill.svg | 8 ++++++++ icons-original/{fill-outline => mix}/home-mix.svg | 0 .../layout-sidebar-right-mix.svg | 0 .../{fill-outline => mix}/none-selected.svg | 0 icons-original/{fill-outline => mix}/recull.svg | 0 icons-original/mix/star-fill.svg | 3 +++ icons-original/mix/star-off-fill.svg | 9 +++++++++ .../{fill-outline => mix}/upload-c1-cat.svg | 0 .../{fill-outline => mix}/upload-lr-cat.svg | 0 icons-original/outline/Import.svg | 12 ++++++++++++ icons-original/outline/search.svg | 11 +++++++++++ icons-original/outline/share.svg | 14 ++++++++++++++ .../outline/{stack-2.svg => stack-double.svg} | 0 .../outline/{stack.svg => stack-triple.svg} | 0 icons-original/outline/user-check.svg | 12 ++++++++++++ icons-original/outline/user-exclamation.svg | 13 +++++++++++++ icons-original/outline/user-minus.svg | 12 ++++++++++++ icons-original/outline/user-off.svg | 12 ++++++++++++ icons-original/outline/user-plus.svg | 12 ++++++++++++ icons-original/outline/user-x.svg | 12 ++++++++++++ icons-original/outline/user.svg | 11 +++++++++++ icons-original/outline/users.svg | 13 +++++++++++++ icons-original/weird/thunder.svg | 10 ++++++++++ icons-original/weird/twitter_color.svg | 1 + scripts/processSvg.mjs | 5 +++++ 25 files changed, 170 insertions(+) create mode 100644 icons-original/fill/scissors-fill.svg rename icons-original/{fill-outline => mix}/home-mix.svg (100%) rename icons-original/{fill-outline => mix}/layout-sidebar-right-mix.svg (100%) rename icons-original/{fill-outline => mix}/none-selected.svg (100%) rename icons-original/{fill-outline => mix}/recull.svg (100%) create mode 100644 icons-original/mix/star-fill.svg create mode 100644 icons-original/mix/star-off-fill.svg rename icons-original/{fill-outline => mix}/upload-c1-cat.svg (100%) rename icons-original/{fill-outline => mix}/upload-lr-cat.svg (100%) create mode 100644 icons-original/outline/Import.svg create mode 100644 icons-original/outline/search.svg create mode 100644 icons-original/outline/share.svg rename icons-original/outline/{stack-2.svg => stack-double.svg} (100%) rename icons-original/outline/{stack.svg => stack-triple.svg} (100%) create mode 100644 icons-original/outline/user-check.svg create mode 100644 icons-original/outline/user-exclamation.svg create mode 100644 icons-original/outline/user-minus.svg create mode 100644 icons-original/outline/user-off.svg create mode 100644 icons-original/outline/user-plus.svg create mode 100644 icons-original/outline/user-x.svg create mode 100644 icons-original/outline/user.svg create mode 100644 icons-original/outline/users.svg create mode 100644 icons-original/weird/thunder.svg create mode 100644 icons-original/weird/twitter_color.svg diff --git a/icons-original/fill/scissors-fill.svg b/icons-original/fill/scissors-fill.svg new file mode 100644 index 00000000..a3ed51b4 --- /dev/null +++ b/icons-original/fill/scissors-fill.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons-original/fill-outline/home-mix.svg b/icons-original/mix/home-mix.svg similarity index 100% rename from icons-original/fill-outline/home-mix.svg rename to icons-original/mix/home-mix.svg diff --git a/icons-original/fill-outline/layout-sidebar-right-mix.svg b/icons-original/mix/layout-sidebar-right-mix.svg similarity index 100% rename from icons-original/fill-outline/layout-sidebar-right-mix.svg rename to icons-original/mix/layout-sidebar-right-mix.svg diff --git a/icons-original/fill-outline/none-selected.svg b/icons-original/mix/none-selected.svg similarity index 100% rename from icons-original/fill-outline/none-selected.svg rename to icons-original/mix/none-selected.svg diff --git a/icons-original/fill-outline/recull.svg b/icons-original/mix/recull.svg similarity index 100% rename from icons-original/fill-outline/recull.svg rename to icons-original/mix/recull.svg diff --git a/icons-original/mix/star-fill.svg b/icons-original/mix/star-fill.svg new file mode 100644 index 00000000..29496555 --- /dev/null +++ b/icons-original/mix/star-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/mix/star-off-fill.svg b/icons-original/mix/star-off-fill.svg new file mode 100644 index 00000000..5dd1a153 --- /dev/null +++ b/icons-original/mix/star-off-fill.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/fill-outline/upload-c1-cat.svg b/icons-original/mix/upload-c1-cat.svg similarity index 100% rename from icons-original/fill-outline/upload-c1-cat.svg rename to icons-original/mix/upload-c1-cat.svg diff --git a/icons-original/fill-outline/upload-lr-cat.svg b/icons-original/mix/upload-lr-cat.svg similarity index 100% rename from icons-original/fill-outline/upload-lr-cat.svg rename to icons-original/mix/upload-lr-cat.svg diff --git a/icons-original/outline/Import.svg b/icons-original/outline/Import.svg new file mode 100644 index 00000000..86ef2a93 --- /dev/null +++ b/icons-original/outline/Import.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/search.svg b/icons-original/outline/search.svg new file mode 100644 index 00000000..95fcfd1e --- /dev/null +++ b/icons-original/outline/search.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/share.svg b/icons-original/outline/share.svg new file mode 100644 index 00000000..f57b9a9e --- /dev/null +++ b/icons-original/outline/share.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/stack-2.svg b/icons-original/outline/stack-double.svg similarity index 100% rename from icons-original/outline/stack-2.svg rename to icons-original/outline/stack-double.svg diff --git a/icons-original/outline/stack.svg b/icons-original/outline/stack-triple.svg similarity index 100% rename from icons-original/outline/stack.svg rename to icons-original/outline/stack-triple.svg diff --git a/icons-original/outline/user-check.svg b/icons-original/outline/user-check.svg new file mode 100644 index 00000000..138ffed9 --- /dev/null +++ b/icons-original/outline/user-check.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/user-exclamation.svg b/icons-original/outline/user-exclamation.svg new file mode 100644 index 00000000..37131163 --- /dev/null +++ b/icons-original/outline/user-exclamation.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/user-minus.svg b/icons-original/outline/user-minus.svg new file mode 100644 index 00000000..30e7bc6c --- /dev/null +++ b/icons-original/outline/user-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/user-off.svg b/icons-original/outline/user-off.svg new file mode 100644 index 00000000..5167dbf9 --- /dev/null +++ b/icons-original/outline/user-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/user-plus.svg b/icons-original/outline/user-plus.svg new file mode 100644 index 00000000..16c35dcd --- /dev/null +++ b/icons-original/outline/user-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/user-x.svg b/icons-original/outline/user-x.svg new file mode 100644 index 00000000..bc86e1ed --- /dev/null +++ b/icons-original/outline/user-x.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/user.svg b/icons-original/outline/user.svg new file mode 100644 index 00000000..aaaecef8 --- /dev/null +++ b/icons-original/outline/user.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/users.svg b/icons-original/outline/users.svg new file mode 100644 index 00000000..a33a0ba1 --- /dev/null +++ b/icons-original/outline/users.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/weird/thunder.svg b/icons-original/weird/thunder.svg new file mode 100644 index 00000000..b05093a3 --- /dev/null +++ b/icons-original/weird/thunder.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/weird/twitter_color.svg b/icons-original/weird/twitter_color.svg new file mode 100644 index 00000000..1ffb6235 --- /dev/null +++ b/icons-original/weird/twitter_color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 00c15e1f..314fddd1 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -80,3 +80,8 @@ function processSvg(svg, path) { } export default processSvg + +// to be replace +// stroke-linecap -> strokeLinecap +// stroke-linejoin -> strokeLinejoin +// clip-path -> clipPath From 3b64ce6bae830014156185dbb9e4822f8eba32d0 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 18:46:58 +0530 Subject: [PATCH 14/34] update: size props is working now --- icons-optimized/Import.svg | 12 +++ icons-optimized/adjustments-horizontal.svg | 8 +- icons-optimized/adjustments.svg | 18 +++++ icons-optimized/alarm.svg | 8 +- icons-optimized/alert-circle.svg | 8 +- icons-optimized/alert-octagon.svg | 8 +- icons-optimized/alert-triangle.svg | 8 +- icons-optimized/arrow-down.svg | 8 +- icons-optimized/arrow-left.svg | 8 +- icons-optimized/arrow-narrow-left.svg | 8 +- icons-optimized/arrow-narrow-right.svg | 8 +- icons-optimized/arrow-right.svg | 8 +- icons-optimized/arrow-up.svg | 8 +- icons-optimized/atom.svg | 8 +- icons-optimized/ban.svg | 8 +- icons-optimized/bell-minus.svg | 8 +- icons-optimized/bell-off.svg | 8 +- icons-optimized/bell-plus.svg | 8 +- icons-optimized/bell-ringing-2.svg | 8 +- icons-optimized/bell-ringing.svg | 8 +- icons-optimized/bell-x.svg | 8 +- icons-optimized/bell.svg | 8 +- icons-optimized/brand-facebook.svg | 8 +- icons-optimized/brand-twitter.svg | 8 +- icons-optimized/brand-whatsapp.svg | 8 +- icons-optimized/bulb-off.svg | 8 +- icons-optimized/bulb.svg | 8 +- icons-optimized/check.svg | 8 +- icons-optimized/chevron-down.svg | 8 +- icons-optimized/chevron-left.svg | 8 +- icons-optimized/chevron-right.svg | 8 +- icons-optimized/chevron-up.svg | 8 +- icons-optimized/chevrons-left.svg | 8 +- icons-optimized/chevrons-right.svg | 8 +- icons-optimized/circle-check.svg | 8 +- icons-optimized/clock.svg | 8 +- icons-optimized/color-swatch.svg | 8 +- icons-optimized/confetti.svg | 8 +- icons-optimized/copy.svg | 8 +- icons-optimized/crown.svg | 8 +- icons-optimized/currency-dollar.svg | 8 +- icons-optimized/diamond.svg | 8 +- icons-optimized/discount-2.svg | 8 +- icons-optimized/discount.svg | 8 +- icons-optimized/download.svg | 8 +- icons-optimized/external-link.svg | 8 +- icons-optimized/eye-check.svg | 8 +- icons-optimized/eye-off.svg | 8 +- icons-optimized/eye.svg | 8 +- icons-optimized/file-download.svg | 8 +- icons-optimized/file-export.svg | 8 +- icons-optimized/file-report.svg | 8 +- icons-optimized/file-search.svg | 8 +- icons-optimized/flag.svg | 8 +- icons-optimized/folder-download.svg | 8 +- icons-optimized/folder-eye.svg | 8 +- icons-optimized/folder-minus.svg | 8 +- icons-optimized/folder-off.svg | 8 +- icons-optimized/folder-plus.svg | 8 +- icons-optimized/folder-upload.svg | 8 +- icons-optimized/folder-x.svg | 8 +- icons-optimized/folder.svg | 8 +- icons-optimized/folders.svg | 8 +- icons-optimized/grid-dots.svg | 8 +- icons-optimized/home-2.svg | 8 +- icons-optimized/info-circle.svg | 8 +- icons-optimized/info-square.svg | 8 +- icons-optimized/loader.svg | 8 +- icons-optimized/lock-2.svg | 8 +- icons-optimized/lock-off.svg | 8 +- icons-optimized/lock-open.svg | 8 +- icons-optimized/lock.svg | 8 +- icons-optimized/mail.svg | 8 +- icons-optimized/mood-crazy-happy.svg | 8 +- icons-optimized/mood-empty.svg | 8 +- icons-optimized/mood-sad.svg | 8 +- icons-optimized/mood-smile.svg | 8 +- icons-optimized/mouse-left.svg | 8 +- icons-optimized/mouse-right.svg | 8 +- icons-optimized/palette.svg | 8 +- icons-optimized/photo-off.svg | 8 +- icons-optimized/photo-stack.svg | 8 +- icons-optimized/photo.svg | 8 +- icons-optimized/question-mark.svg | 8 +- icons-optimized/redeem.svg | 8 +- icons-optimized/rotate-90.svg | 8 +- icons-optimized/search.svg | 11 +++ icons-optimized/share.svg | 14 ++++ icons-optimized/shopping-cart-discount.svg | 8 +- icons-optimized/shopping-cart.svg | 8 +- icons-optimized/spray.svg | 8 +- icons-optimized/stack-double.svg | 11 +++ icons-optimized/stack-triple.svg | 12 +++ icons-optimized/star-off.svg | 8 +- icons-optimized/star.svg | 8 +- icons-optimized/thumb-down.svg | 8 +- icons-optimized/thumb-up.svg | 8 +- icons-optimized/trash-off.svg | 8 +- icons-optimized/trash.svg | 8 +- icons-optimized/user-check.svg | 12 +++ icons-optimized/user-exclamation.svg | 13 ++++ icons-optimized/user-minus.svg | 12 +++ icons-optimized/user-off.svg | 12 +++ icons-optimized/user-plus.svg | 12 +++ icons-optimized/user-x.svg | 12 +++ icons-optimized/user.svg | 11 +++ icons-optimized/users.svg | 13 ++++ icons-optimized/viewfinder.svg | 8 +- icons-optimized/world.svg | 8 +- icons-optimized/x.svg | 8 +- icons-original/outline/adjustments.svg | 18 +++++ scripts/exportStoryTemplate.mjs | 2 +- scripts/processSvg.mjs | 4 + src/Icon.ts | 6 +- src/icons-neo/Import.tsx | 30 +++++++ src/icons-neo/adjustments-horizontal.tsx | 2 - src/icons-neo/adjustments.tsx | 36 +++++++++ src/icons-neo/alarm.tsx | 2 - src/icons-neo/alert-circle.tsx | 2 - src/icons-neo/alert-octagon.tsx | 2 - src/icons-neo/alert-triangle.tsx | 2 - src/icons-neo/arrow-down.tsx | 2 - src/icons-neo/arrow-left.tsx | 2 - src/icons-neo/arrow-narrow-left.tsx | 2 - src/icons-neo/arrow-narrow-right.tsx | 2 - src/icons-neo/arrow-right.tsx | 2 - src/icons-neo/arrow-up.tsx | 2 - src/icons-neo/atom.tsx | 2 - src/icons-neo/ban.tsx | 2 - src/icons-neo/bell-minus.tsx | 2 - src/icons-neo/bell-off.tsx | 2 - src/icons-neo/bell-plus.tsx | 2 - src/icons-neo/bell-ringing-2.tsx | 2 - src/icons-neo/bell-ringing.tsx | 2 - src/icons-neo/bell-x.tsx | 2 - src/icons-neo/bell.tsx | 2 - src/icons-neo/brand-facebook.tsx | 2 - src/icons-neo/brand-twitter.tsx | 2 - src/icons-neo/brand-whatsapp.tsx | 2 - src/icons-neo/bulb-off.tsx | 2 - src/icons-neo/bulb.tsx | 2 - src/icons-neo/check.tsx | 2 - src/icons-neo/chevron-down.tsx | 2 - src/icons-neo/chevron-left.tsx | 2 - src/icons-neo/chevron-right.tsx | 2 - src/icons-neo/chevron-up.tsx | 2 - src/icons-neo/chevrons-left.tsx | 2 - src/icons-neo/chevrons-right.tsx | 2 - src/icons-neo/circle-check.tsx | 2 - src/icons-neo/clock.tsx | 2 - src/icons-neo/color-swatch.tsx | 2 - src/icons-neo/confetti.tsx | 2 - src/icons-neo/copy.tsx | 2 - src/icons-neo/crown.tsx | 2 - src/icons-neo/currency-dollar.tsx | 2 - src/icons-neo/diamond.tsx | 2 - src/icons-neo/discount-2.tsx | 2 - src/icons-neo/discount.tsx | 2 - src/icons-neo/download.tsx | 2 - src/icons-neo/external-link.tsx | 2 - src/icons-neo/eye-check.tsx | 2 - src/icons-neo/eye-off.tsx | 2 - src/icons-neo/eye.tsx | 2 - src/icons-neo/file-download.tsx | 2 - src/icons-neo/file-export.tsx | 2 - src/icons-neo/file-report.tsx | 2 - src/icons-neo/file-search.tsx | 2 - src/icons-neo/flag.tsx | 2 - src/icons-neo/folder-download.tsx | 2 - src/icons-neo/folder-eye.tsx | 2 - src/icons-neo/folder-minus.tsx | 2 - src/icons-neo/folder-off.tsx | 2 - src/icons-neo/folder-plus.tsx | 2 - src/icons-neo/folder-upload.tsx | 2 - src/icons-neo/folder-x.tsx | 2 - src/icons-neo/folder.tsx | 2 - src/icons-neo/folders.tsx | 2 - src/icons-neo/grid-dots.tsx | 2 - src/icons-neo/home-2.tsx | 2 - src/icons-neo/index.ts | 14 ++++ src/icons-neo/info-circle.tsx | 2 - src/icons-neo/info-square.tsx | 2 - src/icons-neo/loader.tsx | 2 - src/icons-neo/lock-2.tsx | 2 - src/icons-neo/lock-off.tsx | 2 - src/icons-neo/lock-open.tsx | 2 - src/icons-neo/lock.tsx | 2 - src/icons-neo/mail.tsx | 2 - src/icons-neo/mood-crazy-happy.tsx | 2 - src/icons-neo/mood-empty.tsx | 2 - src/icons-neo/mood-sad.tsx | 2 - src/icons-neo/mood-smile.tsx | 2 - src/icons-neo/mouse-left.tsx | 2 - src/icons-neo/mouse-right.tsx | 2 - src/icons-neo/palette.tsx | 2 - src/icons-neo/photo-off.tsx | 2 - src/icons-neo/photo-stack.tsx | 2 - src/icons-neo/photo.tsx | 2 - src/icons-neo/question-mark.tsx | 2 - src/icons-neo/redeem.tsx | 2 - src/icons-neo/rotate-90.tsx | 2 - src/icons-neo/search.tsx | 29 +++++++ src/icons-neo/share.tsx | 32 ++++++++ src/icons-neo/shopping-cart-discount.tsx | 2 - src/icons-neo/shopping-cart.tsx | 2 - src/icons-neo/spray.tsx | 2 - src/icons-neo/stack-double.tsx | 29 +++++++ src/icons-neo/stack-triple.tsx | 30 +++++++ src/icons-neo/star-off.tsx | 2 - src/icons-neo/star.tsx | 2 - src/icons-neo/thumb-down.tsx | 2 - src/icons-neo/thumb-up.tsx | 2 - src/icons-neo/trash-off.tsx | 2 - src/icons-neo/trash.tsx | 2 - src/icons-neo/user-check.tsx | 30 +++++++ src/icons-neo/user-exclamation.tsx | 31 ++++++++ src/icons-neo/user-minus.tsx | 30 +++++++ src/icons-neo/user-off.tsx | 30 +++++++ src/icons-neo/user-plus.tsx | 30 +++++++ src/icons-neo/user-x.tsx | 30 +++++++ src/icons-neo/user.tsx | 29 +++++++ src/icons-neo/users.tsx | 31 ++++++++ src/icons-neo/viewfinder.tsx | 2 - src/icons-neo/world.tsx | 2 - src/icons-neo/x.tsx | 2 - src/stories-neo/Adjustments.stories.tsx | 68 ++++++++++++++++ .../AdjustmentsHorizontal.stories.tsx | 2 +- src/stories-neo/Alarm.stories.tsx | 2 +- src/stories-neo/AlertCircle.stories.tsx | 2 +- src/stories-neo/AlertOctagon.stories.tsx | 2 +- src/stories-neo/AlertTriangle.stories.tsx | 2 +- src/stories-neo/ArrowDown.stories.tsx | 2 +- src/stories-neo/ArrowLeft.stories.tsx | 2 +- src/stories-neo/ArrowNarrowLeft.stories.tsx | 2 +- src/stories-neo/ArrowNarrowRight.stories.tsx | 2 +- src/stories-neo/ArrowRight.stories.tsx | 2 +- src/stories-neo/ArrowUp.stories.tsx | 2 +- src/stories-neo/Atom.stories.tsx | 2 +- src/stories-neo/Ban.stories.tsx | 2 +- src/stories-neo/Bell.stories.tsx | 2 +- src/stories-neo/BellMinus.stories.tsx | 2 +- src/stories-neo/BellOff.stories.tsx | 2 +- src/stories-neo/BellPlus.stories.tsx | 2 +- src/stories-neo/BellRinging.stories.tsx | 2 +- src/stories-neo/BellRinging2.stories.tsx | 2 +- src/stories-neo/BellX.stories.tsx | 2 +- src/stories-neo/BrandFacebook.stories.tsx | 2 +- src/stories-neo/BrandTwitter.stories.tsx | 2 +- src/stories-neo/BrandWhatsapp.stories.tsx | 2 +- src/stories-neo/Bulb.stories.tsx | 2 +- src/stories-neo/BulbOff.stories.tsx | 2 +- src/stories-neo/Check.stories.tsx | 2 +- src/stories-neo/ChevronDown.stories.tsx | 2 +- src/stories-neo/ChevronLeft.stories.tsx | 2 +- src/stories-neo/ChevronRight.stories.tsx | 2 +- src/stories-neo/ChevronUp.stories.tsx | 2 +- src/stories-neo/ChevronsLeft.stories.tsx | 2 +- src/stories-neo/ChevronsRight.stories.tsx | 2 +- src/stories-neo/CircleCheck.stories.tsx | 2 +- src/stories-neo/Clock.stories.tsx | 2 +- src/stories-neo/ColorSwatch.stories.tsx | 2 +- src/stories-neo/Confetti.stories.tsx | 2 +- src/stories-neo/Copy.stories.tsx | 2 +- src/stories-neo/Crown.stories.tsx | 2 +- src/stories-neo/CurrencyDollar.stories.tsx | 2 +- src/stories-neo/Diamond.stories.tsx | 2 +- src/stories-neo/Discount.stories.tsx | 2 +- src/stories-neo/Discount2.stories.tsx | 2 +- src/stories-neo/Download.stories.tsx | 2 +- src/stories-neo/ExternalLink.stories.tsx | 2 +- src/stories-neo/Eye.stories.tsx | 2 +- src/stories-neo/EyeCheck.stories.tsx | 2 +- src/stories-neo/EyeOff.stories.tsx | 2 +- src/stories-neo/FileDownload.stories.tsx | 2 +- src/stories-neo/FileExport.stories.tsx | 2 +- src/stories-neo/FileReport.stories.tsx | 2 +- src/stories-neo/FileSearch.stories.tsx | 2 +- src/stories-neo/Flag.stories.tsx | 2 +- src/stories-neo/Folder.stories.tsx | 2 +- src/stories-neo/FolderDownload.stories.tsx | 2 +- src/stories-neo/FolderEye.stories.tsx | 2 +- src/stories-neo/FolderMinus.stories.tsx | 2 +- src/stories-neo/FolderOff.stories.tsx | 2 +- src/stories-neo/FolderPlus.stories.tsx | 2 +- src/stories-neo/FolderUpload.stories.tsx | 2 +- src/stories-neo/FolderX.stories.tsx | 2 +- src/stories-neo/Folders.stories.tsx | 2 +- src/stories-neo/GridDots.stories.tsx | 2 +- src/stories-neo/Home2.stories.tsx | 2 +- src/stories-neo/Import.stories.tsx | 68 ++++++++++++++++ src/stories-neo/InfoCircle.stories.tsx | 2 +- src/stories-neo/InfoSquare.stories.tsx | 2 +- src/stories-neo/Loader.stories.tsx | 2 +- src/stories-neo/Lock.stories.tsx | 2 +- src/stories-neo/Lock2.stories.tsx | 2 +- src/stories-neo/LockOff.stories.tsx | 2 +- src/stories-neo/LockOpen.stories.tsx | 2 +- src/stories-neo/Mail.stories.tsx | 2 +- src/stories-neo/MoodCrazyHappy.stories.tsx | 2 +- src/stories-neo/MoodEmpty.stories.tsx | 2 +- src/stories-neo/MoodSad.stories.tsx | 2 +- src/stories-neo/MoodSmile.stories.tsx | 2 +- src/stories-neo/MouseLeft.stories.tsx | 2 +- src/stories-neo/MouseRight.stories.tsx | 2 +- src/stories-neo/Palette.stories.tsx | 2 +- src/stories-neo/Photo.stories.tsx | 2 +- src/stories-neo/PhotoOff.stories.tsx | 2 +- src/stories-neo/PhotoStack.stories.tsx | 2 +- src/stories-neo/QuestionMark.stories.tsx | 2 +- src/stories-neo/Redeem.stories.tsx | 2 +- src/stories-neo/Rotate90.stories.tsx | 2 +- src/stories-neo/Search.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Share.stories.tsx | 68 ++++++++++++++++ src/stories-neo/ShoppingCart.stories.tsx | 2 +- .../ShoppingCartDiscount.stories.tsx | 2 +- src/stories-neo/Spray.stories.tsx | 2 +- src/stories-neo/Stack.stories.tsx | 2 +- src/stories-neo/Stack2.stories.tsx | 2 +- src/stories-neo/StackDouble.stories.tsx | 68 ++++++++++++++++ src/stories-neo/StackTriple.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Star.stories.tsx | 2 +- src/stories-neo/StarOff.stories.tsx | 2 +- src/stories-neo/ThumbDown.stories.tsx | 2 +- src/stories-neo/ThumbUp.stories.tsx | 2 +- src/stories-neo/Trash.stories.tsx | 2 +- src/stories-neo/TrashOff.stories.tsx | 2 +- src/stories-neo/User.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserCheck.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserExclamation.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserMinus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserOff.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserPlus.stories.tsx | 68 ++++++++++++++++ src/stories-neo/UserX.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Users.stories.tsx | 68 ++++++++++++++++ src/stories-neo/Viewfinder.stories.tsx | 2 +- src/stories-neo/World.stories.tsx | 2 +- src/stories-neo/X.stories.tsx | 2 +- src/styles/tailwind.css | 78 +++---------------- 338 files changed, 1799 insertions(+), 1033 deletions(-) create mode 100644 icons-optimized/Import.svg create mode 100644 icons-optimized/adjustments.svg create mode 100644 icons-optimized/search.svg create mode 100644 icons-optimized/share.svg create mode 100644 icons-optimized/stack-double.svg create mode 100644 icons-optimized/stack-triple.svg create mode 100644 icons-optimized/user-check.svg create mode 100644 icons-optimized/user-exclamation.svg create mode 100644 icons-optimized/user-minus.svg create mode 100644 icons-optimized/user-off.svg create mode 100644 icons-optimized/user-plus.svg create mode 100644 icons-optimized/user-x.svg create mode 100644 icons-optimized/user.svg create mode 100644 icons-optimized/users.svg create mode 100644 icons-original/outline/adjustments.svg create mode 100644 src/icons-neo/Import.tsx create mode 100644 src/icons-neo/adjustments.tsx create mode 100644 src/icons-neo/search.tsx create mode 100644 src/icons-neo/share.tsx create mode 100644 src/icons-neo/stack-double.tsx create mode 100644 src/icons-neo/stack-triple.tsx create mode 100644 src/icons-neo/user-check.tsx create mode 100644 src/icons-neo/user-exclamation.tsx create mode 100644 src/icons-neo/user-minus.tsx create mode 100644 src/icons-neo/user-off.tsx create mode 100644 src/icons-neo/user-plus.tsx create mode 100644 src/icons-neo/user-x.tsx create mode 100644 src/icons-neo/user.tsx create mode 100644 src/icons-neo/users.tsx create mode 100644 src/stories-neo/Adjustments.stories.tsx create mode 100644 src/stories-neo/Import.stories.tsx create mode 100644 src/stories-neo/Search.stories.tsx create mode 100644 src/stories-neo/Share.stories.tsx create mode 100644 src/stories-neo/StackDouble.stories.tsx create mode 100644 src/stories-neo/StackTriple.stories.tsx create mode 100644 src/stories-neo/User.stories.tsx create mode 100644 src/stories-neo/UserCheck.stories.tsx create mode 100644 src/stories-neo/UserExclamation.stories.tsx create mode 100644 src/stories-neo/UserMinus.stories.tsx create mode 100644 src/stories-neo/UserOff.stories.tsx create mode 100644 src/stories-neo/UserPlus.stories.tsx create mode 100644 src/stories-neo/UserX.stories.tsx create mode 100644 src/stories-neo/Users.stories.tsx diff --git a/icons-optimized/Import.svg b/icons-optimized/Import.svg new file mode 100644 index 00000000..a42b451f --- /dev/null +++ b/icons-optimized/Import.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg index 28a418ce..30179e00 100644 --- a/icons-optimized/adjustments-horizontal.svg +++ b/icons-optimized/adjustments-horizontal.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/adjustments.svg b/icons-optimized/adjustments.svg new file mode 100644 index 00000000..0023446f --- /dev/null +++ b/icons-optimized/adjustments.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/alarm.svg b/icons-optimized/alarm.svg index 4b22a0eb..bbd24741 100644 --- a/icons-optimized/alarm.svg +++ b/icons-optimized/alarm.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle.svg index ec811e16..5ba0b704 100644 --- a/icons-optimized/alert-circle.svg +++ b/icons-optimized/alert-circle.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/alert-octagon.svg b/icons-optimized/alert-octagon.svg index fb521d84..64e4bc5f 100644 --- a/icons-optimized/alert-octagon.svg +++ b/icons-optimized/alert-octagon.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg index 21d92a03..80fb824f 100644 --- a/icons-optimized/alert-triangle.svg +++ b/icons-optimized/alert-triangle.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down.svg index ec66b692..69983d0c 100644 --- a/icons-optimized/arrow-down.svg +++ b/icons-optimized/arrow-down.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left.svg index 1d4d2d3a..a3650ecb 100644 --- a/icons-optimized/arrow-left.svg +++ b/icons-optimized/arrow-left.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left.svg index 775e28ae..d27b1429 100644 --- a/icons-optimized/arrow-narrow-left.svg +++ b/icons-optimized/arrow-narrow-left.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right.svg index ae85d6c7..03f095fd 100644 --- a/icons-optimized/arrow-narrow-right.svg +++ b/icons-optimized/arrow-narrow-right.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right.svg index d3459fe0..554569ae 100644 --- a/icons-optimized/arrow-right.svg +++ b/icons-optimized/arrow-right.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up.svg index 8fc5d459..e2b3e66c 100644 --- a/icons-optimized/arrow-up.svg +++ b/icons-optimized/arrow-up.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/atom.svg b/icons-optimized/atom.svg index 6340317e..811184f1 100644 --- a/icons-optimized/atom.svg +++ b/icons-optimized/atom.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/ban.svg b/icons-optimized/ban.svg index 06f208b1..4c4dfcd8 100644 --- a/icons-optimized/ban.svg +++ b/icons-optimized/ban.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-minus.svg b/icons-optimized/bell-minus.svg index 3bddaca8..03c63293 100644 --- a/icons-optimized/bell-minus.svg +++ b/icons-optimized/bell-minus.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-off.svg b/icons-optimized/bell-off.svg index 8e6ddf86..18fd7870 100644 --- a/icons-optimized/bell-off.svg +++ b/icons-optimized/bell-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-plus.svg b/icons-optimized/bell-plus.svg index bebe5d46..b66b9c37 100644 --- a/icons-optimized/bell-plus.svg +++ b/icons-optimized/bell-plus.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-ringing-2.svg b/icons-optimized/bell-ringing-2.svg index fd9ef90e..5adf2461 100644 --- a/icons-optimized/bell-ringing-2.svg +++ b/icons-optimized/bell-ringing-2.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-ringing.svg b/icons-optimized/bell-ringing.svg index 00b459f2..750c2289 100644 --- a/icons-optimized/bell-ringing.svg +++ b/icons-optimized/bell-ringing.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell-x.svg b/icons-optimized/bell-x.svg index 817ca720..9eb04ec6 100644 --- a/icons-optimized/bell-x.svg +++ b/icons-optimized/bell-x.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bell.svg b/icons-optimized/bell.svg index 52195ffc..48a4352f 100644 --- a/icons-optimized/bell.svg +++ b/icons-optimized/bell.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/brand-facebook.svg b/icons-optimized/brand-facebook.svg index 26e8cabe..62ddc064 100644 --- a/icons-optimized/brand-facebook.svg +++ b/icons-optimized/brand-facebook.svg @@ -1,10 +1,4 @@ - + + + diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off.svg index 8ca8836a..1a634c7d 100644 --- a/icons-optimized/bulb-off.svg +++ b/icons-optimized/bulb-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb.svg index d567f0f6..5b6fbf75 100644 --- a/icons-optimized/bulb.svg +++ b/icons-optimized/bulb.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/check.svg b/icons-optimized/check.svg index 929e645b..c3e4cc88 100644 --- a/icons-optimized/check.svg +++ b/icons-optimized/check.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg index b7bcb899..89cdd4b6 100644 --- a/icons-optimized/chevron-down.svg +++ b/icons-optimized/chevron-down.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg index 3acdda8e..e65a1eaa 100644 --- a/icons-optimized/chevron-left.svg +++ b/icons-optimized/chevron-left.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg index f511cbf6..5a7d150e 100644 --- a/icons-optimized/chevron-right.svg +++ b/icons-optimized/chevron-right.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg index 8c44ac3a..88a2b1ae 100644 --- a/icons-optimized/chevron-up.svg +++ b/icons-optimized/chevron-up.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevrons-left.svg b/icons-optimized/chevrons-left.svg index ab445412..5d149ef0 100644 --- a/icons-optimized/chevrons-left.svg +++ b/icons-optimized/chevrons-left.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/chevrons-right.svg b/icons-optimized/chevrons-right.svg index a531016c..557139e1 100644 --- a/icons-optimized/chevrons-right.svg +++ b/icons-optimized/chevrons-right.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check.svg index b5d5f423..b79835c6 100644 --- a/icons-optimized/circle-check.svg +++ b/icons-optimized/circle-check.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/clock.svg b/icons-optimized/clock.svg index 1c9e808f..d75b8eb9 100644 --- a/icons-optimized/clock.svg +++ b/icons-optimized/clock.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/color-swatch.svg b/icons-optimized/color-swatch.svg index e8a1d362..ceb1affb 100644 --- a/icons-optimized/color-swatch.svg +++ b/icons-optimized/color-swatch.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/confetti.svg b/icons-optimized/confetti.svg index eb102c02..f70cb1cc 100644 --- a/icons-optimized/confetti.svg +++ b/icons-optimized/confetti.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/copy.svg b/icons-optimized/copy.svg index 95d5643b..d2687d00 100644 --- a/icons-optimized/copy.svg +++ b/icons-optimized/copy.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/crown.svg b/icons-optimized/crown.svg index e63845dd..b3072580 100644 --- a/icons-optimized/crown.svg +++ b/icons-optimized/crown.svg @@ -1,10 +1,4 @@ - + + diff --git a/icons-optimized/diamond.svg b/icons-optimized/diamond.svg index 8f608b7e..5dffd4f6 100644 --- a/icons-optimized/diamond.svg +++ b/icons-optimized/diamond.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/discount-2.svg b/icons-optimized/discount-2.svg index 30c2dcb9..6a81c637 100644 --- a/icons-optimized/discount-2.svg +++ b/icons-optimized/discount-2.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/discount.svg b/icons-optimized/discount.svg index a31b0dbf..c202ceff 100644 --- a/icons-optimized/discount.svg +++ b/icons-optimized/discount.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/download.svg b/icons-optimized/download.svg index b200efc5..a42b451f 100644 --- a/icons-optimized/download.svg +++ b/icons-optimized/download.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/external-link.svg b/icons-optimized/external-link.svg index 453b7de6..118dc490 100644 --- a/icons-optimized/external-link.svg +++ b/icons-optimized/external-link.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/eye-check.svg b/icons-optimized/eye-check.svg index cc7b5faf..a80dabd7 100644 --- a/icons-optimized/eye-check.svg +++ b/icons-optimized/eye-check.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/eye-off.svg b/icons-optimized/eye-off.svg index 470f72e3..3ed8ad28 100644 --- a/icons-optimized/eye-off.svg +++ b/icons-optimized/eye-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/eye.svg b/icons-optimized/eye.svg index 0d19b87b..791be93e 100644 --- a/icons-optimized/eye.svg +++ b/icons-optimized/eye.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/file-download.svg b/icons-optimized/file-download.svg index d570b4f9..9a233458 100644 --- a/icons-optimized/file-download.svg +++ b/icons-optimized/file-download.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/file-export.svg b/icons-optimized/file-export.svg index d0a11bd8..f3c3ee4c 100644 --- a/icons-optimized/file-export.svg +++ b/icons-optimized/file-export.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/file-report.svg b/icons-optimized/file-report.svg index 897a2d03..62f8576e 100644 --- a/icons-optimized/file-report.svg +++ b/icons-optimized/file-report.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/file-search.svg b/icons-optimized/file-search.svg index 427bac97..3855de56 100644 --- a/icons-optimized/file-search.svg +++ b/icons-optimized/file-search.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/flag.svg b/icons-optimized/flag.svg index 63e91be7..ced11160 100644 --- a/icons-optimized/flag.svg +++ b/icons-optimized/flag.svg @@ -1,10 +1,4 @@ - + + diff --git a/icons-optimized/folder-eye.svg b/icons-optimized/folder-eye.svg index 4cb460f0..997243bf 100644 --- a/icons-optimized/folder-eye.svg +++ b/icons-optimized/folder-eye.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder-minus.svg b/icons-optimized/folder-minus.svg index d1da1c85..9c72671b 100644 --- a/icons-optimized/folder-minus.svg +++ b/icons-optimized/folder-minus.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder-off.svg b/icons-optimized/folder-off.svg index 47100d16..735f439f 100644 --- a/icons-optimized/folder-off.svg +++ b/icons-optimized/folder-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder-plus.svg b/icons-optimized/folder-plus.svg index a93b65f1..71470b7a 100644 --- a/icons-optimized/folder-plus.svg +++ b/icons-optimized/folder-plus.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder-upload.svg b/icons-optimized/folder-upload.svg index ac9a5cb1..88cb4431 100644 --- a/icons-optimized/folder-upload.svg +++ b/icons-optimized/folder-upload.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder-x.svg b/icons-optimized/folder-x.svg index 47fa1b91..12aaade6 100644 --- a/icons-optimized/folder-x.svg +++ b/icons-optimized/folder-x.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/folder.svg b/icons-optimized/folder.svg index e3b414cb..61b6221a 100644 --- a/icons-optimized/folder.svg +++ b/icons-optimized/folder.svg @@ -1,10 +1,4 @@ - + + diff --git a/icons-optimized/grid-dots.svg b/icons-optimized/grid-dots.svg index bf5b2a3a..71157b8b 100644 --- a/icons-optimized/grid-dots.svg +++ b/icons-optimized/grid-dots.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/home-2.svg b/icons-optimized/home-2.svg index 5ab36c8e..742b5e3c 100644 --- a/icons-optimized/home-2.svg +++ b/icons-optimized/home-2.svg @@ -1,10 +1,4 @@ - + + diff --git a/icons-optimized/info-square.svg b/icons-optimized/info-square.svg index 265cd205..d7a416cf 100644 --- a/icons-optimized/info-square.svg +++ b/icons-optimized/info-square.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/loader.svg b/icons-optimized/loader.svg index 34fcae87..07ac63ff 100644 --- a/icons-optimized/loader.svg +++ b/icons-optimized/loader.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/lock-2.svg b/icons-optimized/lock-2.svg index eab9a77a..77ae6d65 100644 --- a/icons-optimized/lock-2.svg +++ b/icons-optimized/lock-2.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/lock-off.svg b/icons-optimized/lock-off.svg index 2e54faab..9891100f 100644 --- a/icons-optimized/lock-off.svg +++ b/icons-optimized/lock-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/lock-open.svg b/icons-optimized/lock-open.svg index c5c8d74e..4b9cd286 100644 --- a/icons-optimized/lock-open.svg +++ b/icons-optimized/lock-open.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/lock.svg b/icons-optimized/lock.svg index 2ff6f6aa..c729229a 100644 --- a/icons-optimized/lock.svg +++ b/icons-optimized/lock.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mail.svg b/icons-optimized/mail.svg index 9cf9df66..fe9e14ca 100644 --- a/icons-optimized/mail.svg +++ b/icons-optimized/mail.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mood-crazy-happy.svg b/icons-optimized/mood-crazy-happy.svg index 7efadfd9..d399ee81 100644 --- a/icons-optimized/mood-crazy-happy.svg +++ b/icons-optimized/mood-crazy-happy.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mood-empty.svg b/icons-optimized/mood-empty.svg index 884a7d74..c204bfb7 100644 --- a/icons-optimized/mood-empty.svg +++ b/icons-optimized/mood-empty.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mood-sad.svg b/icons-optimized/mood-sad.svg index fa78a56d..dd4156ef 100644 --- a/icons-optimized/mood-sad.svg +++ b/icons-optimized/mood-sad.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mood-smile.svg b/icons-optimized/mood-smile.svg index 07400297..363f0cd6 100644 --- a/icons-optimized/mood-smile.svg +++ b/icons-optimized/mood-smile.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/mouse-left.svg b/icons-optimized/mouse-left.svg index 1394f9c0..662f586b 100644 --- a/icons-optimized/mouse-left.svg +++ b/icons-optimized/mouse-left.svg @@ -1,10 +1,4 @@ - + + + diff --git a/icons-optimized/photo-off.svg b/icons-optimized/photo-off.svg index 2ff98daf..42400f57 100644 --- a/icons-optimized/photo-off.svg +++ b/icons-optimized/photo-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/photo-stack.svg b/icons-optimized/photo-stack.svg index bbc38523..be965096 100644 --- a/icons-optimized/photo-stack.svg +++ b/icons-optimized/photo-stack.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/photo.svg b/icons-optimized/photo.svg index e35a0cd3..8c00ca2b 100644 --- a/icons-optimized/photo.svg +++ b/icons-optimized/photo.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/question-mark.svg b/icons-optimized/question-mark.svg index 96ebddd7..5a7748db 100644 --- a/icons-optimized/question-mark.svg +++ b/icons-optimized/question-mark.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/redeem.svg b/icons-optimized/redeem.svg index fff1e2ea..35bccc20 100644 --- a/icons-optimized/redeem.svg +++ b/icons-optimized/redeem.svg @@ -1,10 +1,4 @@ - + + diff --git a/icons-optimized/search.svg b/icons-optimized/search.svg new file mode 100644 index 00000000..25596cd2 --- /dev/null +++ b/icons-optimized/search.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/share.svg b/icons-optimized/share.svg new file mode 100644 index 00000000..5b8bf102 --- /dev/null +++ b/icons-optimized/share.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount.svg index d69e7ba1..fd3842fd 100644 --- a/icons-optimized/shopping-cart-discount.svg +++ b/icons-optimized/shopping-cart-discount.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart.svg index 53fa5536..fc7e4890 100644 --- a/icons-optimized/shopping-cart.svg +++ b/icons-optimized/shopping-cart.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/spray.svg b/icons-optimized/spray.svg index dea9b74d..980bd0f9 100644 --- a/icons-optimized/spray.svg +++ b/icons-optimized/spray.svg @@ -1,10 +1,4 @@ - + + + + + + + + + + + diff --git a/icons-optimized/stack-triple.svg b/icons-optimized/stack-triple.svg new file mode 100644 index 00000000..b22d6c8c --- /dev/null +++ b/icons-optimized/stack-triple.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/star-off.svg b/icons-optimized/star-off.svg index e0778f45..62720bae 100644 --- a/icons-optimized/star-off.svg +++ b/icons-optimized/star-off.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/star.svg b/icons-optimized/star.svg index 76052397..3866280f 100644 --- a/icons-optimized/star.svg +++ b/icons-optimized/star.svg @@ -1,10 +1,4 @@ - + + + + diff --git a/icons-optimized/trash.svg b/icons-optimized/trash.svg index 9124103d..e88b5435 100644 --- a/icons-optimized/trash.svg +++ b/icons-optimized/trash.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/user-check.svg b/icons-optimized/user-check.svg new file mode 100644 index 00000000..b8d72b65 --- /dev/null +++ b/icons-optimized/user-check.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-exclamation.svg b/icons-optimized/user-exclamation.svg new file mode 100644 index 00000000..3949c55f --- /dev/null +++ b/icons-optimized/user-exclamation.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/user-minus.svg b/icons-optimized/user-minus.svg new file mode 100644 index 00000000..fae6c674 --- /dev/null +++ b/icons-optimized/user-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-off.svg b/icons-optimized/user-off.svg new file mode 100644 index 00000000..c5a16d94 --- /dev/null +++ b/icons-optimized/user-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-plus.svg b/icons-optimized/user-plus.svg new file mode 100644 index 00000000..8d6ff522 --- /dev/null +++ b/icons-optimized/user-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-x.svg b/icons-optimized/user-x.svg new file mode 100644 index 00000000..80994dbf --- /dev/null +++ b/icons-optimized/user-x.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user.svg b/icons-optimized/user.svg new file mode 100644 index 00000000..f3da9fb0 --- /dev/null +++ b/icons-optimized/user.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/users.svg b/icons-optimized/users.svg new file mode 100644 index 00000000..00f85d1f --- /dev/null +++ b/icons-optimized/users.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/viewfinder.svg b/icons-optimized/viewfinder.svg index c561a921..2459e667 100644 --- a/icons-optimized/viewfinder.svg +++ b/icons-optimized/viewfinder.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/world.svg b/icons-optimized/world.svg index ba2f3c8b..8e5becc3 100644 --- a/icons-optimized/world.svg +++ b/icons-optimized/world.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-optimized/x.svg b/icons-optimized/x.svg index 98a75b49..8b6572a1 100644 --- a/icons-optimized/x.svg +++ b/icons-optimized/x.svg @@ -1,10 +1,4 @@ - + diff --git a/icons-original/outline/adjustments.svg b/icons-original/outline/adjustments.svg new file mode 100644 index 00000000..32903cbe --- /dev/null +++ b/icons-original/outline/adjustments.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index e473f3fb..bdafcb1a 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -60,7 +60,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 314fddd1..119ff659 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -27,6 +27,10 @@ async function optimizeSvg(svg, path) { attrs: '(stroke|stroke-width)', }, }, + { + name: 'removeDimensions', + }, + // custom plugin // { // name: 'replaceStroke', diff --git a/src/Icon.ts b/src/Icon.ts index 437c5b7c..b4695fc4 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -23,10 +23,7 @@ interface IconComponentProps extends ASIProps { * @returns {ForwardRefExoticComponent} LucideIcon */ const Icon = forwardRef( - ( - { color = 'currentColor', size = 24, inActive = false, fillColor = 'none', className, children, originalAttributes, svgChildren, ...rest }, - ref, - ) => { + ({ color = 'currentColor', size, inActive = false, fillColor = 'none', className, children, originalAttributes, svgChildren, ...rest }, ref) => { return createElement( 'svg', { @@ -34,6 +31,7 @@ const Icon = forwardRef( ...defaultAttributes, ...originalAttributes, stroke: inActive ? '#777777' : color, + ...(size ? { style: { width: size, height: 'auto' } } : {}), fill: fillColor, className, ...rest, diff --git a/src/icons-neo/Import.tsx b/src/icons-neo/Import.tsx new file mode 100644 index 00000000..930894ed --- /dev/null +++ b/src/icons-neo/Import.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Import = createASIcon( + "Import", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Import; diff --git a/src/icons-neo/adjustments-horizontal.tsx b/src/icons-neo/adjustments-horizontal.tsx index be5138f2..550bd0c9 100644 --- a/src/icons-neo/adjustments-horizontal.tsx +++ b/src/icons-neo/adjustments-horizontal.tsx @@ -5,8 +5,6 @@ const AdjustmentsHorizontal = createASIcon( "AdjustmentsHorizontal", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/adjustments.tsx b/src/icons-neo/adjustments.tsx new file mode 100644 index 00000000..f397b03d --- /dev/null +++ b/src/icons-neo/adjustments.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Adjustments = createASIcon( + "Adjustments", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , +); + +export default Adjustments; diff --git a/src/icons-neo/alarm.tsx b/src/icons-neo/alarm.tsx index 68523497..9f814899 100644 --- a/src/icons-neo/alarm.tsx +++ b/src/icons-neo/alarm.tsx @@ -5,8 +5,6 @@ const Alarm = createASIcon( "Alarm", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-neo/alert-circle.tsx index f58d89b4..af966b54 100644 --- a/src/icons-neo/alert-circle.tsx +++ b/src/icons-neo/alert-circle.tsx @@ -5,8 +5,6 @@ const AlertCircle = createASIcon( "AlertCircle", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/alert-octagon.tsx b/src/icons-neo/alert-octagon.tsx index 2fceb54c..a758f4a3 100644 --- a/src/icons-neo/alert-octagon.tsx +++ b/src/icons-neo/alert-octagon.tsx @@ -5,8 +5,6 @@ const AlertOctagon = createASIcon( "AlertOctagon", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/alert-triangle.tsx b/src/icons-neo/alert-triangle.tsx index 4b1fe674..6e274d74 100644 --- a/src/icons-neo/alert-triangle.tsx +++ b/src/icons-neo/alert-triangle.tsx @@ -5,8 +5,6 @@ const AlertTriangle = createASIcon( "AlertTriangle", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-down.tsx b/src/icons-neo/arrow-down.tsx index ba8febe1..c2513781 100644 --- a/src/icons-neo/arrow-down.tsx +++ b/src/icons-neo/arrow-down.tsx @@ -5,8 +5,6 @@ const ArrowDown = createASIcon( "ArrowDown", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-left.tsx b/src/icons-neo/arrow-left.tsx index 8629a838..1e716d54 100644 --- a/src/icons-neo/arrow-left.tsx +++ b/src/icons-neo/arrow-left.tsx @@ -5,8 +5,6 @@ const ArrowLeft = createASIcon( "ArrowLeft", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-narrow-left.tsx b/src/icons-neo/arrow-narrow-left.tsx index 4eedee0f..5c7e8864 100644 --- a/src/icons-neo/arrow-narrow-left.tsx +++ b/src/icons-neo/arrow-narrow-left.tsx @@ -5,8 +5,6 @@ const ArrowNarrowLeft = createASIcon( "ArrowNarrowLeft", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-narrow-right.tsx b/src/icons-neo/arrow-narrow-right.tsx index 6a8ad26e..4483fb0f 100644 --- a/src/icons-neo/arrow-narrow-right.tsx +++ b/src/icons-neo/arrow-narrow-right.tsx @@ -5,8 +5,6 @@ const ArrowNarrowRight = createASIcon( "ArrowNarrowRight", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-neo/arrow-right.tsx index bef4df6e..f8121174 100644 --- a/src/icons-neo/arrow-right.tsx +++ b/src/icons-neo/arrow-right.tsx @@ -5,8 +5,6 @@ const ArrowRight = createASIcon( "ArrowRight", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/arrow-up.tsx b/src/icons-neo/arrow-up.tsx index 67b8f26b..93ddaaca 100644 --- a/src/icons-neo/arrow-up.tsx +++ b/src/icons-neo/arrow-up.tsx @@ -5,8 +5,6 @@ const ArrowUp = createASIcon( "ArrowUp", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/atom.tsx b/src/icons-neo/atom.tsx index d4b1756a..4b6b0698 100644 --- a/src/icons-neo/atom.tsx +++ b/src/icons-neo/atom.tsx @@ -5,8 +5,6 @@ const Atom = createASIcon( "Atom", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/ban.tsx b/src/icons-neo/ban.tsx index 314967d8..90ccf4e9 100644 --- a/src/icons-neo/ban.tsx +++ b/src/icons-neo/ban.tsx @@ -5,8 +5,6 @@ const Ban = createASIcon( "Ban", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-minus.tsx b/src/icons-neo/bell-minus.tsx index 737f4d46..2f773a70 100644 --- a/src/icons-neo/bell-minus.tsx +++ b/src/icons-neo/bell-minus.tsx @@ -5,8 +5,6 @@ const BellMinus = createASIcon( "BellMinus", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-off.tsx b/src/icons-neo/bell-off.tsx index 8e5ce209..65823aa1 100644 --- a/src/icons-neo/bell-off.tsx +++ b/src/icons-neo/bell-off.tsx @@ -5,8 +5,6 @@ const BellOff = createASIcon( "BellOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-plus.tsx b/src/icons-neo/bell-plus.tsx index f502edd7..5e344863 100644 --- a/src/icons-neo/bell-plus.tsx +++ b/src/icons-neo/bell-plus.tsx @@ -5,8 +5,6 @@ const BellPlus = createASIcon( "BellPlus", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-ringing-2.tsx b/src/icons-neo/bell-ringing-2.tsx index 71f568a3..a5e58ccf 100644 --- a/src/icons-neo/bell-ringing-2.tsx +++ b/src/icons-neo/bell-ringing-2.tsx @@ -5,8 +5,6 @@ const BellRinging2 = createASIcon( "BellRinging2", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-ringing.tsx b/src/icons-neo/bell-ringing.tsx index f7c65c27..6baa4943 100644 --- a/src/icons-neo/bell-ringing.tsx +++ b/src/icons-neo/bell-ringing.tsx @@ -5,8 +5,6 @@ const BellRinging = createASIcon( "BellRinging", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell-x.tsx b/src/icons-neo/bell-x.tsx index b070e1c2..94f96237 100644 --- a/src/icons-neo/bell-x.tsx +++ b/src/icons-neo/bell-x.tsx @@ -5,8 +5,6 @@ const BellX = createASIcon( "BellX", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bell.tsx b/src/icons-neo/bell.tsx index d93277de..7d4f77ea 100644 --- a/src/icons-neo/bell.tsx +++ b/src/icons-neo/bell.tsx @@ -5,8 +5,6 @@ const Bell = createASIcon( "Bell", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/brand-facebook.tsx b/src/icons-neo/brand-facebook.tsx index 73d2dd13..699bd690 100644 --- a/src/icons-neo/brand-facebook.tsx +++ b/src/icons-neo/brand-facebook.tsx @@ -5,8 +5,6 @@ const BrandFacebook = createASIcon( "BrandFacebook", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/brand-twitter.tsx b/src/icons-neo/brand-twitter.tsx index 200050e4..91d7d475 100644 --- a/src/icons-neo/brand-twitter.tsx +++ b/src/icons-neo/brand-twitter.tsx @@ -5,8 +5,6 @@ const BrandTwitter = createASIcon( "BrandTwitter", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/brand-whatsapp.tsx b/src/icons-neo/brand-whatsapp.tsx index 05ab7127..de124e8c 100644 --- a/src/icons-neo/brand-whatsapp.tsx +++ b/src/icons-neo/brand-whatsapp.tsx @@ -5,8 +5,6 @@ const BrandWhatsapp = createASIcon( "BrandWhatsapp", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bulb-off.tsx b/src/icons-neo/bulb-off.tsx index 314af868..4f94fd59 100644 --- a/src/icons-neo/bulb-off.tsx +++ b/src/icons-neo/bulb-off.tsx @@ -5,8 +5,6 @@ const BulbOff = createASIcon( "BulbOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/bulb.tsx b/src/icons-neo/bulb.tsx index 40c71e74..e2095d7f 100644 --- a/src/icons-neo/bulb.tsx +++ b/src/icons-neo/bulb.tsx @@ -5,8 +5,6 @@ const Bulb = createASIcon( "Bulb", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/check.tsx b/src/icons-neo/check.tsx index 03b85231..98260935 100644 --- a/src/icons-neo/check.tsx +++ b/src/icons-neo/check.tsx @@ -5,8 +5,6 @@ const Check = createASIcon( "Check", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevron-down.tsx b/src/icons-neo/chevron-down.tsx index 44dd33bc..c8f8ad81 100644 --- a/src/icons-neo/chevron-down.tsx +++ b/src/icons-neo/chevron-down.tsx @@ -5,8 +5,6 @@ const ChevronDown = createASIcon( "ChevronDown", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevron-left.tsx b/src/icons-neo/chevron-left.tsx index da563a79..bb50e0b0 100644 --- a/src/icons-neo/chevron-left.tsx +++ b/src/icons-neo/chevron-left.tsx @@ -5,8 +5,6 @@ const ChevronLeft = createASIcon( "ChevronLeft", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevron-right.tsx b/src/icons-neo/chevron-right.tsx index 706e7bff..5e23b559 100644 --- a/src/icons-neo/chevron-right.tsx +++ b/src/icons-neo/chevron-right.tsx @@ -5,8 +5,6 @@ const ChevronRight = createASIcon( "ChevronRight", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevron-up.tsx b/src/icons-neo/chevron-up.tsx index 11b05592..0b23fa7c 100644 --- a/src/icons-neo/chevron-up.tsx +++ b/src/icons-neo/chevron-up.tsx @@ -5,8 +5,6 @@ const ChevronUp = createASIcon( "ChevronUp", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevrons-left.tsx b/src/icons-neo/chevrons-left.tsx index 3ca014c0..b35bcd57 100644 --- a/src/icons-neo/chevrons-left.tsx +++ b/src/icons-neo/chevrons-left.tsx @@ -5,8 +5,6 @@ const ChevronsLeft = createASIcon( "ChevronsLeft", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/chevrons-right.tsx b/src/icons-neo/chevrons-right.tsx index 80c5b3ca..c09015d5 100644 --- a/src/icons-neo/chevrons-right.tsx +++ b/src/icons-neo/chevrons-right.tsx @@ -5,8 +5,6 @@ const ChevronsRight = createASIcon( "ChevronsRight", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/circle-check.tsx b/src/icons-neo/circle-check.tsx index ae5d2065..dcd40089 100644 --- a/src/icons-neo/circle-check.tsx +++ b/src/icons-neo/circle-check.tsx @@ -5,8 +5,6 @@ const CircleCheck = createASIcon( "CircleCheck", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/clock.tsx b/src/icons-neo/clock.tsx index 6a90ce97..49f19451 100644 --- a/src/icons-neo/clock.tsx +++ b/src/icons-neo/clock.tsx @@ -5,8 +5,6 @@ const Clock = createASIcon( "Clock", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/color-swatch.tsx b/src/icons-neo/color-swatch.tsx index 86d45879..daed5450 100644 --- a/src/icons-neo/color-swatch.tsx +++ b/src/icons-neo/color-swatch.tsx @@ -5,8 +5,6 @@ const ColorSwatch = createASIcon( "ColorSwatch", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/confetti.tsx b/src/icons-neo/confetti.tsx index 8ea1d09c..744ada2b 100644 --- a/src/icons-neo/confetti.tsx +++ b/src/icons-neo/confetti.tsx @@ -5,8 +5,6 @@ const Confetti = createASIcon( "Confetti", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/copy.tsx b/src/icons-neo/copy.tsx index 4ea79c42..dbcf8bcc 100644 --- a/src/icons-neo/copy.tsx +++ b/src/icons-neo/copy.tsx @@ -5,8 +5,6 @@ const Copy = createASIcon( "Copy", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/crown.tsx b/src/icons-neo/crown.tsx index 438573d5..9e13ea6d 100644 --- a/src/icons-neo/crown.tsx +++ b/src/icons-neo/crown.tsx @@ -5,8 +5,6 @@ const Crown = createASIcon( "Crown", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/currency-dollar.tsx b/src/icons-neo/currency-dollar.tsx index 9674a04a..fe83052b 100644 --- a/src/icons-neo/currency-dollar.tsx +++ b/src/icons-neo/currency-dollar.tsx @@ -5,8 +5,6 @@ const CurrencyDollar = createASIcon( "CurrencyDollar", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/diamond.tsx b/src/icons-neo/diamond.tsx index bef63574..5bb0d5e0 100644 --- a/src/icons-neo/diamond.tsx +++ b/src/icons-neo/diamond.tsx @@ -5,8 +5,6 @@ const Diamond = createASIcon( "Diamond", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/discount-2.tsx b/src/icons-neo/discount-2.tsx index d7ff8707..5b3ef4e9 100644 --- a/src/icons-neo/discount-2.tsx +++ b/src/icons-neo/discount-2.tsx @@ -5,8 +5,6 @@ const Discount2 = createASIcon( "Discount2", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/discount.tsx b/src/icons-neo/discount.tsx index 742f1047..2e1297f9 100644 --- a/src/icons-neo/discount.tsx +++ b/src/icons-neo/discount.tsx @@ -5,8 +5,6 @@ const Discount = createASIcon( "Discount", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/download.tsx b/src/icons-neo/download.tsx index e1e41d12..91fd3ed3 100644 --- a/src/icons-neo/download.tsx +++ b/src/icons-neo/download.tsx @@ -5,8 +5,6 @@ const Download = createASIcon( "Download", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/external-link.tsx b/src/icons-neo/external-link.tsx index c8464b98..0a027839 100644 --- a/src/icons-neo/external-link.tsx +++ b/src/icons-neo/external-link.tsx @@ -5,8 +5,6 @@ const ExternalLink = createASIcon( "ExternalLink", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/eye-check.tsx b/src/icons-neo/eye-check.tsx index 449f4af0..c47d1d9b 100644 --- a/src/icons-neo/eye-check.tsx +++ b/src/icons-neo/eye-check.tsx @@ -5,8 +5,6 @@ const EyeCheck = createASIcon( "EyeCheck", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/eye-off.tsx b/src/icons-neo/eye-off.tsx index 6b1554f8..6b1bbeb8 100644 --- a/src/icons-neo/eye-off.tsx +++ b/src/icons-neo/eye-off.tsx @@ -5,8 +5,6 @@ const EyeOff = createASIcon( "EyeOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/eye.tsx b/src/icons-neo/eye.tsx index a814eb4e..f7b5b6bb 100644 --- a/src/icons-neo/eye.tsx +++ b/src/icons-neo/eye.tsx @@ -5,8 +5,6 @@ const Eye = createASIcon( "Eye", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/file-download.tsx b/src/icons-neo/file-download.tsx index ae1f9592..3ae0c0f3 100644 --- a/src/icons-neo/file-download.tsx +++ b/src/icons-neo/file-download.tsx @@ -5,8 +5,6 @@ const FileDownload = createASIcon( "FileDownload", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/file-export.tsx b/src/icons-neo/file-export.tsx index c180a053..bfe481b1 100644 --- a/src/icons-neo/file-export.tsx +++ b/src/icons-neo/file-export.tsx @@ -5,8 +5,6 @@ const FileExport = createASIcon( "FileExport", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/file-report.tsx b/src/icons-neo/file-report.tsx index 0e5a5af6..5df304c4 100644 --- a/src/icons-neo/file-report.tsx +++ b/src/icons-neo/file-report.tsx @@ -5,8 +5,6 @@ const FileReport = createASIcon( "FileReport", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/file-search.tsx b/src/icons-neo/file-search.tsx index a57e642c..7a0e8b41 100644 --- a/src/icons-neo/file-search.tsx +++ b/src/icons-neo/file-search.tsx @@ -5,8 +5,6 @@ const FileSearch = createASIcon( "FileSearch", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/flag.tsx b/src/icons-neo/flag.tsx index ba804c2d..44bc6403 100644 --- a/src/icons-neo/flag.tsx +++ b/src/icons-neo/flag.tsx @@ -5,8 +5,6 @@ const Flag = createASIcon( "Flag", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-download.tsx b/src/icons-neo/folder-download.tsx index 53a88854..120b38ef 100644 --- a/src/icons-neo/folder-download.tsx +++ b/src/icons-neo/folder-download.tsx @@ -5,8 +5,6 @@ const FolderDownload = createASIcon( "FolderDownload", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-eye.tsx b/src/icons-neo/folder-eye.tsx index f72da5d4..6c501951 100644 --- a/src/icons-neo/folder-eye.tsx +++ b/src/icons-neo/folder-eye.tsx @@ -5,8 +5,6 @@ const FolderEye = createASIcon( "FolderEye", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-minus.tsx b/src/icons-neo/folder-minus.tsx index 745e12c8..4a19f8c6 100644 --- a/src/icons-neo/folder-minus.tsx +++ b/src/icons-neo/folder-minus.tsx @@ -5,8 +5,6 @@ const FolderMinus = createASIcon( "FolderMinus", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-off.tsx b/src/icons-neo/folder-off.tsx index f4c4ead1..7c584392 100644 --- a/src/icons-neo/folder-off.tsx +++ b/src/icons-neo/folder-off.tsx @@ -5,8 +5,6 @@ const FolderOff = createASIcon( "FolderOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-plus.tsx b/src/icons-neo/folder-plus.tsx index e6f36c46..741a213e 100644 --- a/src/icons-neo/folder-plus.tsx +++ b/src/icons-neo/folder-plus.tsx @@ -5,8 +5,6 @@ const FolderPlus = createASIcon( "FolderPlus", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-upload.tsx b/src/icons-neo/folder-upload.tsx index 36c96596..82571043 100644 --- a/src/icons-neo/folder-upload.tsx +++ b/src/icons-neo/folder-upload.tsx @@ -5,8 +5,6 @@ const FolderUpload = createASIcon( "FolderUpload", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder-x.tsx b/src/icons-neo/folder-x.tsx index 2430c465..881b39b4 100644 --- a/src/icons-neo/folder-x.tsx +++ b/src/icons-neo/folder-x.tsx @@ -5,8 +5,6 @@ const FolderX = createASIcon( "FolderX", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folder.tsx b/src/icons-neo/folder.tsx index 48872be6..1c4be506 100644 --- a/src/icons-neo/folder.tsx +++ b/src/icons-neo/folder.tsx @@ -5,8 +5,6 @@ const Folder = createASIcon( "Folder", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/folders.tsx b/src/icons-neo/folders.tsx index 083ceb91..2b565d8b 100644 --- a/src/icons-neo/folders.tsx +++ b/src/icons-neo/folders.tsx @@ -5,8 +5,6 @@ const Folders = createASIcon( "Folders", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/grid-dots.tsx b/src/icons-neo/grid-dots.tsx index 5a535490..ced9cc11 100644 --- a/src/icons-neo/grid-dots.tsx +++ b/src/icons-neo/grid-dots.tsx @@ -5,8 +5,6 @@ const GridDots = createASIcon( "GridDots", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/home-2.tsx b/src/icons-neo/home-2.tsx index 19d9925a..b735269e 100644 --- a/src/icons-neo/home-2.tsx +++ b/src/icons-neo/home-2.tsx @@ -5,8 +5,6 @@ const Home2 = createASIcon( "Home2", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index 3e2c13da..fb825d23 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -1,4 +1,6 @@ +export { default as Import } from './Import'; export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; +export { default as Adjustments } from './adjustments'; export { default as Alarm } from './alarm'; export { default as AlertCircle } from './alert-circle'; export { default as AlertOctagon } from './alert-octagon'; @@ -82,10 +84,14 @@ export { default as Photo } from './photo'; export { default as QuestionMark } from './question-mark'; export { default as Redeem } from './redeem'; export { default as Rotate90 } from './rotate-90'; +export { default as Search } from './search'; +export { default as Share } from './share'; export { default as ShoppingCartDiscount } from './shopping-cart-discount'; export { default as ShoppingCart } from './shopping-cart'; export { default as Spray } from './spray'; export { default as Stack2 } from './stack-2'; +export { default as StackDouble } from './stack-double'; +export { default as StackTriple } from './stack-triple'; export { default as Stack } from './stack'; export { default as StarOff } from './star-off'; export { default as Star } from './star'; @@ -93,6 +99,14 @@ export { default as ThumbDown } from './thumb-down'; export { default as ThumbUp } from './thumb-up'; export { default as TrashOff } from './trash-off'; export { default as Trash } from './trash'; +export { default as UserCheck } from './user-check'; +export { default as UserExclamation } from './user-exclamation'; +export { default as UserMinus } from './user-minus'; +export { default as UserOff } from './user-off'; +export { default as UserPlus } from './user-plus'; +export { default as UserX } from './user-x'; +export { default as User } from './user'; +export { default as Users } from './users'; export { default as Viewfinder } from './viewfinder'; export { default as World } from './world'; export { default as X } from './x'; diff --git a/src/icons-neo/info-circle.tsx b/src/icons-neo/info-circle.tsx index 4fda2186..e312d934 100644 --- a/src/icons-neo/info-circle.tsx +++ b/src/icons-neo/info-circle.tsx @@ -5,8 +5,6 @@ const InfoCircle = createASIcon( "InfoCircle", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/info-square.tsx b/src/icons-neo/info-square.tsx index 2e91f499..ed65f48b 100644 --- a/src/icons-neo/info-square.tsx +++ b/src/icons-neo/info-square.tsx @@ -5,8 +5,6 @@ const InfoSquare = createASIcon( "InfoSquare", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/loader.tsx b/src/icons-neo/loader.tsx index 8754c2dc..f79f48cd 100644 --- a/src/icons-neo/loader.tsx +++ b/src/icons-neo/loader.tsx @@ -5,8 +5,6 @@ const Loader = createASIcon( "Loader", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/lock-2.tsx b/src/icons-neo/lock-2.tsx index 01a1d723..93ed731b 100644 --- a/src/icons-neo/lock-2.tsx +++ b/src/icons-neo/lock-2.tsx @@ -5,8 +5,6 @@ const Lock2 = createASIcon( "Lock2", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/lock-off.tsx b/src/icons-neo/lock-off.tsx index 9f1e3494..f1367990 100644 --- a/src/icons-neo/lock-off.tsx +++ b/src/icons-neo/lock-off.tsx @@ -5,8 +5,6 @@ const LockOff = createASIcon( "LockOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/lock-open.tsx b/src/icons-neo/lock-open.tsx index 8ddbd5ca..274b3e7b 100644 --- a/src/icons-neo/lock-open.tsx +++ b/src/icons-neo/lock-open.tsx @@ -5,8 +5,6 @@ const LockOpen = createASIcon( "LockOpen", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/lock.tsx b/src/icons-neo/lock.tsx index af4347be..b4bd13eb 100644 --- a/src/icons-neo/lock.tsx +++ b/src/icons-neo/lock.tsx @@ -5,8 +5,6 @@ const Lock = createASIcon( "Lock", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/mail.tsx b/src/icons-neo/mail.tsx index 87863ad7..2abc389a 100644 --- a/src/icons-neo/mail.tsx +++ b/src/icons-neo/mail.tsx @@ -5,8 +5,6 @@ const Mail = createASIcon( "Mail", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/mood-crazy-happy.tsx b/src/icons-neo/mood-crazy-happy.tsx index 0a36b314..ef0f574c 100644 --- a/src/icons-neo/mood-crazy-happy.tsx +++ b/src/icons-neo/mood-crazy-happy.tsx @@ -5,8 +5,6 @@ const MoodCrazyHappy = createASIcon( "MoodCrazyHappy", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/mood-empty.tsx b/src/icons-neo/mood-empty.tsx index 4466c144..4eeef6f7 100644 --- a/src/icons-neo/mood-empty.tsx +++ b/src/icons-neo/mood-empty.tsx @@ -5,8 +5,6 @@ const MoodEmpty = createASIcon( "MoodEmpty", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/mood-sad.tsx b/src/icons-neo/mood-sad.tsx index cc317de7..59ea30f0 100644 --- a/src/icons-neo/mood-sad.tsx +++ b/src/icons-neo/mood-sad.tsx @@ -5,8 +5,6 @@ const MoodSad = createASIcon( "MoodSad", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/mood-smile.tsx b/src/icons-neo/mood-smile.tsx index 88498a43..881a01ea 100644 --- a/src/icons-neo/mood-smile.tsx +++ b/src/icons-neo/mood-smile.tsx @@ -5,8 +5,6 @@ const MoodSmile = createASIcon( "MoodSmile", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/mouse-left.tsx b/src/icons-neo/mouse-left.tsx index 795c88b6..58ecebc5 100644 --- a/src/icons-neo/mouse-left.tsx +++ b/src/icons-neo/mouse-left.tsx @@ -5,8 +5,6 @@ const MouseLeft = createASIcon( "MouseLeft", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/mouse-right.tsx b/src/icons-neo/mouse-right.tsx index 4a496d12..c1ea1058 100644 --- a/src/icons-neo/mouse-right.tsx +++ b/src/icons-neo/mouse-right.tsx @@ -5,8 +5,6 @@ const MouseRight = createASIcon( "MouseRight", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/palette.tsx b/src/icons-neo/palette.tsx index fe3715b9..af63eb3b 100644 --- a/src/icons-neo/palette.tsx +++ b/src/icons-neo/palette.tsx @@ -5,8 +5,6 @@ const Palette = createASIcon( "Palette", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/photo-off.tsx b/src/icons-neo/photo-off.tsx index 5d2c5cac..e907d0e8 100644 --- a/src/icons-neo/photo-off.tsx +++ b/src/icons-neo/photo-off.tsx @@ -5,8 +5,6 @@ const PhotoOff = createASIcon( "PhotoOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/photo-stack.tsx b/src/icons-neo/photo-stack.tsx index a130a180..904e64ba 100644 --- a/src/icons-neo/photo-stack.tsx +++ b/src/icons-neo/photo-stack.tsx @@ -5,8 +5,6 @@ const PhotoStack = createASIcon( "PhotoStack", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/photo.tsx b/src/icons-neo/photo.tsx index 50573af8..0f1636a7 100644 --- a/src/icons-neo/photo.tsx +++ b/src/icons-neo/photo.tsx @@ -5,8 +5,6 @@ const Photo = createASIcon( "Photo", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/question-mark.tsx b/src/icons-neo/question-mark.tsx index f2b60e20..1a43cf11 100644 --- a/src/icons-neo/question-mark.tsx +++ b/src/icons-neo/question-mark.tsx @@ -5,8 +5,6 @@ const QuestionMark = createASIcon( "QuestionMark", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/redeem.tsx b/src/icons-neo/redeem.tsx index 9eaf1629..fa2e77a1 100644 --- a/src/icons-neo/redeem.tsx +++ b/src/icons-neo/redeem.tsx @@ -5,8 +5,6 @@ const Redeem = createASIcon( "Redeem", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/rotate-90.tsx b/src/icons-neo/rotate-90.tsx index 5d2d9012..e2ed4497 100644 --- a/src/icons-neo/rotate-90.tsx +++ b/src/icons-neo/rotate-90.tsx @@ -5,8 +5,6 @@ const Rotate90 = createASIcon( "Rotate90", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/search.tsx b/src/icons-neo/search.tsx new file mode 100644 index 00000000..adc59b4d --- /dev/null +++ b/src/icons-neo/search.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Search = createASIcon( + "Search", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Search; diff --git a/src/icons-neo/share.tsx b/src/icons-neo/share.tsx new file mode 100644 index 00000000..5d57d4f1 --- /dev/null +++ b/src/icons-neo/share.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Share = createASIcon( + "Share", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , +); + +export default Share; diff --git a/src/icons-neo/shopping-cart-discount.tsx b/src/icons-neo/shopping-cart-discount.tsx index 4ff9e681..7687e07c 100644 --- a/src/icons-neo/shopping-cart-discount.tsx +++ b/src/icons-neo/shopping-cart-discount.tsx @@ -5,8 +5,6 @@ const ShoppingCartDiscount = createASIcon( "ShoppingCartDiscount", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/shopping-cart.tsx b/src/icons-neo/shopping-cart.tsx index e0b379ba..87c6c270 100644 --- a/src/icons-neo/shopping-cart.tsx +++ b/src/icons-neo/shopping-cart.tsx @@ -5,8 +5,6 @@ const ShoppingCart = createASIcon( "ShoppingCart", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/spray.tsx b/src/icons-neo/spray.tsx index ec018216..65ce7739 100644 --- a/src/icons-neo/spray.tsx +++ b/src/icons-neo/spray.tsx @@ -5,8 +5,6 @@ const Spray = createASIcon( "Spray", { xmlns: "http://www.w3.org/2000/svg", - width: "16", - height: "21", fill: "none", viewBox: "0 0 16 21", }, diff --git a/src/icons-neo/stack-double.tsx b/src/icons-neo/stack-double.tsx new file mode 100644 index 00000000..73edb4fd --- /dev/null +++ b/src/icons-neo/stack-double.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackDouble = createASIcon( + "StackDouble", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default StackDouble; diff --git a/src/icons-neo/stack-triple.tsx b/src/icons-neo/stack-triple.tsx new file mode 100644 index 00000000..352123b8 --- /dev/null +++ b/src/icons-neo/stack-triple.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackTriple = createASIcon( + "StackTriple", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default StackTriple; diff --git a/src/icons-neo/star-off.tsx b/src/icons-neo/star-off.tsx index 22510860..3f9e9a76 100644 --- a/src/icons-neo/star-off.tsx +++ b/src/icons-neo/star-off.tsx @@ -5,8 +5,6 @@ const StarOff = createASIcon( "StarOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/star.tsx b/src/icons-neo/star.tsx index 27b91ac9..12351d74 100644 --- a/src/icons-neo/star.tsx +++ b/src/icons-neo/star.tsx @@ -5,8 +5,6 @@ const Star = createASIcon( "Star", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/thumb-down.tsx b/src/icons-neo/thumb-down.tsx index 21056b14..c80808ea 100644 --- a/src/icons-neo/thumb-down.tsx +++ b/src/icons-neo/thumb-down.tsx @@ -5,8 +5,6 @@ const ThumbDown = createASIcon( "ThumbDown", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/thumb-up.tsx b/src/icons-neo/thumb-up.tsx index 3c6789ef..fbfc709a 100644 --- a/src/icons-neo/thumb-up.tsx +++ b/src/icons-neo/thumb-up.tsx @@ -5,8 +5,6 @@ const ThumbUp = createASIcon( "ThumbUp", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/trash-off.tsx b/src/icons-neo/trash-off.tsx index c9e46d71..9f20a9d8 100644 --- a/src/icons-neo/trash-off.tsx +++ b/src/icons-neo/trash-off.tsx @@ -5,8 +5,6 @@ const TrashOff = createASIcon( "TrashOff", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/trash.tsx b/src/icons-neo/trash.tsx index 8d2b19fa..fa0357c1 100644 --- a/src/icons-neo/trash.tsx +++ b/src/icons-neo/trash.tsx @@ -5,8 +5,6 @@ const Trash = createASIcon( "Trash", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/icons-neo/user-check.tsx b/src/icons-neo/user-check.tsx new file mode 100644 index 00000000..664466aa --- /dev/null +++ b/src/icons-neo/user-check.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserCheck = createASIcon( + "UserCheck", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default UserCheck; diff --git a/src/icons-neo/user-exclamation.tsx b/src/icons-neo/user-exclamation.tsx new file mode 100644 index 00000000..fe1ab97d --- /dev/null +++ b/src/icons-neo/user-exclamation.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserExclamation = createASIcon( + "UserExclamation", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default UserExclamation; diff --git a/src/icons-neo/user-minus.tsx b/src/icons-neo/user-minus.tsx new file mode 100644 index 00000000..a094b90a --- /dev/null +++ b/src/icons-neo/user-minus.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserMinus = createASIcon( + "UserMinus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default UserMinus; diff --git a/src/icons-neo/user-off.tsx b/src/icons-neo/user-off.tsx new file mode 100644 index 00000000..2ae3a14c --- /dev/null +++ b/src/icons-neo/user-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserOff = createASIcon( + "UserOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default UserOff; diff --git a/src/icons-neo/user-plus.tsx b/src/icons-neo/user-plus.tsx new file mode 100644 index 00000000..9f46eb3d --- /dev/null +++ b/src/icons-neo/user-plus.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserPlus = createASIcon( + "UserPlus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default UserPlus; diff --git a/src/icons-neo/user-x.tsx b/src/icons-neo/user-x.tsx new file mode 100644 index 00000000..64a9376e --- /dev/null +++ b/src/icons-neo/user-x.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserX = createASIcon( + "UserX", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default UserX; diff --git a/src/icons-neo/user.tsx b/src/icons-neo/user.tsx new file mode 100644 index 00000000..05bab755 --- /dev/null +++ b/src/icons-neo/user.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const User = createASIcon( + "User", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default User; diff --git a/src/icons-neo/users.tsx b/src/icons-neo/users.tsx new file mode 100644 index 00000000..e4628985 --- /dev/null +++ b/src/icons-neo/users.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Users = createASIcon( + "Users", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default Users; diff --git a/src/icons-neo/viewfinder.tsx b/src/icons-neo/viewfinder.tsx index 2cab2172..8a2b62fc 100644 --- a/src/icons-neo/viewfinder.tsx +++ b/src/icons-neo/viewfinder.tsx @@ -5,8 +5,6 @@ const Viewfinder = createASIcon( "Viewfinder", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/world.tsx b/src/icons-neo/world.tsx index cc224697..70694e87 100644 --- a/src/icons-neo/world.tsx +++ b/src/icons-neo/world.tsx @@ -5,8 +5,6 @@ const World = createASIcon( "World", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "25", fill: "none", viewBox: "0 0 24 25", }, diff --git a/src/icons-neo/x.tsx b/src/icons-neo/x.tsx index fe9394fb..235de615 100644 --- a/src/icons-neo/x.tsx +++ b/src/icons-neo/x.tsx @@ -5,8 +5,6 @@ const X = createASIcon( "X", { xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/stories-neo/Adjustments.stories.tsx b/src/stories-neo/Adjustments.stories.tsx new file mode 100644 index 00000000..ec38fcaa --- /dev/null +++ b/src/stories-neo/Adjustments.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Adjustments from '../icons-neo/adjustments' + + const meta: Meta = { + component: Adjustments, + title: 'omega/Adjustments', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/AdjustmentsHorizontal.stories.tsx b/src/stories-neo/AdjustmentsHorizontal.stories.tsx index 207fbf4b..fce317dd 100644 --- a/src/stories-neo/AdjustmentsHorizontal.stories.tsx +++ b/src/stories-neo/AdjustmentsHorizontal.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Alarm.stories.tsx b/src/stories-neo/Alarm.stories.tsx index 32454c6d..a32ed536 100644 --- a/src/stories-neo/Alarm.stories.tsx +++ b/src/stories-neo/Alarm.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/AlertCircle.stories.tsx b/src/stories-neo/AlertCircle.stories.tsx index 3603b3fd..92ca9565 100644 --- a/src/stories-neo/AlertCircle.stories.tsx +++ b/src/stories-neo/AlertCircle.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/AlertOctagon.stories.tsx b/src/stories-neo/AlertOctagon.stories.tsx index ec2a02b7..454ff20a 100644 --- a/src/stories-neo/AlertOctagon.stories.tsx +++ b/src/stories-neo/AlertOctagon.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/AlertTriangle.stories.tsx b/src/stories-neo/AlertTriangle.stories.tsx index 31864693..02a85306 100644 --- a/src/stories-neo/AlertTriangle.stories.tsx +++ b/src/stories-neo/AlertTriangle.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowDown.stories.tsx b/src/stories-neo/ArrowDown.stories.tsx index 7b973ec8..ae99f3bc 100644 --- a/src/stories-neo/ArrowDown.stories.tsx +++ b/src/stories-neo/ArrowDown.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowLeft.stories.tsx b/src/stories-neo/ArrowLeft.stories.tsx index 396ee563..ffc5f876 100644 --- a/src/stories-neo/ArrowLeft.stories.tsx +++ b/src/stories-neo/ArrowLeft.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowNarrowLeft.stories.tsx b/src/stories-neo/ArrowNarrowLeft.stories.tsx index 2b4eaf4d..abe75ba9 100644 --- a/src/stories-neo/ArrowNarrowLeft.stories.tsx +++ b/src/stories-neo/ArrowNarrowLeft.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowNarrowRight.stories.tsx b/src/stories-neo/ArrowNarrowRight.stories.tsx index 1167f8bf..b2f8d35f 100644 --- a/src/stories-neo/ArrowNarrowRight.stories.tsx +++ b/src/stories-neo/ArrowNarrowRight.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowRight.stories.tsx b/src/stories-neo/ArrowRight.stories.tsx index 897cb27c..c34c6e5e 100644 --- a/src/stories-neo/ArrowRight.stories.tsx +++ b/src/stories-neo/ArrowRight.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ArrowUp.stories.tsx b/src/stories-neo/ArrowUp.stories.tsx index bfe216a9..fb28304c 100644 --- a/src/stories-neo/ArrowUp.stories.tsx +++ b/src/stories-neo/ArrowUp.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Atom.stories.tsx b/src/stories-neo/Atom.stories.tsx index 35c8fda0..02953f3f 100644 --- a/src/stories-neo/Atom.stories.tsx +++ b/src/stories-neo/Atom.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Ban.stories.tsx b/src/stories-neo/Ban.stories.tsx index a2f8ecbf..c7abe7f2 100644 --- a/src/stories-neo/Ban.stories.tsx +++ b/src/stories-neo/Ban.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Bell.stories.tsx b/src/stories-neo/Bell.stories.tsx index 15636744..5ae25cc2 100644 --- a/src/stories-neo/Bell.stories.tsx +++ b/src/stories-neo/Bell.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellMinus.stories.tsx b/src/stories-neo/BellMinus.stories.tsx index 208f9d48..5ddbc33c 100644 --- a/src/stories-neo/BellMinus.stories.tsx +++ b/src/stories-neo/BellMinus.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellOff.stories.tsx b/src/stories-neo/BellOff.stories.tsx index 6d70c893..606ee7d3 100644 --- a/src/stories-neo/BellOff.stories.tsx +++ b/src/stories-neo/BellOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellPlus.stories.tsx b/src/stories-neo/BellPlus.stories.tsx index e6678774..288d64c9 100644 --- a/src/stories-neo/BellPlus.stories.tsx +++ b/src/stories-neo/BellPlus.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellRinging.stories.tsx b/src/stories-neo/BellRinging.stories.tsx index 2d6823d4..d341b684 100644 --- a/src/stories-neo/BellRinging.stories.tsx +++ b/src/stories-neo/BellRinging.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellRinging2.stories.tsx b/src/stories-neo/BellRinging2.stories.tsx index 389b423f..7e017323 100644 --- a/src/stories-neo/BellRinging2.stories.tsx +++ b/src/stories-neo/BellRinging2.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BellX.stories.tsx b/src/stories-neo/BellX.stories.tsx index 440c94fc..c4d719d1 100644 --- a/src/stories-neo/BellX.stories.tsx +++ b/src/stories-neo/BellX.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BrandFacebook.stories.tsx b/src/stories-neo/BrandFacebook.stories.tsx index c2d07d86..e219f7cd 100644 --- a/src/stories-neo/BrandFacebook.stories.tsx +++ b/src/stories-neo/BrandFacebook.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BrandTwitter.stories.tsx b/src/stories-neo/BrandTwitter.stories.tsx index 79dab5f5..dc461bc3 100644 --- a/src/stories-neo/BrandTwitter.stories.tsx +++ b/src/stories-neo/BrandTwitter.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BrandWhatsapp.stories.tsx b/src/stories-neo/BrandWhatsapp.stories.tsx index 77d8417e..d942e086 100644 --- a/src/stories-neo/BrandWhatsapp.stories.tsx +++ b/src/stories-neo/BrandWhatsapp.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Bulb.stories.tsx b/src/stories-neo/Bulb.stories.tsx index 98c2a1f8..dcfccd77 100644 --- a/src/stories-neo/Bulb.stories.tsx +++ b/src/stories-neo/Bulb.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/BulbOff.stories.tsx b/src/stories-neo/BulbOff.stories.tsx index 2d4be2c5..f5cae4f5 100644 --- a/src/stories-neo/BulbOff.stories.tsx +++ b/src/stories-neo/BulbOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-neo/Check.stories.tsx index a8a22f6e..8abd45e2 100644 --- a/src/stories-neo/Check.stories.tsx +++ b/src/stories-neo/Check.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronDown.stories.tsx b/src/stories-neo/ChevronDown.stories.tsx index 373374ee..81751fa0 100644 --- a/src/stories-neo/ChevronDown.stories.tsx +++ b/src/stories-neo/ChevronDown.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronLeft.stories.tsx b/src/stories-neo/ChevronLeft.stories.tsx index 6d485b5d..f049ba8f 100644 --- a/src/stories-neo/ChevronLeft.stories.tsx +++ b/src/stories-neo/ChevronLeft.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronRight.stories.tsx b/src/stories-neo/ChevronRight.stories.tsx index 67f2efee..764ceab9 100644 --- a/src/stories-neo/ChevronRight.stories.tsx +++ b/src/stories-neo/ChevronRight.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronUp.stories.tsx b/src/stories-neo/ChevronUp.stories.tsx index 9ce0a806..6b9b2c68 100644 --- a/src/stories-neo/ChevronUp.stories.tsx +++ b/src/stories-neo/ChevronUp.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronsLeft.stories.tsx b/src/stories-neo/ChevronsLeft.stories.tsx index 53346fc3..880bbeb6 100644 --- a/src/stories-neo/ChevronsLeft.stories.tsx +++ b/src/stories-neo/ChevronsLeft.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ChevronsRight.stories.tsx b/src/stories-neo/ChevronsRight.stories.tsx index 0f44d9cd..203d8a55 100644 --- a/src/stories-neo/ChevronsRight.stories.tsx +++ b/src/stories-neo/ChevronsRight.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/CircleCheck.stories.tsx b/src/stories-neo/CircleCheck.stories.tsx index 69e615ae..802f1f63 100644 --- a/src/stories-neo/CircleCheck.stories.tsx +++ b/src/stories-neo/CircleCheck.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Clock.stories.tsx b/src/stories-neo/Clock.stories.tsx index efb90b4a..56795ca9 100644 --- a/src/stories-neo/Clock.stories.tsx +++ b/src/stories-neo/Clock.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ColorSwatch.stories.tsx b/src/stories-neo/ColorSwatch.stories.tsx index aed27f02..a8122e10 100644 --- a/src/stories-neo/ColorSwatch.stories.tsx +++ b/src/stories-neo/ColorSwatch.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-neo/Confetti.stories.tsx index 24201a8b..95d5c69f 100644 --- a/src/stories-neo/Confetti.stories.tsx +++ b/src/stories-neo/Confetti.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-neo/Copy.stories.tsx index 21c831c7..54b5579a 100644 --- a/src/stories-neo/Copy.stories.tsx +++ b/src/stories-neo/Copy.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-neo/Crown.stories.tsx index 63683980..c1b01a95 100644 --- a/src/stories-neo/Crown.stories.tsx +++ b/src/stories-neo/Crown.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/CurrencyDollar.stories.tsx b/src/stories-neo/CurrencyDollar.stories.tsx index bae15637..d92402e3 100644 --- a/src/stories-neo/CurrencyDollar.stories.tsx +++ b/src/stories-neo/CurrencyDollar.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Diamond.stories.tsx b/src/stories-neo/Diamond.stories.tsx index 56401d37..e55a5c70 100644 --- a/src/stories-neo/Diamond.stories.tsx +++ b/src/stories-neo/Diamond.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Discount.stories.tsx b/src/stories-neo/Discount.stories.tsx index b26527b8..86129c23 100644 --- a/src/stories-neo/Discount.stories.tsx +++ b/src/stories-neo/Discount.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Discount2.stories.tsx b/src/stories-neo/Discount2.stories.tsx index 0b2d83bc..ae2e6c98 100644 --- a/src/stories-neo/Discount2.stories.tsx +++ b/src/stories-neo/Discount2.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Download.stories.tsx b/src/stories-neo/Download.stories.tsx index 52290dfe..fefd4a38 100644 --- a/src/stories-neo/Download.stories.tsx +++ b/src/stories-neo/Download.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ExternalLink.stories.tsx b/src/stories-neo/ExternalLink.stories.tsx index eb008019..c0e78823 100644 --- a/src/stories-neo/ExternalLink.stories.tsx +++ b/src/stories-neo/ExternalLink.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Eye.stories.tsx b/src/stories-neo/Eye.stories.tsx index 97c8cd85..1c6c3e62 100644 --- a/src/stories-neo/Eye.stories.tsx +++ b/src/stories-neo/Eye.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/EyeCheck.stories.tsx b/src/stories-neo/EyeCheck.stories.tsx index 449d9e35..92f095e7 100644 --- a/src/stories-neo/EyeCheck.stories.tsx +++ b/src/stories-neo/EyeCheck.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/EyeOff.stories.tsx b/src/stories-neo/EyeOff.stories.tsx index 85d482fd..036a607f 100644 --- a/src/stories-neo/EyeOff.stories.tsx +++ b/src/stories-neo/EyeOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FileDownload.stories.tsx b/src/stories-neo/FileDownload.stories.tsx index 9299645e..018888e7 100644 --- a/src/stories-neo/FileDownload.stories.tsx +++ b/src/stories-neo/FileDownload.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FileExport.stories.tsx b/src/stories-neo/FileExport.stories.tsx index 14208686..2d5f84e2 100644 --- a/src/stories-neo/FileExport.stories.tsx +++ b/src/stories-neo/FileExport.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FileReport.stories.tsx b/src/stories-neo/FileReport.stories.tsx index 9e8eb965..b0919924 100644 --- a/src/stories-neo/FileReport.stories.tsx +++ b/src/stories-neo/FileReport.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FileSearch.stories.tsx b/src/stories-neo/FileSearch.stories.tsx index ac61b035..0222ad96 100644 --- a/src/stories-neo/FileSearch.stories.tsx +++ b/src/stories-neo/FileSearch.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Flag.stories.tsx b/src/stories-neo/Flag.stories.tsx index 8b6985ea..be2f566a 100644 --- a/src/stories-neo/Flag.stories.tsx +++ b/src/stories-neo/Flag.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Folder.stories.tsx b/src/stories-neo/Folder.stories.tsx index 1d1eb5fd..0e8c047a 100644 --- a/src/stories-neo/Folder.stories.tsx +++ b/src/stories-neo/Folder.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderDownload.stories.tsx b/src/stories-neo/FolderDownload.stories.tsx index f0d1398a..f3612b77 100644 --- a/src/stories-neo/FolderDownload.stories.tsx +++ b/src/stories-neo/FolderDownload.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderEye.stories.tsx b/src/stories-neo/FolderEye.stories.tsx index 2da81e67..cb4acbc3 100644 --- a/src/stories-neo/FolderEye.stories.tsx +++ b/src/stories-neo/FolderEye.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderMinus.stories.tsx b/src/stories-neo/FolderMinus.stories.tsx index 8c1779a0..050eeb54 100644 --- a/src/stories-neo/FolderMinus.stories.tsx +++ b/src/stories-neo/FolderMinus.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderOff.stories.tsx b/src/stories-neo/FolderOff.stories.tsx index 0d5c9bb5..97b67611 100644 --- a/src/stories-neo/FolderOff.stories.tsx +++ b/src/stories-neo/FolderOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderPlus.stories.tsx b/src/stories-neo/FolderPlus.stories.tsx index 2d3c30bf..882fd751 100644 --- a/src/stories-neo/FolderPlus.stories.tsx +++ b/src/stories-neo/FolderPlus.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderUpload.stories.tsx b/src/stories-neo/FolderUpload.stories.tsx index 6690ae53..05fbd2f9 100644 --- a/src/stories-neo/FolderUpload.stories.tsx +++ b/src/stories-neo/FolderUpload.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/FolderX.stories.tsx b/src/stories-neo/FolderX.stories.tsx index 8f213086..b58d4731 100644 --- a/src/stories-neo/FolderX.stories.tsx +++ b/src/stories-neo/FolderX.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Folders.stories.tsx b/src/stories-neo/Folders.stories.tsx index 8e633ccf..11c24697 100644 --- a/src/stories-neo/Folders.stories.tsx +++ b/src/stories-neo/Folders.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/GridDots.stories.tsx b/src/stories-neo/GridDots.stories.tsx index cad10119..b31060e3 100644 --- a/src/stories-neo/GridDots.stories.tsx +++ b/src/stories-neo/GridDots.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Home2.stories.tsx b/src/stories-neo/Home2.stories.tsx index 738170b0..e20beaad 100644 --- a/src/stories-neo/Home2.stories.tsx +++ b/src/stories-neo/Home2.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Import.stories.tsx b/src/stories-neo/Import.stories.tsx new file mode 100644 index 00000000..b78d78d0 --- /dev/null +++ b/src/stories-neo/Import.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Import from '../icons-neo/Import' + + const meta: Meta = { + component: Import, + title: 'omega/Import', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/InfoCircle.stories.tsx b/src/stories-neo/InfoCircle.stories.tsx index 320d2a3b..b0b152c7 100644 --- a/src/stories-neo/InfoCircle.stories.tsx +++ b/src/stories-neo/InfoCircle.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/InfoSquare.stories.tsx b/src/stories-neo/InfoSquare.stories.tsx index d3986b99..0e1888fd 100644 --- a/src/stories-neo/InfoSquare.stories.tsx +++ b/src/stories-neo/InfoSquare.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Loader.stories.tsx b/src/stories-neo/Loader.stories.tsx index 8d9e3169..40d82d9d 100644 --- a/src/stories-neo/Loader.stories.tsx +++ b/src/stories-neo/Loader.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Lock.stories.tsx b/src/stories-neo/Lock.stories.tsx index 0f9f888a..8ec68b33 100644 --- a/src/stories-neo/Lock.stories.tsx +++ b/src/stories-neo/Lock.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Lock2.stories.tsx b/src/stories-neo/Lock2.stories.tsx index 0bd274d3..96c83d65 100644 --- a/src/stories-neo/Lock2.stories.tsx +++ b/src/stories-neo/Lock2.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/LockOff.stories.tsx b/src/stories-neo/LockOff.stories.tsx index 09d5e030..69c416b9 100644 --- a/src/stories-neo/LockOff.stories.tsx +++ b/src/stories-neo/LockOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/LockOpen.stories.tsx b/src/stories-neo/LockOpen.stories.tsx index ad41ae2b..a04e199c 100644 --- a/src/stories-neo/LockOpen.stories.tsx +++ b/src/stories-neo/LockOpen.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Mail.stories.tsx b/src/stories-neo/Mail.stories.tsx index b45233a6..ea379fe2 100644 --- a/src/stories-neo/Mail.stories.tsx +++ b/src/stories-neo/Mail.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MoodCrazyHappy.stories.tsx b/src/stories-neo/MoodCrazyHappy.stories.tsx index 0a92dc12..d202864f 100644 --- a/src/stories-neo/MoodCrazyHappy.stories.tsx +++ b/src/stories-neo/MoodCrazyHappy.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MoodEmpty.stories.tsx b/src/stories-neo/MoodEmpty.stories.tsx index 4e8c2782..08193060 100644 --- a/src/stories-neo/MoodEmpty.stories.tsx +++ b/src/stories-neo/MoodEmpty.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MoodSad.stories.tsx b/src/stories-neo/MoodSad.stories.tsx index 85f21b35..5b25ccf1 100644 --- a/src/stories-neo/MoodSad.stories.tsx +++ b/src/stories-neo/MoodSad.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MoodSmile.stories.tsx b/src/stories-neo/MoodSmile.stories.tsx index a917ddab..7b459c68 100644 --- a/src/stories-neo/MoodSmile.stories.tsx +++ b/src/stories-neo/MoodSmile.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MouseLeft.stories.tsx b/src/stories-neo/MouseLeft.stories.tsx index e72da0e3..6f6520d5 100644 --- a/src/stories-neo/MouseLeft.stories.tsx +++ b/src/stories-neo/MouseLeft.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/MouseRight.stories.tsx b/src/stories-neo/MouseRight.stories.tsx index d4ea6273..2e3f2758 100644 --- a/src/stories-neo/MouseRight.stories.tsx +++ b/src/stories-neo/MouseRight.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Palette.stories.tsx b/src/stories-neo/Palette.stories.tsx index 26029679..38fc070d 100644 --- a/src/stories-neo/Palette.stories.tsx +++ b/src/stories-neo/Palette.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Photo.stories.tsx b/src/stories-neo/Photo.stories.tsx index a22e9c2a..26c6539b 100644 --- a/src/stories-neo/Photo.stories.tsx +++ b/src/stories-neo/Photo.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/PhotoOff.stories.tsx b/src/stories-neo/PhotoOff.stories.tsx index f248ab9c..6346a5f0 100644 --- a/src/stories-neo/PhotoOff.stories.tsx +++ b/src/stories-neo/PhotoOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/PhotoStack.stories.tsx b/src/stories-neo/PhotoStack.stories.tsx index 8b07b342..4480212d 100644 --- a/src/stories-neo/PhotoStack.stories.tsx +++ b/src/stories-neo/PhotoStack.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/QuestionMark.stories.tsx b/src/stories-neo/QuestionMark.stories.tsx index f7fa80ef..dec661d8 100644 --- a/src/stories-neo/QuestionMark.stories.tsx +++ b/src/stories-neo/QuestionMark.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Redeem.stories.tsx b/src/stories-neo/Redeem.stories.tsx index e2495d7f..257c139b 100644 --- a/src/stories-neo/Redeem.stories.tsx +++ b/src/stories-neo/Redeem.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Rotate90.stories.tsx b/src/stories-neo/Rotate90.stories.tsx index ad2b5891..d2b60481 100644 --- a/src/stories-neo/Rotate90.stories.tsx +++ b/src/stories-neo/Rotate90.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Search.stories.tsx b/src/stories-neo/Search.stories.tsx new file mode 100644 index 00000000..fe006622 --- /dev/null +++ b/src/stories-neo/Search.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Search from '../icons-neo/search' + + const meta: Meta = { + component: Search, + title: 'omega/Search', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Share.stories.tsx b/src/stories-neo/Share.stories.tsx new file mode 100644 index 00000000..147b1f8d --- /dev/null +++ b/src/stories-neo/Share.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Share from '../icons-neo/share' + + const meta: Meta = { + component: Share, + title: 'omega/Share', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ShoppingCart.stories.tsx b/src/stories-neo/ShoppingCart.stories.tsx index a7d209ed..ecc6bc79 100644 --- a/src/stories-neo/ShoppingCart.stories.tsx +++ b/src/stories-neo/ShoppingCart.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ShoppingCartDiscount.stories.tsx b/src/stories-neo/ShoppingCartDiscount.stories.tsx index a289bddc..a431ac75 100644 --- a/src/stories-neo/ShoppingCartDiscount.stories.tsx +++ b/src/stories-neo/ShoppingCartDiscount.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Spray.stories.tsx b/src/stories-neo/Spray.stories.tsx index e68ee580..6d6f8e32 100644 --- a/src/stories-neo/Spray.stories.tsx +++ b/src/stories-neo/Spray.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Stack.stories.tsx b/src/stories-neo/Stack.stories.tsx index 1624d404..9e835793 100644 --- a/src/stories-neo/Stack.stories.tsx +++ b/src/stories-neo/Stack.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Stack2.stories.tsx b/src/stories-neo/Stack2.stories.tsx index 6ff820c2..41dfd787 100644 --- a/src/stories-neo/Stack2.stories.tsx +++ b/src/stories-neo/Stack2.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/StackDouble.stories.tsx b/src/stories-neo/StackDouble.stories.tsx new file mode 100644 index 00000000..7133a13d --- /dev/null +++ b/src/stories-neo/StackDouble.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackDouble from '../icons-neo/stack-double' + + const meta: Meta = { + component: StackDouble, + title: 'omega/StackDouble', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/StackTriple.stories.tsx b/src/stories-neo/StackTriple.stories.tsx new file mode 100644 index 00000000..f5ef92ce --- /dev/null +++ b/src/stories-neo/StackTriple.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackTriple from '../icons-neo/stack-triple' + + const meta: Meta = { + component: StackTriple, + title: 'omega/StackTriple', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Star.stories.tsx b/src/stories-neo/Star.stories.tsx index 72e799a1..70030d3d 100644 --- a/src/stories-neo/Star.stories.tsx +++ b/src/stories-neo/Star.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/StarOff.stories.tsx b/src/stories-neo/StarOff.stories.tsx index fd434d95..dafb1d7d 100644 --- a/src/stories-neo/StarOff.stories.tsx +++ b/src/stories-neo/StarOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ThumbDown.stories.tsx b/src/stories-neo/ThumbDown.stories.tsx index 842b502f..dd7071aa 100644 --- a/src/stories-neo/ThumbDown.stories.tsx +++ b/src/stories-neo/ThumbDown.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/ThumbUp.stories.tsx b/src/stories-neo/ThumbUp.stories.tsx index 46c7c3db..710fe6c3 100644 --- a/src/stories-neo/ThumbUp.stories.tsx +++ b/src/stories-neo/ThumbUp.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/Trash.stories.tsx b/src/stories-neo/Trash.stories.tsx index 5a809a75..7a3cbcc2 100644 --- a/src/stories-neo/Trash.stories.tsx +++ b/src/stories-neo/Trash.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/TrashOff.stories.tsx b/src/stories-neo/TrashOff.stories.tsx index 4322b0bb..86a49050 100644 --- a/src/stories-neo/TrashOff.stories.tsx +++ b/src/stories-neo/TrashOff.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/User.stories.tsx b/src/stories-neo/User.stories.tsx new file mode 100644 index 00000000..11fe0091 --- /dev/null +++ b/src/stories-neo/User.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import User from '../icons-neo/user' + + const meta: Meta = { + component: User, + title: 'omega/User', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserCheck.stories.tsx b/src/stories-neo/UserCheck.stories.tsx new file mode 100644 index 00000000..99e6a9a9 --- /dev/null +++ b/src/stories-neo/UserCheck.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserCheck from '../icons-neo/user-check' + + const meta: Meta = { + component: UserCheck, + title: 'omega/UserCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserExclamation.stories.tsx b/src/stories-neo/UserExclamation.stories.tsx new file mode 100644 index 00000000..772979a4 --- /dev/null +++ b/src/stories-neo/UserExclamation.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserExclamation from '../icons-neo/user-exclamation' + + const meta: Meta = { + component: UserExclamation, + title: 'omega/UserExclamation', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserMinus.stories.tsx b/src/stories-neo/UserMinus.stories.tsx new file mode 100644 index 00000000..77d83e45 --- /dev/null +++ b/src/stories-neo/UserMinus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserMinus from '../icons-neo/user-minus' + + const meta: Meta = { + component: UserMinus, + title: 'omega/UserMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserOff.stories.tsx b/src/stories-neo/UserOff.stories.tsx new file mode 100644 index 00000000..317e4990 --- /dev/null +++ b/src/stories-neo/UserOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserOff from '../icons-neo/user-off' + + const meta: Meta = { + component: UserOff, + title: 'omega/UserOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserPlus.stories.tsx b/src/stories-neo/UserPlus.stories.tsx new file mode 100644 index 00000000..612a8100 --- /dev/null +++ b/src/stories-neo/UserPlus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserPlus from '../icons-neo/user-plus' + + const meta: Meta = { + component: UserPlus, + title: 'omega/UserPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/UserX.stories.tsx b/src/stories-neo/UserX.stories.tsx new file mode 100644 index 00000000..7f4e07d7 --- /dev/null +++ b/src/stories-neo/UserX.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserX from '../icons-neo/user-x' + + const meta: Meta = { + component: UserX, + title: 'omega/UserX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Users.stories.tsx b/src/stories-neo/Users.stories.tsx new file mode 100644 index 00000000..44fb2c7b --- /dev/null +++ b/src/stories-neo/Users.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Users from '../icons-neo/users' + + const meta: Meta = { + component: Users, + title: 'omega/Users', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Viewfinder.stories.tsx b/src/stories-neo/Viewfinder.stories.tsx index ec6775bb..10b4a3a9 100644 --- a/src/stories-neo/Viewfinder.stories.tsx +++ b/src/stories-neo/Viewfinder.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/World.stories.tsx b/src/stories-neo/World.stories.tsx index bcc1c01b..e466c29c 100644 --- a/src/stories-neo/World.stories.tsx +++ b/src/stories-neo/World.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/stories-neo/X.stories.tsx b/src/stories-neo/X.stories.tsx index fbba07ca..8fd7d69a 100644 --- a/src/stories-neo/X.stories.tsx +++ b/src/stories-neo/X.stories.tsx @@ -47,7 +47,7 @@ import type { Meta, StoryObj } from '@storybook/react' export const Large: Story = { args: { - size: 50, + size: 30, }, } diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index b47160b5..251314de 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -570,30 +570,14 @@ video { display: inline-flex; } -.h-\[70px\] { - height: 70px; -} - -.h-auto { - height: auto; -} - -.h-\[50px\] { - height: 50px; +.h-10 { + height: 2.5rem; } .h-\[24px\] { height: 24px; } -.h-20 { - height: 5rem; -} - -.h-10 { - height: 2.5rem; -} - .w-10 { width: 2.5rem; } @@ -610,26 +594,6 @@ video { width: 24px; } -.w-\[70px\] { - width: 70px; -} - -.w-\[50px\] { - width: 50px; -} - -.w-40 { - width: 10rem; -} - -.w-20 { - width: 5rem; -} - -.w-\[100ox\] { - width: 100ox; -} - .shrink-0 { flex-shrink: 0; } @@ -663,10 +627,6 @@ video { border-radius: 0.125rem; } -.border { - border-width: 1px; -} - .border-2 { border-width: 2px; } @@ -681,10 +641,6 @@ video { border-color: rgb(34 197 94 / var(--tw-border-opacity)); } -.border-\[\#55555\] { - border-color: #55555; -} - .bg-\[\#555555\] { --tw-bg-opacity: 1; background-color: rgb(85 85 85 / var(--tw-bg-opacity)); @@ -694,23 +650,18 @@ video { background-color: transparent; } -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgb(248 113 113 / var(--tw-bg-opacity)); -} - .stroke-\[\#fff\] { stroke: #fff; } -.stroke-2 { - stroke-width: 2; -} - .stroke-1 { stroke-width: 1; } +.stroke-2 { + stroke-width: 2; +} + .p-2 { padding: 0.5rem; } @@ -730,9 +681,9 @@ video { color: rgb(34 197 94 / var(--tw-text-opacity)); } -.text-red-500 { +.text-red-400 { --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); + color: rgb(248 113 113 / var(--tw-text-opacity)); } .text-white { @@ -740,11 +691,6 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-red-400 { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); -} - .outline { outline-style: solid; } @@ -753,14 +699,14 @@ video { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } -.hover\:text-green-500:hover { +.hover\:text-blue-400:hover { --tw-text-opacity: 1; - color: rgb(34 197 94 / var(--tw-text-opacity)); + color: rgb(96 165 250 / var(--tw-text-opacity)); } -.hover\:text-blue-400:hover { +.hover\:text-green-500:hover { --tw-text-opacity: 1; - color: rgb(96 165 250 / var(--tw-text-opacity)); + color: rgb(34 197 94 / var(--tw-text-opacity)); } .group:hover .group-hover\:text-green-500 { From c946637b5e1f20f94d1c96a4c3198289474889ec Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 19:27:20 +0530 Subject: [PATCH 15/34] update: add parameter of icon type --- package.json | 6 +++++- scripts/buildIcons.mjs | 12 +++--------- scripts/optimizeSvgs.mjs | 9 +++++++-- scripts/processSvg.mjs | 5 +++-- 4 files changed, 18 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index ee899f95..d37d2c0e 100644 --- a/package.json +++ b/package.json @@ -16,10 +16,14 @@ "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "o:svgs": "node ./scripts/optimizeSvgs.mjs", + "o:svgs@fill": "node ./scripts/optimizeSvgs.mjs --iconType fill", + "o:svgs@mix": "node ./scripts/optimizeSvgs.mjs --iconType mix", "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", - "build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./scripts/exportIconTemplate.mjs --exportFileName index.ts", + "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", "gen:unicons": "npm-run-all -s o:svgs gen:childsvgs build:icons remove:dir", + "gen:unicons@fill": "npm-run-all -s o:svgs@fill gen:childsvgs build:icons remove:dir", + "gen:unicons@mix": "npm-run-all -s o:svgs@mix gen:childsvgs build:icons remove:dir", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index d4a410f5..5d826728 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -2,6 +2,7 @@ import fs from 'fs' import getArgumentOptions from 'minimist' import path from 'path' +import exportIconTemplate from './exportIconTemplate.mjs' import generateExportsFile from './generateExportsFile.mjs' import generateIconFiles from './generateIconFiles.mjs' import generateStories from './generateStories.mjs' @@ -20,27 +21,20 @@ if (!fs.existsSync(OUTPUT_DIR)) { fs.mkdirSync(OUTPUT_DIR) } -const { renderUniqueKey = false, templateSrc, silent = false, iconFileExtension = '.tsx', exportFileName = 'index.js', pretty = true } = cliArguments +const { renderUniqueKey = false, iconFileExtension = '.tsx', exportFileName = 'index.js' } = cliArguments async function buildIcons() { - if (templateSrc == null) { - throw new Error('No `templateSrc` argument given.') - } - const svgFiles = readSvgDirectory(ICONS_DIR) const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) - const { default: iconFileTemplate } = await import(path.resolve(process.cwd(), templateSrc)) - generateIconFiles({ outputFolderName: OUTPUT_FOLDER_NAME, svgObjs: svgObjs, outputDirectory: OUTPUT_DIR, iconsDir: ICONS_DIR, - template: iconFileTemplate, + template: exportIconTemplate, iconFileExtension, - // iconMetaData, }) // Generates entry files for the compiler filled with icons exports diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs index 9f0943ca..cadfee82 100644 --- a/scripts/optimizeSvgs.mjs +++ b/scripts/optimizeSvgs.mjs @@ -1,4 +1,5 @@ import fs from 'fs' +import getArgumentOptions from 'minimist' import path from 'path' import { readSvgDirectory, writeSvgFile } from './helpers.mjs' import processSvg from './processSvg.mjs' @@ -6,6 +7,10 @@ import processSvg from './processSvg.mjs' const ICONS_DIR = path.resolve(process.cwd(), 'icons-original/outline') const OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') +const cliArguments = getArgumentOptions(process.argv.slice(2)) + +const { iconType = 'outline' } = cliArguments + // Ensure the optimized directory exists if (!fs.existsSync(OPTIMIZED_ICONS_DIR)) { fs.mkdirSync(OPTIMIZED_ICONS_DIR, { recursive: true }) @@ -18,8 +23,8 @@ const svgFiles = readSvgDirectory(ICONS_DIR) const optimizeSvgFiles = async () => { for (const svgFile of svgFiles) { const content = fs.readFileSync(path.join(ICONS_DIR, svgFile), 'utf-8') - const optimizedSvg = await processSvg(content, svgFile) - await writeSvgFile(svgFile, OPTIMIZED_ICONS_DIR, optimizedSvg) + const optimizedSvg = await processSvg(content, svgFile, iconType) + writeSvgFile(svgFile, OPTIMIZED_ICONS_DIR, optimizedSvg) } } diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 119ff659..0a21aa2c 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -5,6 +5,7 @@ import { parseSync } from 'svgson' /** * Optimize SVG with `svgo`. * @param {string} svg - An SVG string. + * @param {object} options - An options object for deciding outline, fill, or mix. * @returns {Promise} An optimized svg */ async function optimizeSvg(svg, path) { @@ -69,10 +70,10 @@ function setAttrs(svg) { /** * Process SVG string. * @param {string} svg An SVG string. + * @param {object} options - An options object for deciding outline, fill, or mix. * @returns {Promise} An optimized svg */ -function processSvg(svg, path) { - setAttrs(svg) +function processSvg(svg, path, iconType) { return ( optimizeSvg(svg, path) // .then(setAttrs) From e0900a08cb3fa3e75fc5b75bd09574b8ca16ed2f Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 30 May 2024 22:01:55 +0530 Subject: [PATCH 16/34] update: Icon component --- src/Icon.ts | 19 ++++++------------- src/createASIcon.ts | 9 +++++---- 2 files changed, 11 insertions(+), 17 deletions(-) diff --git a/src/Icon.ts b/src/Icon.ts index b4695fc4..17aa03c8 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -1,6 +1,7 @@ import { createElement, forwardRef } from 'react' import defaultAttributes from './defaultAttributes' -import { ASIProps, IconNode } from './types' +import { ASIProps } from './types' +import { cn } from './utils/cn' interface IconComponentProps extends ASIProps { originalAttributes: any @@ -8,20 +9,12 @@ interface IconComponentProps extends ASIProps { } /** - * Lucide icon component + * Aftershoot icon component * * @component Icon - * @param {object} props - * @param {string} props.color - The color of the icon - * @param {number} props.size - The size of the icon - * @param {number} props.strokeWidth - The stroke width of the icon - * @param {boolean} props.absoluteStrokeWidth - Whether to use absolute stroke width - * @param {string} props.className - The class name of the icon - * @param {IconNode} props.children - The children of the icon - * @param {IconNode} props.iconNode - The icon node of the icon - * - * @returns {ForwardRefExoticComponent} LucideIcon + * Common component for all icons */ + const Icon = forwardRef( ({ color = 'currentColor', size, inActive = false, fillColor = 'none', className, children, originalAttributes, svgChildren, ...rest }, ref) => { return createElement( @@ -33,7 +26,7 @@ const Icon = forwardRef( stroke: inActive ? '#777777' : color, ...(size ? { style: { width: size, height: 'auto' } } : {}), fill: fillColor, - className, + className: cn(`w-[24px] h-[24px] shrink-0 stroke-2`, className), ...rest, }, svgChildren, diff --git a/src/createASIcon.ts b/src/createASIcon.ts index ff876e52..0fc76c6a 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -5,18 +5,19 @@ import { toKebabCase } from './utils' import { cn } from './utils/cn' /** - * Create a Lucide icon component + * Create a Aftershoot icon component, using Icon component as base for all + * Icons. * @param {string} iconName - * @param {array} iconNode + * @param {unknown} originalAttributes * @returns {ForwardRefExoticComponent} LucideIcon */ -const createASIcon = (iconName: string, originalAttributes: any, svgChildren: any) => { +const createASIcon = (iconName: string, originalAttributes: unknown, svgChildren: React.SVGProps) => { const Component = forwardRef(({ className, ...props }, ref) => createElement(Icon, { ref, originalAttributes, svgChildren, - className: cn(`unicon unicon-${toKebabCase(iconName)} w-[24px] h-[24px] shrink-0 stroke-2`, className), + className: cn(`unicon unicon-${toKebabCase(iconName)}`, className), ...props, }), ) From 33d1a4c024b9997ad268498783283911f3e90799 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Fri, 31 May 2024 01:22:53 +0530 Subject: [PATCH 17/34] add: icons from figma for edit --- icons-original/accent/download-accent.svg | 4 +++ icons-original/accent/mood.svg | 14 ++++++++++ icons-original/accent/mood_gray.svg | 14 ++++++++++ icons-original/fill/facebook.svg | 3 +++ icons-original/fill/grid-view-1.svg | 6 +++++ icons-original/fill/grid-view-2.svg | 6 +++++ icons-original/fill/key-duplicate-fill.svg | 4 +++ icons-original/fill/list-fill.svg | 4 +++ icons-original/fill/loop.svg | 6 +++++ icons-original/fill/loupe-fill.svg | 4 +++ icons-original/fill/palette-fill.svg | 4 +-- icons-original/img/adobe_camera_raw.svg | 10 +++++++ icons-original/img/bridge.svg | 9 +++++++ icons-original/img/capture_one.svg | 9 +++++++ icons-original/img/drag_capture_one.svg | 14 ++++++++++ icons-original/img/drag_folder.svg | 1 + icons-original/img/drag_lr copy.svg | 9 +++++++ icons-original/img/drag_lr.svg | 9 +++++++ icons-original/img/drag_lrc.svg | 9 +++++++ icons-original/img/drag_photoshop.svg | 9 +++++++ icons-original/img/facebook_people.svg | 26 +++++++++++++++++++ icons-original/img/lessGrouping1.svg | 24 +++++++++++++++++ icons-original/img/lessGrouping2.svg | 24 +++++++++++++++++ icons-original/img/lightroom.svg | 9 +++++++ icons-original/img/lightroom_classic.svg | 9 +++++++ icons-original/img/moreGrouping1.svg | 24 +++++++++++++++++ icons-original/img/moreGrouping2.svg | 24 +++++++++++++++++ icons-original/mix/image-border.svg | 4 +++ icons-original/mix/no-duplicate.svg | 7 +++++ icons-original/mix/star - 0.svg | 11 ++++++++ icons-original/mix/star - 1.svg | 11 ++++++++ icons-original/mix/star - 2.svg | 11 ++++++++ icons-original/mix/star - 3.svg | 11 ++++++++ icons-original/mix/star - 4.svg | 11 ++++++++ icons-original/mix/star - 5.svg | 11 ++++++++ icons-original/not-include/add_folder.svg | 1 + .../not-include/adobe_camera_raw.svg | 10 +++++++ icons-original/not-include/arrow_right.svg | 1 + icons-original/not-include/bridge.svg | 9 +++++++ icons-original/not-include/bulb.svg | 12 +++++++++ icons-original/not-include/capture_one.svg | 9 +++++++ icons-original/not-include/checkIcon.svg | 3 +++ icons-original/not-include/circle-check_2.svg | 11 ++++++++ .../not-include/circleCheckFilled.svg | 11 ++++++++ icons-original/not-include/circle_check.svg | 1 + icons-original/outline/arrow-sort-2.svg | 3 +++ icons-original/outline/arrows-diagonal.svg | 13 ++++++++++ icons-original/outline/arrows-sort.svg | 12 +++++++++ icons-original/outline/circle-check-2.svg | 4 +++ icons-original/outline/circle.svg | 10 +++++++ icons-original/outline/cloud-upload.svg | 12 +++++++++ .../outline/device-desktop-analytics.svg | 17 ++++++++++++ icons-original/outline/device-desktop-off.svg | 14 ++++++++++ icons-original/outline/device-desktop.svg | 12 +++++++++ icons-original/outline/device-laptop.svg | 11 ++++++++ icons-original/outline/device-tv.svg | 11 ++++++++ icons-original/outline/disk.svg | 6 +++++ icons-original/outline/edit.svg | 12 +++++++++ icons-original/outline/filter-off.svg | 11 ++++++++ icons-original/outline/filter.svg | 10 +++++++ icons-original/outline/info-cirlce-2.svg | 5 ++++ icons-original/outline/key-2.svg | 3 +++ icons-original/outline/key-duplicate.svg | 4 +++ icons-original/outline/key.svg | 13 ++++++++++ icons-original/outline/link.svg | 11 ++++++++ icons-original/outline/no-duplicate.svg | 7 +++++ icons-original/outline/photo-off-2.svg | 5 ++++ icons-original/outline/reload-alert.svg | 3 +++ icons-original/outline/sort-ascending-2.svg | 13 ++++++++++ .../outline/sort-ascending-letters.svg | 13 ++++++++++ .../outline/sort-ascending-numbers.svg | 14 ++++++++++ icons-original/outline/sort-ascending.svg | 14 ++++++++++ icons-original/outline/sort-descending-2.svg | 13 ++++++++++ .../outline/sort-descending-letters.svg | 13 ++++++++++ .../outline/sort-descending-numbers.svg | 14 ++++++++++ icons-original/outline/sort-descending.svg | 14 ++++++++++ icons-original/outline/unlink.svg | 15 +++++++++++ icons-original/outline/upload-2.svg | 3 +++ icons-original/outline/upload.svg | 12 +++++++++ icons-original/outline/writing.svg | 3 +++ icons-original/outline/zoom-in.svg | 13 ++++++++++ icons-original/outline/zoom-out.svg | 12 +++++++++ icons-original/outline/zoom-question.svg | 13 ++++++++++ icons-original/weird/grab-hand.svg | 4 +++ scripts/default-attrs.json | 11 -------- scripts/default-attrsxxx.json | 11 ++++++++ .../{writeSvgObjs.mjs => writeSvgObjsxxx.mjs} | 0 87 files changed, 834 insertions(+), 13 deletions(-) create mode 100644 icons-original/accent/download-accent.svg create mode 100644 icons-original/accent/mood.svg create mode 100644 icons-original/accent/mood_gray.svg create mode 100644 icons-original/fill/facebook.svg create mode 100644 icons-original/fill/grid-view-1.svg create mode 100644 icons-original/fill/grid-view-2.svg create mode 100644 icons-original/fill/key-duplicate-fill.svg create mode 100644 icons-original/fill/list-fill.svg create mode 100644 icons-original/fill/loop.svg create mode 100644 icons-original/fill/loupe-fill.svg create mode 100644 icons-original/img/adobe_camera_raw.svg create mode 100644 icons-original/img/bridge.svg create mode 100644 icons-original/img/capture_one.svg create mode 100644 icons-original/img/drag_capture_one.svg create mode 100644 icons-original/img/drag_folder.svg create mode 100644 icons-original/img/drag_lr copy.svg create mode 100644 icons-original/img/drag_lr.svg create mode 100644 icons-original/img/drag_lrc.svg create mode 100644 icons-original/img/drag_photoshop.svg create mode 100644 icons-original/img/facebook_people.svg create mode 100644 icons-original/img/lessGrouping1.svg create mode 100644 icons-original/img/lessGrouping2.svg create mode 100644 icons-original/img/lightroom.svg create mode 100644 icons-original/img/lightroom_classic.svg create mode 100644 icons-original/img/moreGrouping1.svg create mode 100644 icons-original/img/moreGrouping2.svg create mode 100644 icons-original/mix/image-border.svg create mode 100644 icons-original/mix/no-duplicate.svg create mode 100644 icons-original/mix/star - 0.svg create mode 100644 icons-original/mix/star - 1.svg create mode 100644 icons-original/mix/star - 2.svg create mode 100644 icons-original/mix/star - 3.svg create mode 100644 icons-original/mix/star - 4.svg create mode 100644 icons-original/mix/star - 5.svg create mode 100644 icons-original/not-include/add_folder.svg create mode 100644 icons-original/not-include/adobe_camera_raw.svg create mode 100644 icons-original/not-include/arrow_right.svg create mode 100644 icons-original/not-include/bridge.svg create mode 100644 icons-original/not-include/bulb.svg create mode 100644 icons-original/not-include/capture_one.svg create mode 100644 icons-original/not-include/checkIcon.svg create mode 100644 icons-original/not-include/circle-check_2.svg create mode 100644 icons-original/not-include/circleCheckFilled.svg create mode 100644 icons-original/not-include/circle_check.svg create mode 100644 icons-original/outline/arrow-sort-2.svg create mode 100644 icons-original/outline/arrows-diagonal.svg create mode 100644 icons-original/outline/arrows-sort.svg create mode 100644 icons-original/outline/circle-check-2.svg create mode 100644 icons-original/outline/circle.svg create mode 100644 icons-original/outline/cloud-upload.svg create mode 100644 icons-original/outline/device-desktop-analytics.svg create mode 100644 icons-original/outline/device-desktop-off.svg create mode 100644 icons-original/outline/device-desktop.svg create mode 100644 icons-original/outline/device-laptop.svg create mode 100644 icons-original/outline/device-tv.svg create mode 100644 icons-original/outline/disk.svg create mode 100644 icons-original/outline/edit.svg create mode 100644 icons-original/outline/filter-off.svg create mode 100644 icons-original/outline/filter.svg create mode 100644 icons-original/outline/info-cirlce-2.svg create mode 100644 icons-original/outline/key-2.svg create mode 100644 icons-original/outline/key-duplicate.svg create mode 100644 icons-original/outline/key.svg create mode 100644 icons-original/outline/link.svg create mode 100644 icons-original/outline/no-duplicate.svg create mode 100644 icons-original/outline/photo-off-2.svg create mode 100644 icons-original/outline/reload-alert.svg create mode 100644 icons-original/outline/sort-ascending-2.svg create mode 100644 icons-original/outline/sort-ascending-letters.svg create mode 100644 icons-original/outline/sort-ascending-numbers.svg create mode 100644 icons-original/outline/sort-ascending.svg create mode 100644 icons-original/outline/sort-descending-2.svg create mode 100644 icons-original/outline/sort-descending-letters.svg create mode 100644 icons-original/outline/sort-descending-numbers.svg create mode 100644 icons-original/outline/sort-descending.svg create mode 100644 icons-original/outline/unlink.svg create mode 100644 icons-original/outline/upload-2.svg create mode 100644 icons-original/outline/upload.svg create mode 100644 icons-original/outline/writing.svg create mode 100644 icons-original/outline/zoom-in.svg create mode 100644 icons-original/outline/zoom-out.svg create mode 100644 icons-original/outline/zoom-question.svg create mode 100644 icons-original/weird/grab-hand.svg delete mode 100644 scripts/default-attrs.json create mode 100644 scripts/default-attrsxxx.json rename scripts/{writeSvgObjs.mjs => writeSvgObjsxxx.mjs} (100%) diff --git a/icons-original/accent/download-accent.svg b/icons-original/accent/download-accent.svg new file mode 100644 index 00000000..675d3f76 --- /dev/null +++ b/icons-original/accent/download-accent.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/accent/mood.svg b/icons-original/accent/mood.svg new file mode 100644 index 00000000..8b96e494 --- /dev/null +++ b/icons-original/accent/mood.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/accent/mood_gray.svg b/icons-original/accent/mood_gray.svg new file mode 100644 index 00000000..200f3fe1 --- /dev/null +++ b/icons-original/accent/mood_gray.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/fill/facebook.svg b/icons-original/fill/facebook.svg new file mode 100644 index 00000000..d7d6f7e9 --- /dev/null +++ b/icons-original/fill/facebook.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/grid-view-1.svg b/icons-original/fill/grid-view-1.svg new file mode 100644 index 00000000..cc18f9da --- /dev/null +++ b/icons-original/fill/grid-view-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/fill/grid-view-2.svg b/icons-original/fill/grid-view-2.svg new file mode 100644 index 00000000..02a9d21f --- /dev/null +++ b/icons-original/fill/grid-view-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/fill/key-duplicate-fill.svg b/icons-original/fill/key-duplicate-fill.svg new file mode 100644 index 00000000..2d5e73a7 --- /dev/null +++ b/icons-original/fill/key-duplicate-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/list-fill.svg b/icons-original/fill/list-fill.svg new file mode 100644 index 00000000..9e3f0a09 --- /dev/null +++ b/icons-original/fill/list-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/loop.svg b/icons-original/fill/loop.svg new file mode 100644 index 00000000..73675442 --- /dev/null +++ b/icons-original/fill/loop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/fill/loupe-fill.svg b/icons-original/fill/loupe-fill.svg new file mode 100644 index 00000000..b527026e --- /dev/null +++ b/icons-original/fill/loupe-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/palette-fill.svg b/icons-original/fill/palette-fill.svg index 76e9a24f..b70c69fc 100644 --- a/icons-original/fill/palette-fill.svg +++ b/icons-original/fill/palette-fill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/icons-original/img/adobe_camera_raw.svg b/icons-original/img/adobe_camera_raw.svg new file mode 100644 index 00000000..8a1c0171 --- /dev/null +++ b/icons-original/img/adobe_camera_raw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/img/bridge.svg b/icons-original/img/bridge.svg new file mode 100644 index 00000000..95f03061 --- /dev/null +++ b/icons-original/img/bridge.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/capture_one.svg b/icons-original/img/capture_one.svg new file mode 100644 index 00000000..78ee441f --- /dev/null +++ b/icons-original/img/capture_one.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/drag_capture_one.svg b/icons-original/img/drag_capture_one.svg new file mode 100644 index 00000000..89705a5e --- /dev/null +++ b/icons-original/img/drag_capture_one.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/img/drag_folder.svg b/icons-original/img/drag_folder.svg new file mode 100644 index 00000000..ef9d2665 --- /dev/null +++ b/icons-original/img/drag_folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/img/drag_lr copy.svg b/icons-original/img/drag_lr copy.svg new file mode 100644 index 00000000..77944629 --- /dev/null +++ b/icons-original/img/drag_lr copy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/drag_lr.svg b/icons-original/img/drag_lr.svg new file mode 100644 index 00000000..77944629 --- /dev/null +++ b/icons-original/img/drag_lr.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/drag_lrc.svg b/icons-original/img/drag_lrc.svg new file mode 100644 index 00000000..c9e3f32d --- /dev/null +++ b/icons-original/img/drag_lrc.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/drag_photoshop.svg b/icons-original/img/drag_photoshop.svg new file mode 100644 index 00000000..1d80286b --- /dev/null +++ b/icons-original/img/drag_photoshop.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/facebook_people.svg b/icons-original/img/facebook_people.svg new file mode 100644 index 00000000..bb31c583 --- /dev/null +++ b/icons-original/img/facebook_people.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/img/lessGrouping1.svg b/icons-original/img/lessGrouping1.svg new file mode 100644 index 00000000..d07fdf52 --- /dev/null +++ b/icons-original/img/lessGrouping1.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/img/lessGrouping2.svg b/icons-original/img/lessGrouping2.svg new file mode 100644 index 00000000..03afd26f --- /dev/null +++ b/icons-original/img/lessGrouping2.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/img/lightroom.svg b/icons-original/img/lightroom.svg new file mode 100644 index 00000000..dcbbb8fb --- /dev/null +++ b/icons-original/img/lightroom.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/lightroom_classic.svg b/icons-original/img/lightroom_classic.svg new file mode 100644 index 00000000..1fdb15d9 --- /dev/null +++ b/icons-original/img/lightroom_classic.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/img/moreGrouping1.svg b/icons-original/img/moreGrouping1.svg new file mode 100644 index 00000000..0c0bd44a --- /dev/null +++ b/icons-original/img/moreGrouping1.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/img/moreGrouping2.svg b/icons-original/img/moreGrouping2.svg new file mode 100644 index 00000000..830bb048 --- /dev/null +++ b/icons-original/img/moreGrouping2.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/mix/image-border.svg b/icons-original/mix/image-border.svg new file mode 100644 index 00000000..15711c35 --- /dev/null +++ b/icons-original/mix/image-border.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/no-duplicate.svg b/icons-original/mix/no-duplicate.svg new file mode 100644 index 00000000..3c12871e --- /dev/null +++ b/icons-original/mix/no-duplicate.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/icons-original/mix/star - 0.svg b/icons-original/mix/star - 0.svg new file mode 100644 index 00000000..a1361e19 --- /dev/null +++ b/icons-original/mix/star - 0.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/star - 1.svg b/icons-original/mix/star - 1.svg new file mode 100644 index 00000000..a338b888 --- /dev/null +++ b/icons-original/mix/star - 1.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/star - 2.svg b/icons-original/mix/star - 2.svg new file mode 100644 index 00000000..90568106 --- /dev/null +++ b/icons-original/mix/star - 2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/star - 3.svg b/icons-original/mix/star - 3.svg new file mode 100644 index 00000000..cf57e521 --- /dev/null +++ b/icons-original/mix/star - 3.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/star - 4.svg b/icons-original/mix/star - 4.svg new file mode 100644 index 00000000..050780da --- /dev/null +++ b/icons-original/mix/star - 4.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/star - 5.svg b/icons-original/mix/star - 5.svg new file mode 100644 index 00000000..6710501b --- /dev/null +++ b/icons-original/mix/star - 5.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/not-include/add_folder.svg b/icons-original/not-include/add_folder.svg new file mode 100644 index 00000000..f56026d9 --- /dev/null +++ b/icons-original/not-include/add_folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/not-include/adobe_camera_raw.svg b/icons-original/not-include/adobe_camera_raw.svg new file mode 100644 index 00000000..8a1c0171 --- /dev/null +++ b/icons-original/not-include/adobe_camera_raw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/not-include/arrow_right.svg b/icons-original/not-include/arrow_right.svg new file mode 100644 index 00000000..2a6b3e5a --- /dev/null +++ b/icons-original/not-include/arrow_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/not-include/bridge.svg b/icons-original/not-include/bridge.svg new file mode 100644 index 00000000..95f03061 --- /dev/null +++ b/icons-original/not-include/bridge.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/not-include/bulb.svg b/icons-original/not-include/bulb.svg new file mode 100644 index 00000000..97dc38a4 --- /dev/null +++ b/icons-original/not-include/bulb.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/not-include/capture_one.svg b/icons-original/not-include/capture_one.svg new file mode 100644 index 00000000..78ee441f --- /dev/null +++ b/icons-original/not-include/capture_one.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/not-include/checkIcon.svg b/icons-original/not-include/checkIcon.svg new file mode 100644 index 00000000..f6456e59 --- /dev/null +++ b/icons-original/not-include/checkIcon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/icons-original/not-include/circle-check_2.svg b/icons-original/not-include/circle-check_2.svg new file mode 100644 index 00000000..2bfe3db3 --- /dev/null +++ b/icons-original/not-include/circle-check_2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/not-include/circleCheckFilled.svg b/icons-original/not-include/circleCheckFilled.svg new file mode 100644 index 00000000..f9e47a33 --- /dev/null +++ b/icons-original/not-include/circleCheckFilled.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/not-include/circle_check.svg b/icons-original/not-include/circle_check.svg new file mode 100644 index 00000000..b5143e62 --- /dev/null +++ b/icons-original/not-include/circle_check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons-original/outline/arrow-sort-2.svg b/icons-original/outline/arrow-sort-2.svg new file mode 100644 index 00000000..aeadfa69 --- /dev/null +++ b/icons-original/outline/arrow-sort-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/arrows-diagonal.svg b/icons-original/outline/arrows-diagonal.svg new file mode 100644 index 00000000..beb1766c --- /dev/null +++ b/icons-original/outline/arrows-diagonal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/arrows-sort.svg b/icons-original/outline/arrows-sort.svg new file mode 100644 index 00000000..4a55d173 --- /dev/null +++ b/icons-original/outline/arrows-sort.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/icons-original/outline/circle-check-2.svg b/icons-original/outline/circle-check-2.svg new file mode 100644 index 00000000..08fe1745 --- /dev/null +++ b/icons-original/outline/circle-check-2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/circle.svg b/icons-original/outline/circle.svg new file mode 100644 index 00000000..64712c9a --- /dev/null +++ b/icons-original/outline/circle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/cloud-upload.svg b/icons-original/outline/cloud-upload.svg new file mode 100644 index 00000000..573a1166 --- /dev/null +++ b/icons-original/outline/cloud-upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/device-desktop-analytics.svg b/icons-original/outline/device-desktop-analytics.svg new file mode 100644 index 00000000..6f73f7c4 --- /dev/null +++ b/icons-original/outline/device-desktop-analytics.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/device-desktop-off.svg b/icons-original/outline/device-desktop-off.svg new file mode 100644 index 00000000..d4bcc559 --- /dev/null +++ b/icons-original/outline/device-desktop-off.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/device-desktop.svg b/icons-original/outline/device-desktop.svg new file mode 100644 index 00000000..de5ece7f --- /dev/null +++ b/icons-original/outline/device-desktop.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/device-laptop.svg b/icons-original/outline/device-laptop.svg new file mode 100644 index 00000000..76ce1869 --- /dev/null +++ b/icons-original/outline/device-laptop.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/device-tv.svg b/icons-original/outline/device-tv.svg new file mode 100644 index 00000000..7ad4da6d --- /dev/null +++ b/icons-original/outline/device-tv.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/disk.svg b/icons-original/outline/disk.svg new file mode 100644 index 00000000..dc78d0e2 --- /dev/null +++ b/icons-original/outline/disk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/outline/edit.svg b/icons-original/outline/edit.svg new file mode 100644 index 00000000..7a2957a6 --- /dev/null +++ b/icons-original/outline/edit.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/filter-off.svg b/icons-original/outline/filter-off.svg new file mode 100644 index 00000000..1b29dceb --- /dev/null +++ b/icons-original/outline/filter-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/filter.svg b/icons-original/outline/filter.svg new file mode 100644 index 00000000..1a342bac --- /dev/null +++ b/icons-original/outline/filter.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/info-cirlce-2.svg b/icons-original/outline/info-cirlce-2.svg new file mode 100644 index 00000000..f1c602f8 --- /dev/null +++ b/icons-original/outline/info-cirlce-2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/outline/key-2.svg b/icons-original/outline/key-2.svg new file mode 100644 index 00000000..70aef08f --- /dev/null +++ b/icons-original/outline/key-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/key-duplicate.svg b/icons-original/outline/key-duplicate.svg new file mode 100644 index 00000000..24a43293 --- /dev/null +++ b/icons-original/outline/key-duplicate.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/key.svg b/icons-original/outline/key.svg new file mode 100644 index 00000000..b4b505d0 --- /dev/null +++ b/icons-original/outline/key.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/link.svg b/icons-original/outline/link.svg new file mode 100644 index 00000000..802c10c6 --- /dev/null +++ b/icons-original/outline/link.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/no-duplicate.svg b/icons-original/outline/no-duplicate.svg new file mode 100644 index 00000000..3c12871e --- /dev/null +++ b/icons-original/outline/no-duplicate.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/icons-original/outline/photo-off-2.svg b/icons-original/outline/photo-off-2.svg new file mode 100644 index 00000000..4194a8ee --- /dev/null +++ b/icons-original/outline/photo-off-2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/outline/reload-alert.svg b/icons-original/outline/reload-alert.svg new file mode 100644 index 00000000..840c23ab --- /dev/null +++ b/icons-original/outline/reload-alert.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/sort-ascending-2.svg b/icons-original/outline/sort-ascending-2.svg new file mode 100644 index 00000000..39e77581 --- /dev/null +++ b/icons-original/outline/sort-ascending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-ascending-letters.svg b/icons-original/outline/sort-ascending-letters.svg new file mode 100644 index 00000000..f2652d21 --- /dev/null +++ b/icons-original/outline/sort-ascending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-ascending-numbers.svg b/icons-original/outline/sort-ascending-numbers.svg new file mode 100644 index 00000000..9d372f4c --- /dev/null +++ b/icons-original/outline/sort-ascending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-ascending.svg b/icons-original/outline/sort-ascending.svg new file mode 100644 index 00000000..c23e3bdf --- /dev/null +++ b/icons-original/outline/sort-ascending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-descending-2.svg b/icons-original/outline/sort-descending-2.svg new file mode 100644 index 00000000..cd851ced --- /dev/null +++ b/icons-original/outline/sort-descending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-descending-letters.svg b/icons-original/outline/sort-descending-letters.svg new file mode 100644 index 00000000..b196c907 --- /dev/null +++ b/icons-original/outline/sort-descending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-descending-numbers.svg b/icons-original/outline/sort-descending-numbers.svg new file mode 100644 index 00000000..2b29b05a --- /dev/null +++ b/icons-original/outline/sort-descending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/sort-descending.svg b/icons-original/outline/sort-descending.svg new file mode 100644 index 00000000..de9e1d7f --- /dev/null +++ b/icons-original/outline/sort-descending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/unlink.svg b/icons-original/outline/unlink.svg new file mode 100644 index 00000000..81a41cab --- /dev/null +++ b/icons-original/outline/unlink.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-original/outline/upload-2.svg b/icons-original/outline/upload-2.svg new file mode 100644 index 00000000..5274162e --- /dev/null +++ b/icons-original/outline/upload-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/upload.svg b/icons-original/outline/upload.svg new file mode 100644 index 00000000..6fc7a71d --- /dev/null +++ b/icons-original/outline/upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/writing.svg b/icons-original/outline/writing.svg new file mode 100644 index 00000000..a0907331 --- /dev/null +++ b/icons-original/outline/writing.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/zoom-in.svg b/icons-original/outline/zoom-in.svg new file mode 100644 index 00000000..3f28e0d7 --- /dev/null +++ b/icons-original/outline/zoom-in.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/zoom-out.svg b/icons-original/outline/zoom-out.svg new file mode 100644 index 00000000..b0dbc7bc --- /dev/null +++ b/icons-original/outline/zoom-out.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/zoom-question.svg b/icons-original/outline/zoom-question.svg new file mode 100644 index 00000000..fa2b813e --- /dev/null +++ b/icons-original/outline/zoom-question.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/weird/grab-hand.svg b/icons-original/weird/grab-hand.svg new file mode 100644 index 00000000..895047fa --- /dev/null +++ b/icons-original/weird/grab-hand.svg @@ -0,0 +1,4 @@ + + + + diff --git a/scripts/default-attrs.json b/scripts/default-attrs.json deleted file mode 100644 index e57e91b7..00000000 --- a/scripts/default-attrs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "xmlns": "http://www.w3.org/2000/svg", - "width": 24, - "height": 24, - "viewBox": "0 0 24 24", - "fill": "none", - "stroke": "currentColor", - "stroke-width": 2, - "stroke-linecap": "round", - "stroke-linejoin": "round" -} diff --git a/scripts/default-attrsxxx.json b/scripts/default-attrsxxx.json new file mode 100644 index 00000000..35a95a3f --- /dev/null +++ b/scripts/default-attrsxxx.json @@ -0,0 +1,11 @@ +{ + "xmlns": "http://www.w3.org/2000/svg", + "width": 24, + "height": 24, + "viewBox": "0 0 24 24", + "fill": "none", + "stroke": "currentColor", + "stroke-width": 2, + "stroke-linecap": "round", + "stroke-linejoin": "round" +} diff --git a/scripts/writeSvgObjs.mjs b/scripts/writeSvgObjsxxx.mjs similarity index 100% rename from scripts/writeSvgObjs.mjs rename to scripts/writeSvgObjsxxx.mjs From 00847256ffd37adf6009bbac0959876d5ddf936a Mon Sep 17 00:00:00 2001 From: booi-dev Date: Fri, 31 May 2024 10:42:55 +0530 Subject: [PATCH 18/34] add: remaining icons for culling --- icons-original/mix/mouse-left-2.svg | 9 +++++++++ icons-original/mix/sparkle.svg | 4 ++++ icons-original/outline/spray_2.svg | 4 ++++ icons-original/outline/view-all.svg | 3 +++ 4 files changed, 20 insertions(+) create mode 100644 icons-original/mix/mouse-left-2.svg create mode 100644 icons-original/mix/sparkle.svg create mode 100644 icons-original/outline/spray_2.svg create mode 100644 icons-original/outline/view-all.svg diff --git a/icons-original/mix/mouse-left-2.svg b/icons-original/mix/mouse-left-2.svg new file mode 100644 index 00000000..9600cd1c --- /dev/null +++ b/icons-original/mix/mouse-left-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/mix/sparkle.svg b/icons-original/mix/sparkle.svg new file mode 100644 index 00000000..dc5682cd --- /dev/null +++ b/icons-original/mix/sparkle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/spray_2.svg b/icons-original/outline/spray_2.svg new file mode 100644 index 00000000..245c5e04 --- /dev/null +++ b/icons-original/outline/spray_2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/outline/view-all.svg b/icons-original/outline/view-all.svg new file mode 100644 index 00000000..a74cf782 --- /dev/null +++ b/icons-original/outline/view-all.svg @@ -0,0 +1,3 @@ + + + From 3b4b94e88db5e55e56c8db479ac86a971394c0ec Mon Sep 17 00:00:00 2001 From: booi-dev Date: Sat, 1 Jun 2024 01:05:06 +0530 Subject: [PATCH 19/34] update: add edit icons --- icons-optimized/arrow-sort-2.svg | 7 + icons-optimized/arrows-diagonal.svg | 13 ++ icons-optimized/arrows-sort.svg | 11 ++ icons-optimized/circle-check-2.svg | 12 ++ icons-optimized/circle.svg | 14 ++ icons-optimized/cloud-upload.svg | 12 ++ icons-optimized/device-desktop-analytics.svg | 17 +++ icons-optimized/device-desktop-off.svg | 14 ++ icons-optimized/device-desktop.svg | 12 ++ icons-optimized/device-laptop.svg | 11 ++ icons-optimized/device-tv.svg | 11 ++ icons-optimized/disk.svg | 14 ++ icons-optimized/edit.svg | 12 ++ icons-optimized/filter-off.svg | 11 ++ icons-optimized/filter.svg | 14 ++ icons-optimized/info-cirlce-2.svg | 14 ++ icons-optimized/key-2.svg | 7 + icons-optimized/key-duplicate.svg | 12 ++ icons-optimized/key.svg | 13 ++ icons-optimized/link.svg | 11 ++ icons-optimized/no-duplicate.svg | 14 ++ icons-optimized/photo-off-2.svg | 13 ++ icons-optimized/reload-alert.svg | 7 + icons-optimized/sort-ascending-2.svg | 13 ++ icons-optimized/sort-ascending-letters.svg | 13 ++ icons-optimized/sort-ascending-numbers.svg | 14 ++ icons-optimized/sort-ascending.svg | 14 ++ icons-optimized/sort-descending-2.svg | 13 ++ icons-optimized/sort-descending-letters.svg | 13 ++ icons-optimized/sort-descending-numbers.svg | 14 ++ icons-optimized/sort-descending.svg | 14 ++ icons-optimized/spray_2.svg | 10 ++ icons-optimized/unlink.svg | 15 ++ icons-optimized/upload-2.svg | 7 + icons-optimized/upload.svg | 12 ++ icons-optimized/view-all.svg | 6 + icons-optimized/writing.svg | 7 + icons-optimized/zoom-in.svg | 13 ++ icons-optimized/zoom-out.svg | 12 ++ icons-optimized/zoom-question.svg | 13 ++ icons-original/accent/check_box.svg | 6 + icons-original/accent/cloud-upload-accent.svg | 4 + icons-original/accent/partially_checked.svg | 6 + icons-original/accent/upload-accent.svg | 5 + icons-original/color/edits_logo_text.svg | 29 ++++ icons-original/fill/checkBlue.svg | 10 ++ icons-original/fill/circle-fill.svg | 3 + icons-original/fill/di/atom-di.svg | 5 + icons-original/fill/di/fail-di.svg | 5 + icons-original/fill/di/play-di.svg | 4 + icons-original/fill/di/success-di.svg | 4 + icons-original/mix/Crown Play.svg | 4 + icons-original/mix/check_box_empty.svg | 4 + icons-original/mix/collection.svg | 11 ++ icons-original/mix/flag-fill.svg | 11 ++ icons-original/mix/folder-fill.svg | 16 +++ icons-original/not-include/redirect.svg | 28 ++++ icons-original/outline/brand-github.svg | 10 ++ icons-original/outline/brand-instagram.svg | 12 ++ icons-original/outline/brand-youtube.svg | 11 ++ icons-original/outline/current-location.svg | 15 ++ icons-original/outline/dots-vertical.svg | 12 ++ icons-original/outline/file-search.svg | 10 +- icons-original/outline/flag-off.svg | 11 ++ icons-original/outline/info.svg | 9 ++ icons-original/outline/map-2.svg | 14 ++ icons-original/outline/map-pin-off.svg | 12 ++ icons-original/outline/map-pin.svg | 11 ++ icons-original/outline/minus.svg | 3 + icons-original/outline/pinned.svg | 12 ++ icons-original/outline/plus.svg | 11 ++ icons-original/outline/refresh-2.svg | 8 ++ icons-original/outline/refresh-alert.svg | 10 ++ icons-original/outline/refresh.svg | 10 ++ icons-original/outline/rotate-90.svg | 11 -- icons-original/outline/rotate-clockwise.svg | 10 ++ icons-original/outline/rotate.svg | 10 ++ icons-original/outline/wifi-1.svg | 11 ++ icons-original/outline/wifi-2.svg | 12 ++ icons-original/outline/wifi-off.svg | 12 ++ icons-original/outline/wifi.svg | 13 ++ icons-original/outline/zoom-question.svg | 10 +- icons-original/weird/aftershoot_edit.svg | 30 ++++ icons-original/weird/check_box.svg | 6 + src/Icon.ts | 3 +- src/icons-neo/arrow-sort-2.tsx | 21 +++ src/icons-neo/arrows-diagonal.tsx | 31 +++++ src/icons-neo/arrows-sort.tsx | 29 ++++ src/icons-neo/circle-check-2.tsx | 27 ++++ src/icons-neo/circle.tsx | 27 ++++ src/icons-neo/cloud-upload.tsx | 30 ++++ src/icons-neo/device-desktop-analytics.tsx | 35 +++++ src/icons-neo/device-desktop-off.tsx | 32 +++++ src/icons-neo/device-desktop.tsx | 30 ++++ src/icons-neo/device-laptop.tsx | 29 ++++ src/icons-neo/device-tv.tsx | 29 ++++ src/icons-neo/disk.tsx | 39 ++++++ src/icons-neo/edit.tsx | 30 ++++ src/icons-neo/filter-off.tsx | 29 ++++ src/icons-neo/filter.tsx | 27 ++++ src/icons-neo/index.ts | 40 ++++++ src/icons-neo/info-cirlce-2.tsx | 32 +++++ src/icons-neo/key-2.tsx | 21 +++ src/icons-neo/key-duplicate.tsx | 27 ++++ src/icons-neo/key.tsx | 31 +++++ src/icons-neo/link.tsx | 29 ++++ src/icons-neo/no-duplicate.tsx | 32 +++++ src/icons-neo/photo-off-2.tsx | 28 ++++ src/icons-neo/reload-alert.tsx | 21 +++ src/icons-neo/sort-ascending-2.tsx | 31 +++++ src/icons-neo/sort-ascending-letters.tsx | 31 +++++ src/icons-neo/sort-ascending-numbers.tsx | 32 +++++ src/icons-neo/sort-ascending.tsx | 32 +++++ src/icons-neo/sort-descending-2.tsx | 31 +++++ src/icons-neo/sort-descending-letters.tsx | 31 +++++ src/icons-neo/sort-descending-numbers.tsx | 32 +++++ src/icons-neo/sort-descending.tsx | 32 +++++ src/icons-neo/spray_2.tsx | 25 ++++ src/icons-neo/unlink.tsx | 33 +++++ src/icons-neo/upload-2.tsx | 21 +++ src/icons-neo/upload.tsx | 30 ++++ src/icons-neo/view-all.tsx | 20 +++ src/icons-neo/writing.tsx | 21 +++ src/icons-neo/zoom-in.tsx | 31 +++++ src/icons-neo/zoom-out.tsx | 30 ++++ src/icons-neo/zoom-question.tsx | 31 +++++ src/stories-neo/ArrowSort2.stories.tsx | 68 ++++++++++ src/stories-neo/ArrowsDiagonal.stories.tsx | 68 ++++++++++ src/stories-neo/ArrowsSort.stories.tsx | 68 ++++++++++ src/stories-neo/Circle.stories.tsx | 68 ++++++++++ src/stories-neo/CircleCheck2.stories.tsx | 68 ++++++++++ src/stories-neo/CloudUpload.stories.tsx | 68 ++++++++++ src/stories-neo/DeviceDesktop.stories.tsx | 68 ++++++++++ .../DeviceDesktopAnalytics.stories.tsx | 68 ++++++++++ src/stories-neo/DeviceDesktopOff.stories.tsx | 68 ++++++++++ src/stories-neo/DeviceLaptop.stories.tsx | 68 ++++++++++ src/stories-neo/DeviceTv.stories.tsx | 68 ++++++++++ src/stories-neo/Disk.stories.tsx | 68 ++++++++++ src/stories-neo/Edit.stories.tsx | 68 ++++++++++ src/stories-neo/Filter.stories.tsx | 68 ++++++++++ src/stories-neo/FilterOff.stories.tsx | 68 ++++++++++ src/stories-neo/InfoCirlce2.stories.tsx | 68 ++++++++++ src/stories-neo/Key.stories.tsx | 68 ++++++++++ src/stories-neo/Key2.stories.tsx | 68 ++++++++++ src/stories-neo/KeyDuplicate.stories.tsx | 68 ++++++++++ src/stories-neo/Link.stories.tsx | 68 ++++++++++ src/stories-neo/NoDuplicate.stories.tsx | 68 ++++++++++ src/stories-neo/PhotoOff2.stories.tsx | 68 ++++++++++ src/stories-neo/ReloadAlert.stories.tsx | 68 ++++++++++ src/stories-neo/SortAscending.stories.tsx | 68 ++++++++++ src/stories-neo/SortAscending2.stories.tsx | 68 ++++++++++ .../SortAscendingLetters.stories.tsx | 68 ++++++++++ .../SortAscendingNumbers.stories.tsx | 68 ++++++++++ src/stories-neo/SortDescending.stories.tsx | 68 ++++++++++ src/stories-neo/SortDescending2.stories.tsx | 68 ++++++++++ .../SortDescendingLetters.stories.tsx | 68 ++++++++++ .../SortDescendingNumbers.stories.tsx | 68 ++++++++++ src/stories-neo/Spray2.stories.tsx | 68 ++++++++++ src/stories-neo/Unlink.stories.tsx | 68 ++++++++++ src/stories-neo/Upload.stories.tsx | 68 ++++++++++ src/stories-neo/Upload2.stories.tsx | 68 ++++++++++ src/stories-neo/ViewAll.stories.tsx | 68 ++++++++++ src/stories-neo/Writing.stories.tsx | 68 ++++++++++ src/stories-neo/X.stories.tsx | 128 +++++++++--------- src/stories-neo/ZoomIn.stories.tsx | 68 ++++++++++ src/stories-neo/ZoomOut.stories.tsx | 68 ++++++++++ src/stories-neo/ZoomQuestion.stories.tsx | 68 ++++++++++ src/styles/tailwind.css | 24 ++++ unicon.config.json | 4 + 169 files changed, 4930 insertions(+), 89 deletions(-) create mode 100644 icons-optimized/arrow-sort-2.svg create mode 100644 icons-optimized/arrows-diagonal.svg create mode 100644 icons-optimized/arrows-sort.svg create mode 100644 icons-optimized/circle-check-2.svg create mode 100644 icons-optimized/circle.svg create mode 100644 icons-optimized/cloud-upload.svg create mode 100644 icons-optimized/device-desktop-analytics.svg create mode 100644 icons-optimized/device-desktop-off.svg create mode 100644 icons-optimized/device-desktop.svg create mode 100644 icons-optimized/device-laptop.svg create mode 100644 icons-optimized/device-tv.svg create mode 100644 icons-optimized/disk.svg create mode 100644 icons-optimized/edit.svg create mode 100644 icons-optimized/filter-off.svg create mode 100644 icons-optimized/filter.svg create mode 100644 icons-optimized/info-cirlce-2.svg create mode 100644 icons-optimized/key-2.svg create mode 100644 icons-optimized/key-duplicate.svg create mode 100644 icons-optimized/key.svg create mode 100644 icons-optimized/link.svg create mode 100644 icons-optimized/no-duplicate.svg create mode 100644 icons-optimized/photo-off-2.svg create mode 100644 icons-optimized/reload-alert.svg create mode 100644 icons-optimized/sort-ascending-2.svg create mode 100644 icons-optimized/sort-ascending-letters.svg create mode 100644 icons-optimized/sort-ascending-numbers.svg create mode 100644 icons-optimized/sort-ascending.svg create mode 100644 icons-optimized/sort-descending-2.svg create mode 100644 icons-optimized/sort-descending-letters.svg create mode 100644 icons-optimized/sort-descending-numbers.svg create mode 100644 icons-optimized/sort-descending.svg create mode 100644 icons-optimized/spray_2.svg create mode 100644 icons-optimized/unlink.svg create mode 100644 icons-optimized/upload-2.svg create mode 100644 icons-optimized/upload.svg create mode 100644 icons-optimized/view-all.svg create mode 100644 icons-optimized/writing.svg create mode 100644 icons-optimized/zoom-in.svg create mode 100644 icons-optimized/zoom-out.svg create mode 100644 icons-optimized/zoom-question.svg create mode 100644 icons-original/accent/check_box.svg create mode 100644 icons-original/accent/cloud-upload-accent.svg create mode 100644 icons-original/accent/partially_checked.svg create mode 100644 icons-original/accent/upload-accent.svg create mode 100644 icons-original/color/edits_logo_text.svg create mode 100644 icons-original/fill/checkBlue.svg create mode 100644 icons-original/fill/circle-fill.svg create mode 100644 icons-original/fill/di/atom-di.svg create mode 100644 icons-original/fill/di/fail-di.svg create mode 100644 icons-original/fill/di/play-di.svg create mode 100644 icons-original/fill/di/success-di.svg create mode 100644 icons-original/mix/Crown Play.svg create mode 100644 icons-original/mix/check_box_empty.svg create mode 100644 icons-original/mix/collection.svg create mode 100644 icons-original/mix/flag-fill.svg create mode 100644 icons-original/mix/folder-fill.svg create mode 100644 icons-original/not-include/redirect.svg create mode 100644 icons-original/outline/brand-github.svg create mode 100644 icons-original/outline/brand-instagram.svg create mode 100644 icons-original/outline/brand-youtube.svg create mode 100644 icons-original/outline/current-location.svg create mode 100644 icons-original/outline/dots-vertical.svg create mode 100644 icons-original/outline/flag-off.svg create mode 100644 icons-original/outline/info.svg create mode 100644 icons-original/outline/map-2.svg create mode 100644 icons-original/outline/map-pin-off.svg create mode 100644 icons-original/outline/map-pin.svg create mode 100644 icons-original/outline/minus.svg create mode 100644 icons-original/outline/pinned.svg create mode 100644 icons-original/outline/plus.svg create mode 100644 icons-original/outline/refresh-2.svg create mode 100644 icons-original/outline/refresh-alert.svg create mode 100644 icons-original/outline/refresh.svg delete mode 100644 icons-original/outline/rotate-90.svg create mode 100644 icons-original/outline/rotate-clockwise.svg create mode 100644 icons-original/outline/rotate.svg create mode 100644 icons-original/outline/wifi-1.svg create mode 100644 icons-original/outline/wifi-2.svg create mode 100644 icons-original/outline/wifi-off.svg create mode 100644 icons-original/outline/wifi.svg create mode 100644 icons-original/weird/aftershoot_edit.svg create mode 100644 icons-original/weird/check_box.svg create mode 100644 src/icons-neo/arrow-sort-2.tsx create mode 100644 src/icons-neo/arrows-diagonal.tsx create mode 100644 src/icons-neo/arrows-sort.tsx create mode 100644 src/icons-neo/circle-check-2.tsx create mode 100644 src/icons-neo/circle.tsx create mode 100644 src/icons-neo/cloud-upload.tsx create mode 100644 src/icons-neo/device-desktop-analytics.tsx create mode 100644 src/icons-neo/device-desktop-off.tsx create mode 100644 src/icons-neo/device-desktop.tsx create mode 100644 src/icons-neo/device-laptop.tsx create mode 100644 src/icons-neo/device-tv.tsx create mode 100644 src/icons-neo/disk.tsx create mode 100644 src/icons-neo/edit.tsx create mode 100644 src/icons-neo/filter-off.tsx create mode 100644 src/icons-neo/filter.tsx create mode 100644 src/icons-neo/info-cirlce-2.tsx create mode 100644 src/icons-neo/key-2.tsx create mode 100644 src/icons-neo/key-duplicate.tsx create mode 100644 src/icons-neo/key.tsx create mode 100644 src/icons-neo/link.tsx create mode 100644 src/icons-neo/no-duplicate.tsx create mode 100644 src/icons-neo/photo-off-2.tsx create mode 100644 src/icons-neo/reload-alert.tsx create mode 100644 src/icons-neo/sort-ascending-2.tsx create mode 100644 src/icons-neo/sort-ascending-letters.tsx create mode 100644 src/icons-neo/sort-ascending-numbers.tsx create mode 100644 src/icons-neo/sort-ascending.tsx create mode 100644 src/icons-neo/sort-descending-2.tsx create mode 100644 src/icons-neo/sort-descending-letters.tsx create mode 100644 src/icons-neo/sort-descending-numbers.tsx create mode 100644 src/icons-neo/sort-descending.tsx create mode 100644 src/icons-neo/spray_2.tsx create mode 100644 src/icons-neo/unlink.tsx create mode 100644 src/icons-neo/upload-2.tsx create mode 100644 src/icons-neo/upload.tsx create mode 100644 src/icons-neo/view-all.tsx create mode 100644 src/icons-neo/writing.tsx create mode 100644 src/icons-neo/zoom-in.tsx create mode 100644 src/icons-neo/zoom-out.tsx create mode 100644 src/icons-neo/zoom-question.tsx create mode 100644 src/stories-neo/ArrowSort2.stories.tsx create mode 100644 src/stories-neo/ArrowsDiagonal.stories.tsx create mode 100644 src/stories-neo/ArrowsSort.stories.tsx create mode 100644 src/stories-neo/Circle.stories.tsx create mode 100644 src/stories-neo/CircleCheck2.stories.tsx create mode 100644 src/stories-neo/CloudUpload.stories.tsx create mode 100644 src/stories-neo/DeviceDesktop.stories.tsx create mode 100644 src/stories-neo/DeviceDesktopAnalytics.stories.tsx create mode 100644 src/stories-neo/DeviceDesktopOff.stories.tsx create mode 100644 src/stories-neo/DeviceLaptop.stories.tsx create mode 100644 src/stories-neo/DeviceTv.stories.tsx create mode 100644 src/stories-neo/Disk.stories.tsx create mode 100644 src/stories-neo/Edit.stories.tsx create mode 100644 src/stories-neo/Filter.stories.tsx create mode 100644 src/stories-neo/FilterOff.stories.tsx create mode 100644 src/stories-neo/InfoCirlce2.stories.tsx create mode 100644 src/stories-neo/Key.stories.tsx create mode 100644 src/stories-neo/Key2.stories.tsx create mode 100644 src/stories-neo/KeyDuplicate.stories.tsx create mode 100644 src/stories-neo/Link.stories.tsx create mode 100644 src/stories-neo/NoDuplicate.stories.tsx create mode 100644 src/stories-neo/PhotoOff2.stories.tsx create mode 100644 src/stories-neo/ReloadAlert.stories.tsx create mode 100644 src/stories-neo/SortAscending.stories.tsx create mode 100644 src/stories-neo/SortAscending2.stories.tsx create mode 100644 src/stories-neo/SortAscendingLetters.stories.tsx create mode 100644 src/stories-neo/SortAscendingNumbers.stories.tsx create mode 100644 src/stories-neo/SortDescending.stories.tsx create mode 100644 src/stories-neo/SortDescending2.stories.tsx create mode 100644 src/stories-neo/SortDescendingLetters.stories.tsx create mode 100644 src/stories-neo/SortDescendingNumbers.stories.tsx create mode 100644 src/stories-neo/Spray2.stories.tsx create mode 100644 src/stories-neo/Unlink.stories.tsx create mode 100644 src/stories-neo/Upload.stories.tsx create mode 100644 src/stories-neo/Upload2.stories.tsx create mode 100644 src/stories-neo/ViewAll.stories.tsx create mode 100644 src/stories-neo/Writing.stories.tsx create mode 100644 src/stories-neo/ZoomIn.stories.tsx create mode 100644 src/stories-neo/ZoomOut.stories.tsx create mode 100644 src/stories-neo/ZoomQuestion.stories.tsx create mode 100644 unicon.config.json diff --git a/icons-optimized/arrow-sort-2.svg b/icons-optimized/arrow-sort-2.svg new file mode 100644 index 00000000..d4b7cef6 --- /dev/null +++ b/icons-optimized/arrow-sort-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/arrows-diagonal.svg b/icons-optimized/arrows-diagonal.svg new file mode 100644 index 00000000..2b05b5b0 --- /dev/null +++ b/icons-optimized/arrows-diagonal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/arrows-sort.svg b/icons-optimized/arrows-sort.svg new file mode 100644 index 00000000..5659ab8c --- /dev/null +++ b/icons-optimized/arrows-sort.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-check-2.svg b/icons-optimized/circle-check-2.svg new file mode 100644 index 00000000..88bc31fa --- /dev/null +++ b/icons-optimized/circle-check-2.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/circle.svg b/icons-optimized/circle.svg new file mode 100644 index 00000000..18ee1886 --- /dev/null +++ b/icons-optimized/circle.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/cloud-upload.svg b/icons-optimized/cloud-upload.svg new file mode 100644 index 00000000..0e0a9c6b --- /dev/null +++ b/icons-optimized/cloud-upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop-analytics.svg b/icons-optimized/device-desktop-analytics.svg new file mode 100644 index 00000000..7ee4df16 --- /dev/null +++ b/icons-optimized/device-desktop-analytics.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop-off.svg b/icons-optimized/device-desktop-off.svg new file mode 100644 index 00000000..77badf3a --- /dev/null +++ b/icons-optimized/device-desktop-off.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop.svg b/icons-optimized/device-desktop.svg new file mode 100644 index 00000000..ce57ae55 --- /dev/null +++ b/icons-optimized/device-desktop.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/device-laptop.svg b/icons-optimized/device-laptop.svg new file mode 100644 index 00000000..55aeecd5 --- /dev/null +++ b/icons-optimized/device-laptop.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/device-tv.svg b/icons-optimized/device-tv.svg new file mode 100644 index 00000000..c355ab64 --- /dev/null +++ b/icons-optimized/device-tv.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/disk.svg b/icons-optimized/disk.svg new file mode 100644 index 00000000..1cc0faec --- /dev/null +++ b/icons-optimized/disk.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/icons-optimized/edit.svg b/icons-optimized/edit.svg new file mode 100644 index 00000000..f5fa609b --- /dev/null +++ b/icons-optimized/edit.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/filter-off.svg b/icons-optimized/filter-off.svg new file mode 100644 index 00000000..40dad92f --- /dev/null +++ b/icons-optimized/filter-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/filter.svg b/icons-optimized/filter.svg new file mode 100644 index 00000000..2373a415 --- /dev/null +++ b/icons-optimized/filter.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/info-cirlce-2.svg b/icons-optimized/info-cirlce-2.svg new file mode 100644 index 00000000..f70a894a --- /dev/null +++ b/icons-optimized/info-cirlce-2.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/icons-optimized/key-2.svg b/icons-optimized/key-2.svg new file mode 100644 index 00000000..c3ba64dc --- /dev/null +++ b/icons-optimized/key-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/key-duplicate.svg b/icons-optimized/key-duplicate.svg new file mode 100644 index 00000000..0590abe2 --- /dev/null +++ b/icons-optimized/key-duplicate.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/key.svg b/icons-optimized/key.svg new file mode 100644 index 00000000..782642e5 --- /dev/null +++ b/icons-optimized/key.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/link.svg b/icons-optimized/link.svg new file mode 100644 index 00000000..42f77dea --- /dev/null +++ b/icons-optimized/link.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/no-duplicate.svg b/icons-optimized/no-duplicate.svg new file mode 100644 index 00000000..2825df05 --- /dev/null +++ b/icons-optimized/no-duplicate.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/icons-optimized/photo-off-2.svg b/icons-optimized/photo-off-2.svg new file mode 100644 index 00000000..2126ff29 --- /dev/null +++ b/icons-optimized/photo-off-2.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/icons-optimized/reload-alert.svg b/icons-optimized/reload-alert.svg new file mode 100644 index 00000000..96d4a686 --- /dev/null +++ b/icons-optimized/reload-alert.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/sort-ascending-2.svg b/icons-optimized/sort-ascending-2.svg new file mode 100644 index 00000000..b6988b71 --- /dev/null +++ b/icons-optimized/sort-ascending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending-letters.svg b/icons-optimized/sort-ascending-letters.svg new file mode 100644 index 00000000..eed23080 --- /dev/null +++ b/icons-optimized/sort-ascending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending-numbers.svg b/icons-optimized/sort-ascending-numbers.svg new file mode 100644 index 00000000..bcfb64fc --- /dev/null +++ b/icons-optimized/sort-ascending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending.svg b/icons-optimized/sort-ascending.svg new file mode 100644 index 00000000..2b93ccf3 --- /dev/null +++ b/icons-optimized/sort-ascending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-2.svg b/icons-optimized/sort-descending-2.svg new file mode 100644 index 00000000..4d4eaca0 --- /dev/null +++ b/icons-optimized/sort-descending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-letters.svg b/icons-optimized/sort-descending-letters.svg new file mode 100644 index 00000000..bbf616f2 --- /dev/null +++ b/icons-optimized/sort-descending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-numbers.svg b/icons-optimized/sort-descending-numbers.svg new file mode 100644 index 00000000..63e48601 --- /dev/null +++ b/icons-optimized/sort-descending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending.svg b/icons-optimized/sort-descending.svg new file mode 100644 index 00000000..7d822b40 --- /dev/null +++ b/icons-optimized/sort-descending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/spray_2.svg b/icons-optimized/spray_2.svg new file mode 100644 index 00000000..be53fd1f --- /dev/null +++ b/icons-optimized/spray_2.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/unlink.svg b/icons-optimized/unlink.svg new file mode 100644 index 00000000..135760cd --- /dev/null +++ b/icons-optimized/unlink.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/upload-2.svg b/icons-optimized/upload-2.svg new file mode 100644 index 00000000..05aed219 --- /dev/null +++ b/icons-optimized/upload-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/upload.svg b/icons-optimized/upload.svg new file mode 100644 index 00000000..7658c84c --- /dev/null +++ b/icons-optimized/upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/view-all.svg b/icons-optimized/view-all.svg new file mode 100644 index 00000000..c4873a29 --- /dev/null +++ b/icons-optimized/view-all.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/writing.svg b/icons-optimized/writing.svg new file mode 100644 index 00000000..3d67f965 --- /dev/null +++ b/icons-optimized/writing.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/zoom-in.svg b/icons-optimized/zoom-in.svg new file mode 100644 index 00000000..0d9e39af --- /dev/null +++ b/icons-optimized/zoom-in.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/zoom-out.svg b/icons-optimized/zoom-out.svg new file mode 100644 index 00000000..2abc5109 --- /dev/null +++ b/icons-optimized/zoom-out.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/zoom-question.svg b/icons-optimized/zoom-question.svg new file mode 100644 index 00000000..5374139d --- /dev/null +++ b/icons-optimized/zoom-question.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/accent/check_box.svg b/icons-original/accent/check_box.svg new file mode 100644 index 00000000..0ecd46cf --- /dev/null +++ b/icons-original/accent/check_box.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/accent/cloud-upload-accent.svg b/icons-original/accent/cloud-upload-accent.svg new file mode 100644 index 00000000..4ac7caed --- /dev/null +++ b/icons-original/accent/cloud-upload-accent.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/accent/partially_checked.svg b/icons-original/accent/partially_checked.svg new file mode 100644 index 00000000..347fcd1d --- /dev/null +++ b/icons-original/accent/partially_checked.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/accent/upload-accent.svg b/icons-original/accent/upload-accent.svg new file mode 100644 index 00000000..6eda67d3 --- /dev/null +++ b/icons-original/accent/upload-accent.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/color/edits_logo_text.svg b/icons-original/color/edits_logo_text.svg new file mode 100644 index 00000000..ec298314 --- /dev/null +++ b/icons-original/color/edits_logo_text.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/fill/checkBlue.svg b/icons-original/fill/checkBlue.svg new file mode 100644 index 00000000..6aab7c55 --- /dev/null +++ b/icons-original/fill/checkBlue.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/fill/circle-fill.svg b/icons-original/fill/circle-fill.svg new file mode 100644 index 00000000..53ed1704 --- /dev/null +++ b/icons-original/fill/circle-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/di/atom-di.svg b/icons-original/fill/di/atom-di.svg new file mode 100644 index 00000000..9c559dee --- /dev/null +++ b/icons-original/fill/di/atom-di.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/fill/di/fail-di.svg b/icons-original/fill/di/fail-di.svg new file mode 100644 index 00000000..a2f7cebb --- /dev/null +++ b/icons-original/fill/di/fail-di.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/fill/di/play-di.svg b/icons-original/fill/di/play-di.svg new file mode 100644 index 00000000..481869b4 --- /dev/null +++ b/icons-original/fill/di/play-di.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/di/success-di.svg b/icons-original/fill/di/success-di.svg new file mode 100644 index 00000000..4021c4b5 --- /dev/null +++ b/icons-original/fill/di/success-di.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/Crown Play.svg b/icons-original/mix/Crown Play.svg new file mode 100644 index 00000000..ce1001dc --- /dev/null +++ b/icons-original/mix/Crown Play.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/check_box_empty.svg b/icons-original/mix/check_box_empty.svg new file mode 100644 index 00000000..f0ea55e9 --- /dev/null +++ b/icons-original/mix/check_box_empty.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/collection.svg b/icons-original/mix/collection.svg new file mode 100644 index 00000000..57b1578a --- /dev/null +++ b/icons-original/mix/collection.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/flag-fill.svg b/icons-original/mix/flag-fill.svg new file mode 100644 index 00000000..50a4ae50 --- /dev/null +++ b/icons-original/mix/flag-fill.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/mix/folder-fill.svg b/icons-original/mix/folder-fill.svg new file mode 100644 index 00000000..b6d9d7f8 --- /dev/null +++ b/icons-original/mix/folder-fill.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-original/not-include/redirect.svg b/icons-original/not-include/redirect.svg new file mode 100644 index 00000000..acf32b07 --- /dev/null +++ b/icons-original/not-include/redirect.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/brand-github.svg b/icons-original/outline/brand-github.svg new file mode 100644 index 00000000..15c9d553 --- /dev/null +++ b/icons-original/outline/brand-github.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/brand-instagram.svg b/icons-original/outline/brand-instagram.svg new file mode 100644 index 00000000..37c4ebf4 --- /dev/null +++ b/icons-original/outline/brand-instagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/brand-youtube.svg b/icons-original/outline/brand-youtube.svg new file mode 100644 index 00000000..72382c48 --- /dev/null +++ b/icons-original/outline/brand-youtube.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/current-location.svg b/icons-original/outline/current-location.svg new file mode 100644 index 00000000..1c3d44ab --- /dev/null +++ b/icons-original/outline/current-location.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-original/outline/dots-vertical.svg b/icons-original/outline/dots-vertical.svg new file mode 100644 index 00000000..f7cbfd2a --- /dev/null +++ b/icons-original/outline/dots-vertical.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/file-search.svg b/icons-original/outline/file-search.svg index a045185e..294a01d7 100644 --- a/icons-original/outline/file-search.svg +++ b/icons-original/outline/file-search.svg @@ -1,9 +1,9 @@ - + - - - - + + + + diff --git a/icons-original/outline/flag-off.svg b/icons-original/outline/flag-off.svg new file mode 100644 index 00000000..7fe6fe1d --- /dev/null +++ b/icons-original/outline/flag-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/info.svg b/icons-original/outline/info.svg new file mode 100644 index 00000000..70b5e0fb --- /dev/null +++ b/icons-original/outline/info.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/outline/map-2.svg b/icons-original/outline/map-2.svg new file mode 100644 index 00000000..e9db6add --- /dev/null +++ b/icons-original/outline/map-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/map-pin-off.svg b/icons-original/outline/map-pin-off.svg new file mode 100644 index 00000000..dfc5c454 --- /dev/null +++ b/icons-original/outline/map-pin-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/map-pin.svg b/icons-original/outline/map-pin.svg new file mode 100644 index 00000000..553641e6 --- /dev/null +++ b/icons-original/outline/map-pin.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/minus.svg b/icons-original/outline/minus.svg new file mode 100644 index 00000000..31571662 --- /dev/null +++ b/icons-original/outline/minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/pinned.svg b/icons-original/outline/pinned.svg new file mode 100644 index 00000000..9febb2d1 --- /dev/null +++ b/icons-original/outline/pinned.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/plus.svg b/icons-original/outline/plus.svg new file mode 100644 index 00000000..fcbc98c5 --- /dev/null +++ b/icons-original/outline/plus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/refresh-2.svg b/icons-original/outline/refresh-2.svg new file mode 100644 index 00000000..062373a5 --- /dev/null +++ b/icons-original/outline/refresh-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons-original/outline/refresh-alert.svg b/icons-original/outline/refresh-alert.svg new file mode 100644 index 00000000..b47f48d8 --- /dev/null +++ b/icons-original/outline/refresh-alert.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/refresh.svg b/icons-original/outline/refresh.svg new file mode 100644 index 00000000..269f8eea --- /dev/null +++ b/icons-original/outline/refresh.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/rotate-90.svg b/icons-original/outline/rotate-90.svg deleted file mode 100644 index 9e46ef49..00000000 --- a/icons-original/outline/rotate-90.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-original/outline/rotate-clockwise.svg b/icons-original/outline/rotate-clockwise.svg new file mode 100644 index 00000000..67472f0c --- /dev/null +++ b/icons-original/outline/rotate-clockwise.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/rotate.svg b/icons-original/outline/rotate.svg new file mode 100644 index 00000000..2d060222 --- /dev/null +++ b/icons-original/outline/rotate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/wifi-1.svg b/icons-original/outline/wifi-1.svg new file mode 100644 index 00000000..e2b2d80e --- /dev/null +++ b/icons-original/outline/wifi-1.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/wifi-2.svg b/icons-original/outline/wifi-2.svg new file mode 100644 index 00000000..bee596ce --- /dev/null +++ b/icons-original/outline/wifi-2.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/wifi-off.svg b/icons-original/outline/wifi-off.svg new file mode 100644 index 00000000..064859f0 --- /dev/null +++ b/icons-original/outline/wifi-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/wifi.svg b/icons-original/outline/wifi.svg new file mode 100644 index 00000000..e7daa6d6 --- /dev/null +++ b/icons-original/outline/wifi.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/zoom-question.svg b/icons-original/outline/zoom-question.svg index fa2b813e..c68b3b4a 100644 --- a/icons-original/outline/zoom-question.svg +++ b/icons-original/outline/zoom-question.svg @@ -1,9 +1,9 @@ - + - - - - + + + + diff --git a/icons-original/weird/aftershoot_edit.svg b/icons-original/weird/aftershoot_edit.svg new file mode 100644 index 00000000..05db6572 --- /dev/null +++ b/icons-original/weird/aftershoot_edit.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-original/weird/check_box.svg b/icons-original/weird/check_box.svg new file mode 100644 index 00000000..0ecd46cf --- /dev/null +++ b/icons-original/weird/check_box.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/Icon.ts b/src/Icon.ts index 17aa03c8..42df4cbd 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -10,7 +10,6 @@ interface IconComponentProps extends ASIProps { /** * Aftershoot icon component - * * @component Icon * Common component for all icons */ @@ -26,7 +25,7 @@ const Icon = forwardRef( stroke: inActive ? '#777777' : color, ...(size ? { style: { width: size, height: 'auto' } } : {}), fill: fillColor, - className: cn(`w-[24px] h-[24px] shrink-0 stroke-2`, className), + className: cn(`w-[24px] h-[24px] shrink-0 stroke-[1.5px]`, className), ...rest, }, svgChildren, diff --git a/src/icons-neo/arrow-sort-2.tsx b/src/icons-neo/arrow-sort-2.tsx new file mode 100644 index 00000000..1b0ab751 --- /dev/null +++ b/src/icons-neo/arrow-sort-2.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowSort2 = createASIcon( + "ArrowSort2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default ArrowSort2; diff --git a/src/icons-neo/arrows-diagonal.tsx b/src/icons-neo/arrows-diagonal.tsx new file mode 100644 index 00000000..9fafceb6 --- /dev/null +++ b/src/icons-neo/arrows-diagonal.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsDiagonal = createASIcon( + "ArrowsDiagonal", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default ArrowsDiagonal; diff --git a/src/icons-neo/arrows-sort.tsx b/src/icons-neo/arrows-sort.tsx new file mode 100644 index 00000000..93968a93 --- /dev/null +++ b/src/icons-neo/arrows-sort.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsSort = createASIcon( + "ArrowsSort", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default ArrowsSort; diff --git a/src/icons-neo/circle-check-2.tsx b/src/icons-neo/circle-check-2.tsx new file mode 100644 index 00000000..d7b0cebf --- /dev/null +++ b/src/icons-neo/circle-check-2.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCheck2 = createASIcon( + "CircleCheck2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default CircleCheck2; diff --git a/src/icons-neo/circle.tsx b/src/icons-neo/circle.tsx new file mode 100644 index 00000000..871bb8a2 --- /dev/null +++ b/src/icons-neo/circle.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Circle = createASIcon( + "Circle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Circle; diff --git a/src/icons-neo/cloud-upload.tsx b/src/icons-neo/cloud-upload.tsx new file mode 100644 index 00000000..dbcb8f83 --- /dev/null +++ b/src/icons-neo/cloud-upload.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CloudUpload = createASIcon( + "CloudUpload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default CloudUpload; diff --git a/src/icons-neo/device-desktop-analytics.tsx b/src/icons-neo/device-desktop-analytics.tsx new file mode 100644 index 00000000..b084f92d --- /dev/null +++ b/src/icons-neo/device-desktop-analytics.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktopAnalytics = createASIcon( + "DeviceDesktopAnalytics", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , +); + +export default DeviceDesktopAnalytics; diff --git a/src/icons-neo/device-desktop-off.tsx b/src/icons-neo/device-desktop-off.tsx new file mode 100644 index 00000000..d52f42b1 --- /dev/null +++ b/src/icons-neo/device-desktop-off.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktopOff = createASIcon( + "DeviceDesktopOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , +); + +export default DeviceDesktopOff; diff --git a/src/icons-neo/device-desktop.tsx b/src/icons-neo/device-desktop.tsx new file mode 100644 index 00000000..9fb02726 --- /dev/null +++ b/src/icons-neo/device-desktop.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktop = createASIcon( + "DeviceDesktop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default DeviceDesktop; diff --git a/src/icons-neo/device-laptop.tsx b/src/icons-neo/device-laptop.tsx new file mode 100644 index 00000000..19d80c10 --- /dev/null +++ b/src/icons-neo/device-laptop.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceLaptop = createASIcon( + "DeviceLaptop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default DeviceLaptop; diff --git a/src/icons-neo/device-tv.tsx b/src/icons-neo/device-tv.tsx new file mode 100644 index 00000000..262b949e --- /dev/null +++ b/src/icons-neo/device-tv.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceTv = createASIcon( + "DeviceTv", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default DeviceTv; diff --git a/src/icons-neo/disk.tsx b/src/icons-neo/disk.tsx new file mode 100644 index 00000000..93127069 --- /dev/null +++ b/src/icons-neo/disk.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Disk = createASIcon( + "Disk", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 32 32", + }, + + + + + + , +); + +export default Disk; diff --git a/src/icons-neo/edit.tsx b/src/icons-neo/edit.tsx new file mode 100644 index 00000000..05c28eb5 --- /dev/null +++ b/src/icons-neo/edit.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Edit = createASIcon( + "Edit", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Edit; diff --git a/src/icons-neo/filter-off.tsx b/src/icons-neo/filter-off.tsx new file mode 100644 index 00000000..a218df62 --- /dev/null +++ b/src/icons-neo/filter-off.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FilterOff = createASIcon( + "FilterOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default FilterOff; diff --git a/src/icons-neo/filter.tsx b/src/icons-neo/filter.tsx new file mode 100644 index 00000000..a143b1ab --- /dev/null +++ b/src/icons-neo/filter.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Filter = createASIcon( + "Filter", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Filter; diff --git a/src/icons-neo/index.ts b/src/icons-neo/index.ts index fb825d23..070a8118 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-neo/index.ts @@ -10,7 +10,10 @@ export { default as ArrowLeft } from './arrow-left'; export { default as ArrowNarrowLeft } from './arrow-narrow-left'; export { default as ArrowNarrowRight } from './arrow-narrow-right'; export { default as ArrowRight } from './arrow-right'; +export { default as ArrowSort2 } from './arrow-sort-2'; export { default as ArrowUp } from './arrow-up'; +export { default as ArrowsDiagonal } from './arrows-diagonal'; +export { default as ArrowsSort } from './arrows-sort'; export { default as Atom } from './atom'; export { default as Ban } from './ban'; export { default as BellMinus } from './bell-minus'; @@ -32,17 +35,27 @@ export { default as ChevronRight } from './chevron-right'; export { default as ChevronUp } from './chevron-up'; export { default as ChevronsLeft } from './chevrons-left'; export { default as ChevronsRight } from './chevrons-right'; +export { default as CircleCheck2 } from './circle-check-2'; export { default as CircleCheck } from './circle-check'; +export { default as Circle } from './circle'; export { default as Clock } from './clock'; +export { default as CloudUpload } from './cloud-upload'; export { default as ColorSwatch } from './color-swatch'; export { default as Confetti } from './confetti'; export { default as Copy } from './copy'; export { default as Crown } from './crown'; export { default as CurrencyDollar } from './currency-dollar'; +export { default as DeviceDesktopAnalytics } from './device-desktop-analytics'; +export { default as DeviceDesktopOff } from './device-desktop-off'; +export { default as DeviceDesktop } from './device-desktop'; +export { default as DeviceLaptop } from './device-laptop'; +export { default as DeviceTv } from './device-tv'; export { default as Diamond } from './diamond'; export { default as Discount2 } from './discount-2'; export { default as Discount } from './discount'; +export { default as Disk } from './disk'; export { default as Download } from './download'; +export { default as Edit } from './edit'; export { default as ExternalLink } from './external-link'; export { default as EyeCheck } from './eye-check'; export { default as EyeOff } from './eye-off'; @@ -51,6 +64,8 @@ export { default as FileDownload } from './file-download'; export { default as FileExport } from './file-export'; export { default as FileReport } from './file-report'; export { default as FileSearch } from './file-search'; +export { default as FilterOff } from './filter-off'; +export { default as Filter } from './filter'; export { default as Flag } from './flag'; export { default as FolderDownload } from './folder-download'; export { default as FolderEye } from './folder-eye'; @@ -64,7 +79,12 @@ export { default as Folders } from './folders'; export { default as GridDots } from './grid-dots'; export { default as Home2 } from './home-2'; export { default as InfoCircle } from './info-circle'; +export { default as InfoCirlce2 } from './info-cirlce-2'; export { default as InfoSquare } from './info-square'; +export { default as Key2 } from './key-2'; +export { default as KeyDuplicate } from './key-duplicate'; +export { default as Key } from './key'; +export { default as Link } from './link'; export { default as Loader } from './loader'; export { default as Lock2 } from './lock-2'; export { default as LockOff } from './lock-off'; @@ -77,18 +97,30 @@ export { default as MoodSad } from './mood-sad'; export { default as MoodSmile } from './mood-smile'; export { default as MouseLeft } from './mouse-left'; export { default as MouseRight } from './mouse-right'; +export { default as NoDuplicate } from './no-duplicate'; export { default as Palette } from './palette'; +export { default as PhotoOff2 } from './photo-off-2'; export { default as PhotoOff } from './photo-off'; export { default as PhotoStack } from './photo-stack'; export { default as Photo } from './photo'; export { default as QuestionMark } from './question-mark'; export { default as Redeem } from './redeem'; +export { default as ReloadAlert } from './reload-alert'; export { default as Rotate90 } from './rotate-90'; export { default as Search } from './search'; export { default as Share } from './share'; export { default as ShoppingCartDiscount } from './shopping-cart-discount'; export { default as ShoppingCart } from './shopping-cart'; +export { default as SortAscending2 } from './sort-ascending-2'; +export { default as SortAscendingLetters } from './sort-ascending-letters'; +export { default as SortAscendingNumbers } from './sort-ascending-numbers'; +export { default as SortAscending } from './sort-ascending'; +export { default as SortDescending2 } from './sort-descending-2'; +export { default as SortDescendingLetters } from './sort-descending-letters'; +export { default as SortDescendingNumbers } from './sort-descending-numbers'; +export { default as SortDescending } from './sort-descending'; export { default as Spray } from './spray'; +export { default as Spray2 } from './spray_2'; export { default as Stack2 } from './stack-2'; export { default as StackDouble } from './stack-double'; export { default as StackTriple } from './stack-triple'; @@ -99,6 +131,9 @@ export { default as ThumbDown } from './thumb-down'; export { default as ThumbUp } from './thumb-up'; export { default as TrashOff } from './trash-off'; export { default as Trash } from './trash'; +export { default as Unlink } from './unlink'; +export { default as Upload2 } from './upload-2'; +export { default as Upload } from './upload'; export { default as UserCheck } from './user-check'; export { default as UserExclamation } from './user-exclamation'; export { default as UserMinus } from './user-minus'; @@ -107,7 +142,12 @@ export { default as UserPlus } from './user-plus'; export { default as UserX } from './user-x'; export { default as User } from './user'; export { default as Users } from './users'; +export { default as ViewAll } from './view-all'; export { default as Viewfinder } from './viewfinder'; export { default as World } from './world'; +export { default as Writing } from './writing'; export { default as X } from './x'; +export { default as ZoomIn } from './zoom-in'; +export { default as ZoomOut } from './zoom-out'; +export { default as ZoomQuestion } from './zoom-question'; diff --git a/src/icons-neo/info-cirlce-2.tsx b/src/icons-neo/info-cirlce-2.tsx new file mode 100644 index 00000000..01ee486f --- /dev/null +++ b/src/icons-neo/info-cirlce-2.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoCirlce2 = createASIcon( + "InfoCirlce2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 25 25", + }, + + + + + , +); + +export default InfoCirlce2; diff --git a/src/icons-neo/key-2.tsx b/src/icons-neo/key-2.tsx new file mode 100644 index 00000000..9d02f628 --- /dev/null +++ b/src/icons-neo/key-2.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Key2 = createASIcon( + "Key2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default Key2; diff --git a/src/icons-neo/key-duplicate.tsx b/src/icons-neo/key-duplicate.tsx new file mode 100644 index 00000000..b7f83063 --- /dev/null +++ b/src/icons-neo/key-duplicate.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const KeyDuplicate = createASIcon( + "KeyDuplicate", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default KeyDuplicate; diff --git a/src/icons-neo/key.tsx b/src/icons-neo/key.tsx new file mode 100644 index 00000000..1496b898 --- /dev/null +++ b/src/icons-neo/key.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Key = createASIcon( + "Key", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default Key; diff --git a/src/icons-neo/link.tsx b/src/icons-neo/link.tsx new file mode 100644 index 00000000..9590959b --- /dev/null +++ b/src/icons-neo/link.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Link = createASIcon( + "Link", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default Link; diff --git a/src/icons-neo/no-duplicate.tsx b/src/icons-neo/no-duplicate.tsx new file mode 100644 index 00000000..266775d5 --- /dev/null +++ b/src/icons-neo/no-duplicate.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const NoDuplicate = createASIcon( + "NoDuplicate", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 32 32", + }, + + + + + + , +); + +export default NoDuplicate; diff --git a/src/icons-neo/photo-off-2.tsx b/src/icons-neo/photo-off-2.tsx new file mode 100644 index 00000000..ced8bd4f --- /dev/null +++ b/src/icons-neo/photo-off-2.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoOff2 = createASIcon( + "PhotoOff2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + , +); + +export default PhotoOff2; diff --git a/src/icons-neo/reload-alert.tsx b/src/icons-neo/reload-alert.tsx new file mode 100644 index 00000000..983069aa --- /dev/null +++ b/src/icons-neo/reload-alert.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ReloadAlert = createASIcon( + "ReloadAlert", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 32 32", + }, + + + , +); + +export default ReloadAlert; diff --git a/src/icons-neo/sort-ascending-2.tsx b/src/icons-neo/sort-ascending-2.tsx new file mode 100644 index 00000000..df53097b --- /dev/null +++ b/src/icons-neo/sort-ascending-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscending2 = createASIcon( + "SortAscending2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default SortAscending2; diff --git a/src/icons-neo/sort-ascending-letters.tsx b/src/icons-neo/sort-ascending-letters.tsx new file mode 100644 index 00000000..499dfdb5 --- /dev/null +++ b/src/icons-neo/sort-ascending-letters.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscendingLetters = createASIcon( + "SortAscendingLetters", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default SortAscendingLetters; diff --git a/src/icons-neo/sort-ascending-numbers.tsx b/src/icons-neo/sort-ascending-numbers.tsx new file mode 100644 index 00000000..43c4f20a --- /dev/null +++ b/src/icons-neo/sort-ascending-numbers.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscendingNumbers = createASIcon( + "SortAscendingNumbers", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default SortAscendingNumbers; diff --git a/src/icons-neo/sort-ascending.tsx b/src/icons-neo/sort-ascending.tsx new file mode 100644 index 00000000..b90dce95 --- /dev/null +++ b/src/icons-neo/sort-ascending.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscending = createASIcon( + "SortAscending", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default SortAscending; diff --git a/src/icons-neo/sort-descending-2.tsx b/src/icons-neo/sort-descending-2.tsx new file mode 100644 index 00000000..f8cf0018 --- /dev/null +++ b/src/icons-neo/sort-descending-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescending2 = createASIcon( + "SortDescending2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default SortDescending2; diff --git a/src/icons-neo/sort-descending-letters.tsx b/src/icons-neo/sort-descending-letters.tsx new file mode 100644 index 00000000..2cdccaa1 --- /dev/null +++ b/src/icons-neo/sort-descending-letters.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescendingLetters = createASIcon( + "SortDescendingLetters", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default SortDescendingLetters; diff --git a/src/icons-neo/sort-descending-numbers.tsx b/src/icons-neo/sort-descending-numbers.tsx new file mode 100644 index 00000000..1f8175c2 --- /dev/null +++ b/src/icons-neo/sort-descending-numbers.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescendingNumbers = createASIcon( + "SortDescendingNumbers", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default SortDescendingNumbers; diff --git a/src/icons-neo/sort-descending.tsx b/src/icons-neo/sort-descending.tsx new file mode 100644 index 00000000..062c582a --- /dev/null +++ b/src/icons-neo/sort-descending.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescending = createASIcon( + "SortDescending", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default SortDescending; diff --git a/src/icons-neo/spray_2.tsx b/src/icons-neo/spray_2.tsx new file mode 100644 index 00000000..4cf742e8 --- /dev/null +++ b/src/icons-neo/spray_2.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Spray2 = createASIcon( + "Spray2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default Spray2; diff --git a/src/icons-neo/unlink.tsx b/src/icons-neo/unlink.tsx new file mode 100644 index 00000000..6f158008 --- /dev/null +++ b/src/icons-neo/unlink.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Unlink = createASIcon( + "Unlink", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , +); + +export default Unlink; diff --git a/src/icons-neo/upload-2.tsx b/src/icons-neo/upload-2.tsx new file mode 100644 index 00000000..58653e13 --- /dev/null +++ b/src/icons-neo/upload-2.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Upload2 = createASIcon( + "Upload2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default Upload2; diff --git a/src/icons-neo/upload.tsx b/src/icons-neo/upload.tsx new file mode 100644 index 00000000..7f5b9e1f --- /dev/null +++ b/src/icons-neo/upload.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Upload = createASIcon( + "Upload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Upload; diff --git a/src/icons-neo/view-all.tsx b/src/icons-neo/view-all.tsx new file mode 100644 index 00000000..70afea32 --- /dev/null +++ b/src/icons-neo/view-all.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ViewAll = createASIcon( + "ViewAll", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default ViewAll; diff --git a/src/icons-neo/writing.tsx b/src/icons-neo/writing.tsx new file mode 100644 index 00000000..b68ef9cd --- /dev/null +++ b/src/icons-neo/writing.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Writing = createASIcon( + "Writing", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default Writing; diff --git a/src/icons-neo/zoom-in.tsx b/src/icons-neo/zoom-in.tsx new file mode 100644 index 00000000..da2ef014 --- /dev/null +++ b/src/icons-neo/zoom-in.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomIn = createASIcon( + "ZoomIn", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default ZoomIn; diff --git a/src/icons-neo/zoom-out.tsx b/src/icons-neo/zoom-out.tsx new file mode 100644 index 00000000..0d664ecf --- /dev/null +++ b/src/icons-neo/zoom-out.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomOut = createASIcon( + "ZoomOut", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default ZoomOut; diff --git a/src/icons-neo/zoom-question.tsx b/src/icons-neo/zoom-question.tsx new file mode 100644 index 00000000..b03593d8 --- /dev/null +++ b/src/icons-neo/zoom-question.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomQuestion = createASIcon( + "ZoomQuestion", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , +); + +export default ZoomQuestion; diff --git a/src/stories-neo/ArrowSort2.stories.tsx b/src/stories-neo/ArrowSort2.stories.tsx new file mode 100644 index 00000000..a1fa8ac0 --- /dev/null +++ b/src/stories-neo/ArrowSort2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowSort2 from '../icons-neo/arrow-sort-2' + + const meta: Meta = { + component: ArrowSort2, + title: 'omega/ArrowSort2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowsDiagonal.stories.tsx b/src/stories-neo/ArrowsDiagonal.stories.tsx new file mode 100644 index 00000000..4d15cd84 --- /dev/null +++ b/src/stories-neo/ArrowsDiagonal.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsDiagonal from '../icons-neo/arrows-diagonal' + + const meta: Meta = { + component: ArrowsDiagonal, + title: 'omega/ArrowsDiagonal', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ArrowsSort.stories.tsx b/src/stories-neo/ArrowsSort.stories.tsx new file mode 100644 index 00000000..ed65b566 --- /dev/null +++ b/src/stories-neo/ArrowsSort.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsSort from '../icons-neo/arrows-sort' + + const meta: Meta = { + component: ArrowsSort, + title: 'omega/ArrowsSort', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Circle.stories.tsx b/src/stories-neo/Circle.stories.tsx new file mode 100644 index 00000000..618fb4fb --- /dev/null +++ b/src/stories-neo/Circle.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Circle from '../icons-neo/circle' + + const meta: Meta = { + component: Circle, + title: 'omega/Circle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CircleCheck2.stories.tsx b/src/stories-neo/CircleCheck2.stories.tsx new file mode 100644 index 00000000..2ddd5487 --- /dev/null +++ b/src/stories-neo/CircleCheck2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheck2 from '../icons-neo/circle-check-2' + + const meta: Meta = { + component: CircleCheck2, + title: 'omega/CircleCheck2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/CloudUpload.stories.tsx b/src/stories-neo/CloudUpload.stories.tsx new file mode 100644 index 00000000..05207da2 --- /dev/null +++ b/src/stories-neo/CloudUpload.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CloudUpload from '../icons-neo/cloud-upload' + + const meta: Meta = { + component: CloudUpload, + title: 'omega/CloudUpload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceDesktop.stories.tsx b/src/stories-neo/DeviceDesktop.stories.tsx new file mode 100644 index 00000000..712b5693 --- /dev/null +++ b/src/stories-neo/DeviceDesktop.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktop from '../icons-neo/device-desktop' + + const meta: Meta = { + component: DeviceDesktop, + title: 'omega/DeviceDesktop', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceDesktopAnalytics.stories.tsx b/src/stories-neo/DeviceDesktopAnalytics.stories.tsx new file mode 100644 index 00000000..7c31ffe1 --- /dev/null +++ b/src/stories-neo/DeviceDesktopAnalytics.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopAnalytics from '../icons-neo/device-desktop-analytics' + + const meta: Meta = { + component: DeviceDesktopAnalytics, + title: 'omega/DeviceDesktopAnalytics', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceDesktopOff.stories.tsx b/src/stories-neo/DeviceDesktopOff.stories.tsx new file mode 100644 index 00000000..ee7d9168 --- /dev/null +++ b/src/stories-neo/DeviceDesktopOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopOff from '../icons-neo/device-desktop-off' + + const meta: Meta = { + component: DeviceDesktopOff, + title: 'omega/DeviceDesktopOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceLaptop.stories.tsx b/src/stories-neo/DeviceLaptop.stories.tsx new file mode 100644 index 00000000..828a55d7 --- /dev/null +++ b/src/stories-neo/DeviceLaptop.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceLaptop from '../icons-neo/device-laptop' + + const meta: Meta = { + component: DeviceLaptop, + title: 'omega/DeviceLaptop', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceTv.stories.tsx b/src/stories-neo/DeviceTv.stories.tsx new file mode 100644 index 00000000..05521d92 --- /dev/null +++ b/src/stories-neo/DeviceTv.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceTv from '../icons-neo/device-tv' + + const meta: Meta = { + component: DeviceTv, + title: 'omega/DeviceTv', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Disk.stories.tsx b/src/stories-neo/Disk.stories.tsx new file mode 100644 index 00000000..27f1a2cd --- /dev/null +++ b/src/stories-neo/Disk.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Disk from '../icons-neo/disk' + + const meta: Meta = { + component: Disk, + title: 'omega/Disk', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Edit.stories.tsx b/src/stories-neo/Edit.stories.tsx new file mode 100644 index 00000000..465b5b5d --- /dev/null +++ b/src/stories-neo/Edit.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Edit from '../icons-neo/edit' + + const meta: Meta = { + component: Edit, + title: 'omega/Edit', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Filter.stories.tsx b/src/stories-neo/Filter.stories.tsx new file mode 100644 index 00000000..a760e624 --- /dev/null +++ b/src/stories-neo/Filter.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Filter from '../icons-neo/filter' + + const meta: Meta = { + component: Filter, + title: 'omega/Filter', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/FilterOff.stories.tsx b/src/stories-neo/FilterOff.stories.tsx new file mode 100644 index 00000000..c2d4dbf9 --- /dev/null +++ b/src/stories-neo/FilterOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FilterOff from '../icons-neo/filter-off' + + const meta: Meta = { + component: FilterOff, + title: 'omega/FilterOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/InfoCirlce2.stories.tsx b/src/stories-neo/InfoCirlce2.stories.tsx new file mode 100644 index 00000000..39c35f4a --- /dev/null +++ b/src/stories-neo/InfoCirlce2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCirlce2 from '../icons-neo/info-cirlce-2' + + const meta: Meta = { + component: InfoCirlce2, + title: 'omega/InfoCirlce2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Key.stories.tsx b/src/stories-neo/Key.stories.tsx new file mode 100644 index 00000000..6ee1823c --- /dev/null +++ b/src/stories-neo/Key.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Key from '../icons-neo/key' + + const meta: Meta = { + component: Key, + title: 'omega/Key', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Key2.stories.tsx b/src/stories-neo/Key2.stories.tsx new file mode 100644 index 00000000..e4b5001a --- /dev/null +++ b/src/stories-neo/Key2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Key2 from '../icons-neo/key-2' + + const meta: Meta = { + component: Key2, + title: 'omega/Key2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/KeyDuplicate.stories.tsx b/src/stories-neo/KeyDuplicate.stories.tsx new file mode 100644 index 00000000..dae67690 --- /dev/null +++ b/src/stories-neo/KeyDuplicate.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import KeyDuplicate from '../icons-neo/key-duplicate' + + const meta: Meta = { + component: KeyDuplicate, + title: 'omega/KeyDuplicate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Link.stories.tsx b/src/stories-neo/Link.stories.tsx new file mode 100644 index 00000000..b75fa34f --- /dev/null +++ b/src/stories-neo/Link.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Link from '../icons-neo/link' + + const meta: Meta = { + component: Link, + title: 'omega/Link', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/NoDuplicate.stories.tsx b/src/stories-neo/NoDuplicate.stories.tsx new file mode 100644 index 00000000..fbe2657e --- /dev/null +++ b/src/stories-neo/NoDuplicate.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoDuplicate from '../icons-neo/no-duplicate' + + const meta: Meta = { + component: NoDuplicate, + title: 'omega/NoDuplicate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/PhotoOff2.stories.tsx b/src/stories-neo/PhotoOff2.stories.tsx new file mode 100644 index 00000000..d13b36b0 --- /dev/null +++ b/src/stories-neo/PhotoOff2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOff2 from '../icons-neo/photo-off-2' + + const meta: Meta = { + component: PhotoOff2, + title: 'omega/PhotoOff2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ReloadAlert.stories.tsx b/src/stories-neo/ReloadAlert.stories.tsx new file mode 100644 index 00000000..89999d64 --- /dev/null +++ b/src/stories-neo/ReloadAlert.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ReloadAlert from '../icons-neo/reload-alert' + + const meta: Meta = { + component: ReloadAlert, + title: 'omega/ReloadAlert', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortAscending.stories.tsx b/src/stories-neo/SortAscending.stories.tsx new file mode 100644 index 00000000..56056598 --- /dev/null +++ b/src/stories-neo/SortAscending.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscending from '../icons-neo/sort-ascending' + + const meta: Meta = { + component: SortAscending, + title: 'omega/SortAscending', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortAscending2.stories.tsx b/src/stories-neo/SortAscending2.stories.tsx new file mode 100644 index 00000000..59ba1dc5 --- /dev/null +++ b/src/stories-neo/SortAscending2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscending2 from '../icons-neo/sort-ascending-2' + + const meta: Meta = { + component: SortAscending2, + title: 'omega/SortAscending2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortAscendingLetters.stories.tsx b/src/stories-neo/SortAscendingLetters.stories.tsx new file mode 100644 index 00000000..7f014842 --- /dev/null +++ b/src/stories-neo/SortAscendingLetters.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingLetters from '../icons-neo/sort-ascending-letters' + + const meta: Meta = { + component: SortAscendingLetters, + title: 'omega/SortAscendingLetters', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortAscendingNumbers.stories.tsx b/src/stories-neo/SortAscendingNumbers.stories.tsx new file mode 100644 index 00000000..22b49fb6 --- /dev/null +++ b/src/stories-neo/SortAscendingNumbers.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingNumbers from '../icons-neo/sort-ascending-numbers' + + const meta: Meta = { + component: SortAscendingNumbers, + title: 'omega/SortAscendingNumbers', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortDescending.stories.tsx b/src/stories-neo/SortDescending.stories.tsx new file mode 100644 index 00000000..ef184714 --- /dev/null +++ b/src/stories-neo/SortDescending.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescending from '../icons-neo/sort-descending' + + const meta: Meta = { + component: SortDescending, + title: 'omega/SortDescending', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortDescending2.stories.tsx b/src/stories-neo/SortDescending2.stories.tsx new file mode 100644 index 00000000..647413b2 --- /dev/null +++ b/src/stories-neo/SortDescending2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescending2 from '../icons-neo/sort-descending-2' + + const meta: Meta = { + component: SortDescending2, + title: 'omega/SortDescending2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortDescendingLetters.stories.tsx b/src/stories-neo/SortDescendingLetters.stories.tsx new file mode 100644 index 00000000..65a7853b --- /dev/null +++ b/src/stories-neo/SortDescendingLetters.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingLetters from '../icons-neo/sort-descending-letters' + + const meta: Meta = { + component: SortDescendingLetters, + title: 'omega/SortDescendingLetters', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/SortDescendingNumbers.stories.tsx b/src/stories-neo/SortDescendingNumbers.stories.tsx new file mode 100644 index 00000000..43f879f7 --- /dev/null +++ b/src/stories-neo/SortDescendingNumbers.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingNumbers from '../icons-neo/sort-descending-numbers' + + const meta: Meta = { + component: SortDescendingNumbers, + title: 'omega/SortDescendingNumbers', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Spray2.stories.tsx b/src/stories-neo/Spray2.stories.tsx new file mode 100644 index 00000000..87e29b04 --- /dev/null +++ b/src/stories-neo/Spray2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Spray2 from '../icons-neo/spray_2' + + const meta: Meta = { + component: Spray2, + title: 'omega/Spray2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Unlink.stories.tsx b/src/stories-neo/Unlink.stories.tsx new file mode 100644 index 00000000..1a8fcf14 --- /dev/null +++ b/src/stories-neo/Unlink.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Unlink from '../icons-neo/unlink' + + const meta: Meta = { + component: Unlink, + title: 'omega/Unlink', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Upload.stories.tsx b/src/stories-neo/Upload.stories.tsx new file mode 100644 index 00000000..892e4ca7 --- /dev/null +++ b/src/stories-neo/Upload.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Upload from '../icons-neo/upload' + + const meta: Meta = { + component: Upload, + title: 'omega/Upload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Upload2.stories.tsx b/src/stories-neo/Upload2.stories.tsx new file mode 100644 index 00000000..4866a1f9 --- /dev/null +++ b/src/stories-neo/Upload2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Upload2 from '../icons-neo/upload-2' + + const meta: Meta = { + component: Upload2, + title: 'omega/Upload2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ViewAll.stories.tsx b/src/stories-neo/ViewAll.stories.tsx new file mode 100644 index 00000000..bfcdf799 --- /dev/null +++ b/src/stories-neo/ViewAll.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ViewAll from '../icons-neo/view-all' + + const meta: Meta = { + component: ViewAll, + title: 'omega/ViewAll', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Writing.stories.tsx b/src/stories-neo/Writing.stories.tsx new file mode 100644 index 00000000..1374d3e6 --- /dev/null +++ b/src/stories-neo/Writing.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Writing from '../icons-neo/writing' + + const meta: Meta = { + component: Writing, + title: 'omega/Writing', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/X.stories.tsx b/src/stories-neo/X.stories.tsx index 8fd7d69a..001801a3 100644 --- a/src/stories-neo/X.stories.tsx +++ b/src/stories-neo/X.stories.tsx @@ -1,68 +1,64 @@ import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import X from '../icons-neo/x' - - const meta: Meta = { - component: X, - title: 'omega/X', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - +import React from 'react' +import IconBackground from '../components/IconBackground' +import IconBorder from '../components/IconBorder' +import X from '../icons-neo/x' - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file +const meta: Meta = { + component: X, + title: 'omega/X', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], +} + +export default meta +type Story = StoryObj + +export const Default: Story = {} + +export const Red: Story = { + args: { + color: 'red', + }, +} + +export const inActive: Story = { + args: { + inActive: true, + }, +} + +export const Large: Story = { + args: { + size: 30, + }, +} + +export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, +} + +export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-[5px] hover:text-blue-400', + }, +} diff --git a/src/stories-neo/ZoomIn.stories.tsx b/src/stories-neo/ZoomIn.stories.tsx new file mode 100644 index 00000000..5e24df79 --- /dev/null +++ b/src/stories-neo/ZoomIn.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomIn from '../icons-neo/zoom-in' + + const meta: Meta = { + component: ZoomIn, + title: 'omega/ZoomIn', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ZoomOut.stories.tsx b/src/stories-neo/ZoomOut.stories.tsx new file mode 100644 index 00000000..8432b0b8 --- /dev/null +++ b/src/stories-neo/ZoomOut.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomOut from '../icons-neo/zoom-out' + + const meta: Meta = { + component: ZoomOut, + title: 'omega/ZoomOut', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ZoomQuestion.stories.tsx b/src/stories-neo/ZoomQuestion.stories.tsx new file mode 100644 index 00000000..01aad99d --- /dev/null +++ b/src/stories-neo/ZoomQuestion.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomQuestion from '../icons-neo/zoom-question' + + const meta: Meta = { + component: ZoomQuestion, + title: 'omega/ZoomQuestion', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 251314de..87e8752d 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -662,6 +662,30 @@ video { stroke-width: 2; } +.stroke-\[1\.5\] { + stroke-width: 1.5; +} + +.stroke-\[1\.5px\] { + stroke-width: 1.5px; +} + +.stroke-\[3px\] { + stroke-width: 3px; +} + +.stroke-\[4px\] { + stroke-width: 4px; +} + +.stroke-\[8px\] { + stroke-width: 8px; +} + +.stroke-\[5px\] { + stroke-width: 5px; +} + .p-2 { padding: 0.5rem; } diff --git a/unicon.config.json b/unicon.config.json new file mode 100644 index 00000000..15395b9f --- /dev/null +++ b/unicon.config.json @@ -0,0 +1,4 @@ +{ + "icon-output-dir": "icons", + "stories-output-dir": "stories" +} From 47111bd8ea4c032bb658da84cc7859f7a817fb75 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Sat, 1 Jun 2024 01:20:06 +0530 Subject: [PATCH 20/34] update: get folder output from config.json --- icons-optimized/brand-github.svg | 14 ++++ icons-optimized/brand-instagram.svg | 12 ++++ icons-optimized/brand-youtube.svg | 11 +++ icons-optimized/current-location.svg | 15 ++++ icons-optimized/dots-vertical.svg | 17 +++++ icons-optimized/flag-off.svg | 11 +++ icons-optimized/info.svg | 4 ++ icons-optimized/map-2.svg | 14 ++++ icons-optimized/map-pin-off.svg | 12 ++++ icons-optimized/map-pin.svg | 11 +++ icons-optimized/minus.svg | 3 + icons-optimized/pinned.svg | 12 ++++ icons-optimized/plus.svg | 11 +++ icons-optimized/refresh-2.svg | 13 ++++ icons-optimized/refresh-alert.svg | 14 ++++ icons-optimized/refresh.svg | 14 ++++ icons-optimized/rotate-clockwise.svg | 19 ++++++ icons-optimized/rotate.svg | 19 ++++++ icons-optimized/wifi-1.svg | 11 +++ icons-optimized/wifi-2.svg | 12 ++++ icons-optimized/wifi-off.svg | 19 ++++++ icons-optimized/wifi.svg | 13 ++++ scripts/buildIcons.mjs | 6 +- src/{icons-neo => icons-omega}/Import.tsx | 0 .../adjustments-horizontal.tsx | 0 .../adjustments.tsx | 0 src/{icons-neo => icons-omega}/alarm.tsx | 0 .../alert-circle.tsx | 0 .../alert-octagon.tsx | 0 .../alert-triangle.tsx | 0 src/{icons-neo => icons-omega}/arrow-down.tsx | 0 src/{icons-neo => icons-omega}/arrow-left.tsx | 0 .../arrow-narrow-left.tsx | 0 .../arrow-narrow-right.tsx | 0 .../arrow-right.tsx | 0 .../arrow-sort-2.tsx | 0 src/{icons-neo => icons-omega}/arrow-up.tsx | 0 .../arrows-diagonal.tsx | 0 .../arrows-sort.tsx | 0 src/{icons-neo => icons-omega}/atom.tsx | 0 src/{icons-neo => icons-omega}/ban.tsx | 0 src/{icons-neo => icons-omega}/bell-minus.tsx | 0 src/{icons-neo => icons-omega}/bell-off.tsx | 0 src/{icons-neo => icons-omega}/bell-plus.tsx | 0 .../bell-ringing-2.tsx | 0 .../bell-ringing.tsx | 0 src/{icons-neo => icons-omega}/bell-x.tsx | 0 src/{icons-neo => icons-omega}/bell.tsx | 0 .../brand-facebook.tsx | 0 src/icons-omega/brand-github.tsx | 27 ++++++++ src/icons-omega/brand-instagram.tsx | 30 ++++++++ .../brand-twitter.tsx | 0 .../brand-whatsapp.tsx | 0 src/icons-omega/brand-youtube.tsx | 29 ++++++++ src/{icons-neo => icons-omega}/bulb-off.tsx | 0 src/{icons-neo => icons-omega}/bulb.tsx | 0 src/{icons-neo => icons-omega}/check.tsx | 0 .../chevron-down.tsx | 0 .../chevron-left.tsx | 0 .../chevron-right.tsx | 0 src/{icons-neo => icons-omega}/chevron-up.tsx | 0 .../chevrons-left.tsx | 0 .../chevrons-right.tsx | 0 .../circle-check-2.tsx | 0 .../circle-check.tsx | 0 src/{icons-neo => icons-omega}/circle.tsx | 0 src/{icons-neo => icons-omega}/clock.tsx | 0 .../cloud-upload.tsx | 0 .../color-swatch.tsx | 0 src/{icons-neo => icons-omega}/confetti.tsx | 0 src/{icons-neo => icons-omega}/copy.tsx | 0 src/{icons-neo => icons-omega}/crown.tsx | 0 .../currency-dollar.tsx | 0 src/icons-omega/current-location.tsx | 33 +++++++++ .../device-desktop-analytics.tsx | 0 .../device-desktop-off.tsx | 0 .../device-desktop.tsx | 0 .../device-laptop.tsx | 0 src/{icons-neo => icons-omega}/device-tv.tsx | 0 src/{icons-neo => icons-omega}/diamond.tsx | 0 src/{icons-neo => icons-omega}/discount-2.tsx | 0 src/{icons-neo => icons-omega}/discount.tsx | 0 src/{icons-neo => icons-omega}/disk.tsx | 0 src/icons-omega/dots-vertical.tsx | 31 +++++++++ src/{icons-neo => icons-omega}/download.tsx | 0 src/{icons-neo => icons-omega}/edit.tsx | 0 .../external-link.tsx | 0 src/{icons-neo => icons-omega}/eye-check.tsx | 0 src/{icons-neo => icons-omega}/eye-off.tsx | 0 src/{icons-neo => icons-omega}/eye.tsx | 0 .../file-download.tsx | 0 .../file-export.tsx | 0 .../file-report.tsx | 0 .../file-search.tsx | 0 src/{icons-neo => icons-omega}/filter-off.tsx | 0 src/{icons-neo => icons-omega}/filter.tsx | 0 src/icons-omega/flag-off.tsx | 29 ++++++++ src/{icons-neo => icons-omega}/flag.tsx | 0 .../folder-download.tsx | 0 src/{icons-neo => icons-omega}/folder-eye.tsx | 0 .../folder-minus.tsx | 0 src/{icons-neo => icons-omega}/folder-off.tsx | 0 .../folder-plus.tsx | 0 .../folder-upload.tsx | 0 src/{icons-neo => icons-omega}/folder-x.tsx | 0 src/{icons-neo => icons-omega}/folder.tsx | 0 src/{icons-neo => icons-omega}/folders.tsx | 0 src/{icons-neo => icons-omega}/grid-dots.tsx | 0 src/{icons-neo => icons-omega}/home-2.tsx | 0 src/{icons-neo => icons-omega}/index.ts | 22 ++++++ .../info-circle.tsx | 0 .../info-cirlce-2.tsx | 0 .../info-square.tsx | 0 src/icons-omega/info.tsx | 27 ++++++++ src/{icons-neo => icons-omega}/key-2.tsx | 0 .../key-duplicate.tsx | 0 src/{icons-neo => icons-omega}/key.tsx | 0 src/{icons-neo => icons-omega}/link.tsx | 0 src/{icons-neo => icons-omega}/loader.tsx | 0 src/{icons-neo => icons-omega}/lock-2.tsx | 0 src/{icons-neo => icons-omega}/lock-off.tsx | 0 src/{icons-neo => icons-omega}/lock-open.tsx | 0 src/{icons-neo => icons-omega}/lock.tsx | 0 src/{icons-neo => icons-omega}/mail.tsx | 0 src/icons-omega/map-2.tsx | 32 +++++++++ src/icons-omega/map-pin-off.tsx | 30 ++++++++ src/icons-omega/map-pin.tsx | 29 ++++++++ src/icons-omega/minus.tsx | 16 +++++ .../mood-crazy-happy.tsx | 0 src/{icons-neo => icons-omega}/mood-empty.tsx | 0 src/{icons-neo => icons-omega}/mood-sad.tsx | 0 src/{icons-neo => icons-omega}/mood-smile.tsx | 0 src/{icons-neo => icons-omega}/mouse-left.tsx | 0 .../mouse-right.tsx | 0 .../no-duplicate.tsx | 0 src/{icons-neo => icons-omega}/palette.tsx | 0 .../photo-off-2.tsx | 0 src/{icons-neo => icons-omega}/photo-off.tsx | 0 .../photo-stack.tsx | 0 src/{icons-neo => icons-omega}/photo.tsx | 0 src/icons-omega/pinned.tsx | 30 ++++++++ src/icons-omega/plus.tsx | 29 ++++++++ .../question-mark.tsx | 0 src/{icons-neo => icons-omega}/redeem.tsx | 0 src/icons-omega/refresh-2.tsx | 33 +++++++++ src/icons-omega/refresh-alert.tsx | 27 ++++++++ src/icons-omega/refresh.tsx | 27 ++++++++ .../reload-alert.tsx | 0 src/{icons-neo => icons-omega}/rotate-90.tsx | 0 src/icons-omega/rotate-clockwise.tsx | 32 +++++++++ src/icons-omega/rotate.tsx | 32 +++++++++ src/{icons-neo => icons-omega}/search.tsx | 0 src/{icons-neo => icons-omega}/share.tsx | 0 .../shopping-cart-discount.tsx | 0 .../shopping-cart.tsx | 0 .../sort-ascending-2.tsx | 0 .../sort-ascending-letters.tsx | 0 .../sort-ascending-numbers.tsx | 0 .../sort-ascending.tsx | 0 .../sort-descending-2.tsx | 0 .../sort-descending-letters.tsx | 0 .../sort-descending-numbers.tsx | 0 .../sort-descending.tsx | 0 src/{icons-neo => icons-omega}/spray.tsx | 0 src/{icons-neo => icons-omega}/spray_2.tsx | 0 src/{icons-neo => icons-omega}/stack-2.tsx | 0 .../stack-double.tsx | 0 .../stack-triple.tsx | 0 src/{icons-neo => icons-omega}/stack.tsx | 0 src/{icons-neo => icons-omega}/star-off.tsx | 0 src/{icons-neo => icons-omega}/star.tsx | 0 src/{icons-neo => icons-omega}/thumb-down.tsx | 0 src/{icons-neo => icons-omega}/thumb-up.tsx | 0 src/{icons-neo => icons-omega}/trash-off.tsx | 0 src/{icons-neo => icons-omega}/trash.tsx | 0 src/{icons-neo => icons-omega}/unlink.tsx | 0 src/{icons-neo => icons-omega}/upload-2.tsx | 0 src/{icons-neo => icons-omega}/upload.tsx | 0 src/{icons-neo => icons-omega}/user-check.tsx | 0 .../user-exclamation.tsx | 0 src/{icons-neo => icons-omega}/user-minus.tsx | 0 src/{icons-neo => icons-omega}/user-off.tsx | 0 src/{icons-neo => icons-omega}/user-plus.tsx | 0 src/{icons-neo => icons-omega}/user-x.tsx | 0 src/{icons-neo => icons-omega}/user.tsx | 0 src/{icons-neo => icons-omega}/users.tsx | 0 src/{icons-neo => icons-omega}/view-all.tsx | 0 src/{icons-neo => icons-omega}/viewfinder.tsx | 0 src/icons-omega/wifi-1.tsx | 29 ++++++++ src/icons-omega/wifi-2.tsx | 30 ++++++++ src/icons-omega/wifi-off.tsx | 45 ++++++++++++ src/icons-omega/wifi.tsx | 31 +++++++++ src/{icons-neo => icons-omega}/world.tsx | 0 src/{icons-neo => icons-omega}/writing.tsx | 0 src/{icons-neo => icons-omega}/x.tsx | 0 src/{icons-neo => icons-omega}/zoom-in.tsx | 0 src/{icons-neo => icons-omega}/zoom-out.tsx | 0 .../zoom-question.tsx | 0 src/stories-neo/X.stories.tsx | 64 ----------------- .../Adjustments.stories.tsx | 2 +- .../AdjustmentsHorizontal.stories.tsx | 2 +- .../Alarm.stories.tsx | 2 +- .../AlertCircle.stories.tsx | 2 +- .../AlertOctagon.stories.tsx | 2 +- .../AlertTriangle.stories.tsx | 2 +- .../ArrowDown.stories.tsx | 2 +- .../ArrowLeft.stories.tsx | 2 +- .../ArrowNarrowLeft.stories.tsx | 2 +- .../ArrowNarrowRight.stories.tsx | 2 +- .../ArrowRight.stories.tsx | 2 +- .../ArrowSort2.stories.tsx | 2 +- .../ArrowUp.stories.tsx | 2 +- .../ArrowsDiagonal.stories.tsx | 2 +- .../ArrowsSort.stories.tsx | 2 +- .../Atom.stories.tsx | 2 +- .../Ban.stories.tsx | 2 +- .../Bell.stories.tsx | 2 +- .../BellMinus.stories.tsx | 2 +- .../BellOff.stories.tsx | 2 +- .../BellPlus.stories.tsx | 2 +- .../BellRinging.stories.tsx | 2 +- .../BellRinging2.stories.tsx | 2 +- .../BellX.stories.tsx | 2 +- .../BrandFacebook.stories.tsx | 2 +- src/stories-omega/BrandGithub.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/BrandInstagram.stories.tsx | 68 +++++++++++++++++++ .../BrandTwitter.stories.tsx | 2 +- .../BrandWhatsapp.stories.tsx | 2 +- src/stories-omega/BrandYoutube.stories.tsx | 68 +++++++++++++++++++ .../Bulb.stories.tsx | 2 +- .../BulbOff.stories.tsx | 2 +- .../Check.stories.tsx | 2 +- .../ChevronDown.stories.tsx | 2 +- .../ChevronLeft.stories.tsx | 2 +- .../ChevronRight.stories.tsx | 2 +- .../ChevronUp.stories.tsx | 2 +- .../ChevronsLeft.stories.tsx | 2 +- .../ChevronsRight.stories.tsx | 2 +- .../Circle.stories.tsx | 2 +- .../CircleCheck.stories.tsx | 2 +- .../CircleCheck2.stories.tsx | 2 +- .../Clock.stories.tsx | 2 +- .../CloudUpload.stories.tsx | 2 +- .../ColorSwatch.stories.tsx | 2 +- .../Confetti.stories.tsx | 2 +- .../Copy.stories.tsx | 2 +- .../Crown.stories.tsx | 2 +- .../CurrencyDollar.stories.tsx | 2 +- src/stories-omega/CurrentLocation.stories.tsx | 68 +++++++++++++++++++ .../DeviceDesktop.stories.tsx | 2 +- .../DeviceDesktopAnalytics.stories.tsx | 2 +- .../DeviceDesktopOff.stories.tsx | 2 +- .../DeviceLaptop.stories.tsx | 2 +- .../DeviceTv.stories.tsx | 2 +- .../Diamond.stories.tsx | 2 +- .../Discount.stories.tsx | 2 +- .../Discount2.stories.tsx | 2 +- .../Disk.stories.tsx | 2 +- src/stories-omega/DotsVertical.stories.tsx | 68 +++++++++++++++++++ .../Download.stories.tsx | 2 +- .../Edit.stories.tsx | 2 +- .../ExternalLink.stories.tsx | 2 +- .../Eye.stories.tsx | 2 +- .../EyeCheck.stories.tsx | 2 +- .../EyeOff.stories.tsx | 2 +- .../FileDownload.stories.tsx | 2 +- .../FileExport.stories.tsx | 2 +- .../FileReport.stories.tsx | 2 +- .../FileSearch.stories.tsx | 2 +- .../Filter.stories.tsx | 2 +- .../FilterOff.stories.tsx | 2 +- .../Flag.stories.tsx | 2 +- src/stories-omega/FlagOff.stories.tsx | 68 +++++++++++++++++++ .../Folder.stories.tsx | 2 +- .../FolderDownload.stories.tsx | 2 +- .../FolderEye.stories.tsx | 2 +- .../FolderMinus.stories.tsx | 2 +- .../FolderOff.stories.tsx | 2 +- .../FolderPlus.stories.tsx | 2 +- .../FolderUpload.stories.tsx | 2 +- .../FolderX.stories.tsx | 2 +- .../Folders.stories.tsx | 2 +- .../GridDots.stories.tsx | 2 +- .../Home2.stories.tsx | 2 +- .../Import.stories.tsx | 2 +- src/stories-omega/Info.stories.tsx | 68 +++++++++++++++++++ .../InfoCircle.stories.tsx | 2 +- .../InfoCirlce2.stories.tsx | 2 +- .../InfoSquare.stories.tsx | 2 +- .../Key.stories.tsx | 2 +- .../Key2.stories.tsx | 2 +- .../KeyDuplicate.stories.tsx | 2 +- .../Link.stories.tsx | 2 +- .../Loader.stories.tsx | 2 +- .../Lock.stories.tsx | 2 +- .../Lock2.stories.tsx | 2 +- .../LockOff.stories.tsx | 2 +- .../LockOpen.stories.tsx | 2 +- .../Mail.stories.tsx | 2 +- src/stories-omega/Map2.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/MapPin.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/MapPinOff.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/Minus.stories.tsx | 68 +++++++++++++++++++ .../MoodCrazyHappy.stories.tsx | 2 +- .../MoodEmpty.stories.tsx | 2 +- .../MoodSad.stories.tsx | 2 +- .../MoodSmile.stories.tsx | 2 +- .../MouseLeft.stories.tsx | 2 +- .../MouseRight.stories.tsx | 2 +- .../NoDuplicate.stories.tsx | 2 +- .../Palette.stories.tsx | 2 +- .../Photo.stories.tsx | 2 +- .../PhotoOff.stories.tsx | 2 +- .../PhotoOff2.stories.tsx | 2 +- .../PhotoStack.stories.tsx | 2 +- src/stories-omega/Pinned.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/Plus.stories.tsx | 68 +++++++++++++++++++ .../QuestionMark.stories.tsx | 2 +- .../Redeem.stories.tsx | 2 +- src/stories-omega/Refresh.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/Refresh2.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/RefreshAlert.stories.tsx | 68 +++++++++++++++++++ .../ReloadAlert.stories.tsx | 2 +- src/stories-omega/Rotate.stories.tsx | 68 +++++++++++++++++++ .../Rotate90.stories.tsx | 2 +- src/stories-omega/RotateClockwise.stories.tsx | 68 +++++++++++++++++++ .../Search.stories.tsx | 2 +- .../Share.stories.tsx | 2 +- .../ShoppingCart.stories.tsx | 2 +- .../ShoppingCartDiscount.stories.tsx | 2 +- .../SortAscending.stories.tsx | 2 +- .../SortAscending2.stories.tsx | 2 +- .../SortAscendingLetters.stories.tsx | 2 +- .../SortAscendingNumbers.stories.tsx | 2 +- .../SortDescending.stories.tsx | 2 +- .../SortDescending2.stories.tsx | 2 +- .../SortDescendingLetters.stories.tsx | 2 +- .../SortDescendingNumbers.stories.tsx | 2 +- .../Spray.stories.tsx | 2 +- .../Spray2.stories.tsx | 2 +- .../Stack.stories.tsx | 2 +- .../Stack2.stories.tsx | 2 +- .../StackDouble.stories.tsx | 2 +- .../StackTriple.stories.tsx | 2 +- .../Star.stories.tsx | 2 +- .../StarOff.stories.tsx | 2 +- .../ThumbDown.stories.tsx | 2 +- .../ThumbUp.stories.tsx | 2 +- .../Trash.stories.tsx | 2 +- .../TrashOff.stories.tsx | 2 +- .../Unlink.stories.tsx | 2 +- .../Upload.stories.tsx | 2 +- .../Upload2.stories.tsx | 2 +- .../User.stories.tsx | 2 +- .../UserCheck.stories.tsx | 2 +- .../UserExclamation.stories.tsx | 2 +- .../UserMinus.stories.tsx | 2 +- .../UserOff.stories.tsx | 2 +- .../UserPlus.stories.tsx | 2 +- .../UserX.stories.tsx | 2 +- .../Users.stories.tsx | 2 +- .../ViewAll.stories.tsx | 2 +- .../Viewfinder.stories.tsx | 2 +- src/stories-omega/Wifi.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/Wifi1.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/Wifi2.stories.tsx | 68 +++++++++++++++++++ src/stories-omega/WifiOff.stories.tsx | 68 +++++++++++++++++++ .../World.stories.tsx | 2 +- .../Writing.stories.tsx | 2 +- src/stories-omega/X.stories.tsx | 68 +++++++++++++++++++ .../ZoomIn.stories.tsx | 2 +- .../ZoomOut.stories.tsx | 2 +- .../ZoomQuestion.stories.tsx | 2 +- unicon.config.json | 4 +- 374 files changed, 2682 insertions(+), 219 deletions(-) create mode 100644 icons-optimized/brand-github.svg create mode 100644 icons-optimized/brand-instagram.svg create mode 100644 icons-optimized/brand-youtube.svg create mode 100644 icons-optimized/current-location.svg create mode 100644 icons-optimized/dots-vertical.svg create mode 100644 icons-optimized/flag-off.svg create mode 100644 icons-optimized/info.svg create mode 100644 icons-optimized/map-2.svg create mode 100644 icons-optimized/map-pin-off.svg create mode 100644 icons-optimized/map-pin.svg create mode 100644 icons-optimized/minus.svg create mode 100644 icons-optimized/pinned.svg create mode 100644 icons-optimized/plus.svg create mode 100644 icons-optimized/refresh-2.svg create mode 100644 icons-optimized/refresh-alert.svg create mode 100644 icons-optimized/refresh.svg create mode 100644 icons-optimized/rotate-clockwise.svg create mode 100644 icons-optimized/rotate.svg create mode 100644 icons-optimized/wifi-1.svg create mode 100644 icons-optimized/wifi-2.svg create mode 100644 icons-optimized/wifi-off.svg create mode 100644 icons-optimized/wifi.svg rename src/{icons-neo => icons-omega}/Import.tsx (100%) rename src/{icons-neo => icons-omega}/adjustments-horizontal.tsx (100%) rename src/{icons-neo => icons-omega}/adjustments.tsx (100%) rename src/{icons-neo => icons-omega}/alarm.tsx (100%) rename src/{icons-neo => icons-omega}/alert-circle.tsx (100%) rename src/{icons-neo => icons-omega}/alert-octagon.tsx (100%) rename src/{icons-neo => icons-omega}/alert-triangle.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-down.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-left.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-narrow-left.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-narrow-right.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-right.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-sort-2.tsx (100%) rename src/{icons-neo => icons-omega}/arrow-up.tsx (100%) rename src/{icons-neo => icons-omega}/arrows-diagonal.tsx (100%) rename src/{icons-neo => icons-omega}/arrows-sort.tsx (100%) rename src/{icons-neo => icons-omega}/atom.tsx (100%) rename src/{icons-neo => icons-omega}/ban.tsx (100%) rename src/{icons-neo => icons-omega}/bell-minus.tsx (100%) rename src/{icons-neo => icons-omega}/bell-off.tsx (100%) rename src/{icons-neo => icons-omega}/bell-plus.tsx (100%) rename src/{icons-neo => icons-omega}/bell-ringing-2.tsx (100%) rename src/{icons-neo => icons-omega}/bell-ringing.tsx (100%) rename src/{icons-neo => icons-omega}/bell-x.tsx (100%) rename src/{icons-neo => icons-omega}/bell.tsx (100%) rename src/{icons-neo => icons-omega}/brand-facebook.tsx (100%) create mode 100644 src/icons-omega/brand-github.tsx create mode 100644 src/icons-omega/brand-instagram.tsx rename src/{icons-neo => icons-omega}/brand-twitter.tsx (100%) rename src/{icons-neo => icons-omega}/brand-whatsapp.tsx (100%) create mode 100644 src/icons-omega/brand-youtube.tsx rename src/{icons-neo => icons-omega}/bulb-off.tsx (100%) rename src/{icons-neo => icons-omega}/bulb.tsx (100%) rename src/{icons-neo => icons-omega}/check.tsx (100%) rename src/{icons-neo => icons-omega}/chevron-down.tsx (100%) rename src/{icons-neo => icons-omega}/chevron-left.tsx (100%) rename src/{icons-neo => icons-omega}/chevron-right.tsx (100%) rename src/{icons-neo => icons-omega}/chevron-up.tsx (100%) rename src/{icons-neo => icons-omega}/chevrons-left.tsx (100%) rename src/{icons-neo => icons-omega}/chevrons-right.tsx (100%) rename src/{icons-neo => icons-omega}/circle-check-2.tsx (100%) rename src/{icons-neo => icons-omega}/circle-check.tsx (100%) rename src/{icons-neo => icons-omega}/circle.tsx (100%) rename src/{icons-neo => icons-omega}/clock.tsx (100%) rename src/{icons-neo => icons-omega}/cloud-upload.tsx (100%) rename src/{icons-neo => icons-omega}/color-swatch.tsx (100%) rename src/{icons-neo => icons-omega}/confetti.tsx (100%) rename src/{icons-neo => icons-omega}/copy.tsx (100%) rename src/{icons-neo => icons-omega}/crown.tsx (100%) rename src/{icons-neo => icons-omega}/currency-dollar.tsx (100%) create mode 100644 src/icons-omega/current-location.tsx rename src/{icons-neo => icons-omega}/device-desktop-analytics.tsx (100%) rename src/{icons-neo => icons-omega}/device-desktop-off.tsx (100%) rename src/{icons-neo => icons-omega}/device-desktop.tsx (100%) rename src/{icons-neo => icons-omega}/device-laptop.tsx (100%) rename src/{icons-neo => icons-omega}/device-tv.tsx (100%) rename src/{icons-neo => icons-omega}/diamond.tsx (100%) rename src/{icons-neo => icons-omega}/discount-2.tsx (100%) rename src/{icons-neo => icons-omega}/discount.tsx (100%) rename src/{icons-neo => icons-omega}/disk.tsx (100%) create mode 100644 src/icons-omega/dots-vertical.tsx rename src/{icons-neo => icons-omega}/download.tsx (100%) rename src/{icons-neo => icons-omega}/edit.tsx (100%) rename src/{icons-neo => icons-omega}/external-link.tsx (100%) rename src/{icons-neo => icons-omega}/eye-check.tsx (100%) rename src/{icons-neo => icons-omega}/eye-off.tsx (100%) rename src/{icons-neo => icons-omega}/eye.tsx (100%) rename src/{icons-neo => icons-omega}/file-download.tsx (100%) rename src/{icons-neo => icons-omega}/file-export.tsx (100%) rename src/{icons-neo => icons-omega}/file-report.tsx (100%) rename src/{icons-neo => icons-omega}/file-search.tsx (100%) rename src/{icons-neo => icons-omega}/filter-off.tsx (100%) rename src/{icons-neo => icons-omega}/filter.tsx (100%) create mode 100644 src/icons-omega/flag-off.tsx rename src/{icons-neo => icons-omega}/flag.tsx (100%) rename src/{icons-neo => icons-omega}/folder-download.tsx (100%) rename src/{icons-neo => icons-omega}/folder-eye.tsx (100%) rename src/{icons-neo => icons-omega}/folder-minus.tsx (100%) rename src/{icons-neo => icons-omega}/folder-off.tsx (100%) rename src/{icons-neo => icons-omega}/folder-plus.tsx (100%) rename src/{icons-neo => icons-omega}/folder-upload.tsx (100%) rename src/{icons-neo => icons-omega}/folder-x.tsx (100%) rename src/{icons-neo => icons-omega}/folder.tsx (100%) rename src/{icons-neo => icons-omega}/folders.tsx (100%) rename src/{icons-neo => icons-omega}/grid-dots.tsx (100%) rename src/{icons-neo => icons-omega}/home-2.tsx (100%) rename src/{icons-neo => icons-omega}/index.ts (87%) rename src/{icons-neo => icons-omega}/info-circle.tsx (100%) rename src/{icons-neo => icons-omega}/info-cirlce-2.tsx (100%) rename src/{icons-neo => icons-omega}/info-square.tsx (100%) create mode 100644 src/icons-omega/info.tsx rename src/{icons-neo => icons-omega}/key-2.tsx (100%) rename src/{icons-neo => icons-omega}/key-duplicate.tsx (100%) rename src/{icons-neo => icons-omega}/key.tsx (100%) rename src/{icons-neo => icons-omega}/link.tsx (100%) rename src/{icons-neo => icons-omega}/loader.tsx (100%) rename src/{icons-neo => icons-omega}/lock-2.tsx (100%) rename src/{icons-neo => icons-omega}/lock-off.tsx (100%) rename src/{icons-neo => icons-omega}/lock-open.tsx (100%) rename src/{icons-neo => icons-omega}/lock.tsx (100%) rename src/{icons-neo => icons-omega}/mail.tsx (100%) create mode 100644 src/icons-omega/map-2.tsx create mode 100644 src/icons-omega/map-pin-off.tsx create mode 100644 src/icons-omega/map-pin.tsx create mode 100644 src/icons-omega/minus.tsx rename src/{icons-neo => icons-omega}/mood-crazy-happy.tsx (100%) rename src/{icons-neo => icons-omega}/mood-empty.tsx (100%) rename src/{icons-neo => icons-omega}/mood-sad.tsx (100%) rename src/{icons-neo => icons-omega}/mood-smile.tsx (100%) rename src/{icons-neo => icons-omega}/mouse-left.tsx (100%) rename src/{icons-neo => icons-omega}/mouse-right.tsx (100%) rename src/{icons-neo => icons-omega}/no-duplicate.tsx (100%) rename src/{icons-neo => icons-omega}/palette.tsx (100%) rename src/{icons-neo => icons-omega}/photo-off-2.tsx (100%) rename src/{icons-neo => icons-omega}/photo-off.tsx (100%) rename src/{icons-neo => icons-omega}/photo-stack.tsx (100%) rename src/{icons-neo => icons-omega}/photo.tsx (100%) create mode 100644 src/icons-omega/pinned.tsx create mode 100644 src/icons-omega/plus.tsx rename src/{icons-neo => icons-omega}/question-mark.tsx (100%) rename src/{icons-neo => icons-omega}/redeem.tsx (100%) create mode 100644 src/icons-omega/refresh-2.tsx create mode 100644 src/icons-omega/refresh-alert.tsx create mode 100644 src/icons-omega/refresh.tsx rename src/{icons-neo => icons-omega}/reload-alert.tsx (100%) rename src/{icons-neo => icons-omega}/rotate-90.tsx (100%) create mode 100644 src/icons-omega/rotate-clockwise.tsx create mode 100644 src/icons-omega/rotate.tsx rename src/{icons-neo => icons-omega}/search.tsx (100%) rename src/{icons-neo => icons-omega}/share.tsx (100%) rename src/{icons-neo => icons-omega}/shopping-cart-discount.tsx (100%) rename src/{icons-neo => icons-omega}/shopping-cart.tsx (100%) rename src/{icons-neo => icons-omega}/sort-ascending-2.tsx (100%) rename src/{icons-neo => icons-omega}/sort-ascending-letters.tsx (100%) rename src/{icons-neo => icons-omega}/sort-ascending-numbers.tsx (100%) rename src/{icons-neo => icons-omega}/sort-ascending.tsx (100%) rename src/{icons-neo => icons-omega}/sort-descending-2.tsx (100%) rename src/{icons-neo => icons-omega}/sort-descending-letters.tsx (100%) rename src/{icons-neo => icons-omega}/sort-descending-numbers.tsx (100%) rename src/{icons-neo => icons-omega}/sort-descending.tsx (100%) rename src/{icons-neo => icons-omega}/spray.tsx (100%) rename src/{icons-neo => icons-omega}/spray_2.tsx (100%) rename src/{icons-neo => icons-omega}/stack-2.tsx (100%) rename src/{icons-neo => icons-omega}/stack-double.tsx (100%) rename src/{icons-neo => icons-omega}/stack-triple.tsx (100%) rename src/{icons-neo => icons-omega}/stack.tsx (100%) rename src/{icons-neo => icons-omega}/star-off.tsx (100%) rename src/{icons-neo => icons-omega}/star.tsx (100%) rename src/{icons-neo => icons-omega}/thumb-down.tsx (100%) rename src/{icons-neo => icons-omega}/thumb-up.tsx (100%) rename src/{icons-neo => icons-omega}/trash-off.tsx (100%) rename src/{icons-neo => icons-omega}/trash.tsx (100%) rename src/{icons-neo => icons-omega}/unlink.tsx (100%) rename src/{icons-neo => icons-omega}/upload-2.tsx (100%) rename src/{icons-neo => icons-omega}/upload.tsx (100%) rename src/{icons-neo => icons-omega}/user-check.tsx (100%) rename src/{icons-neo => icons-omega}/user-exclamation.tsx (100%) rename src/{icons-neo => icons-omega}/user-minus.tsx (100%) rename src/{icons-neo => icons-omega}/user-off.tsx (100%) rename src/{icons-neo => icons-omega}/user-plus.tsx (100%) rename src/{icons-neo => icons-omega}/user-x.tsx (100%) rename src/{icons-neo => icons-omega}/user.tsx (100%) rename src/{icons-neo => icons-omega}/users.tsx (100%) rename src/{icons-neo => icons-omega}/view-all.tsx (100%) rename src/{icons-neo => icons-omega}/viewfinder.tsx (100%) create mode 100644 src/icons-omega/wifi-1.tsx create mode 100644 src/icons-omega/wifi-2.tsx create mode 100644 src/icons-omega/wifi-off.tsx create mode 100644 src/icons-omega/wifi.tsx rename src/{icons-neo => icons-omega}/world.tsx (100%) rename src/{icons-neo => icons-omega}/writing.tsx (100%) rename src/{icons-neo => icons-omega}/x.tsx (100%) rename src/{icons-neo => icons-omega}/zoom-in.tsx (100%) rename src/{icons-neo => icons-omega}/zoom-out.tsx (100%) rename src/{icons-neo => icons-omega}/zoom-question.tsx (100%) delete mode 100644 src/stories-neo/X.stories.tsx rename src/{stories-neo => stories-omega}/Adjustments.stories.tsx (96%) rename src/{stories-neo => stories-omega}/AdjustmentsHorizontal.stories.tsx (95%) rename src/{stories-neo => stories-omega}/Alarm.stories.tsx (97%) rename src/{stories-neo => stories-omega}/AlertCircle.stories.tsx (96%) rename src/{stories-neo => stories-omega}/AlertOctagon.stories.tsx (96%) rename src/{stories-neo => stories-omega}/AlertTriangle.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowDown.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowLeft.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowNarrowLeft.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowNarrowRight.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowRight.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowSort2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowUp.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ArrowsDiagonal.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ArrowsSort.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Atom.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Ban.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Bell.stories.tsx (97%) rename src/{stories-neo => stories-omega}/BellMinus.stories.tsx (96%) rename src/{stories-neo => stories-omega}/BellOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/BellPlus.stories.tsx (97%) rename src/{stories-neo => stories-omega}/BellRinging.stories.tsx (96%) rename src/{stories-neo => stories-omega}/BellRinging2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/BellX.stories.tsx (97%) rename src/{stories-neo => stories-omega}/BrandFacebook.stories.tsx (96%) create mode 100644 src/stories-omega/BrandGithub.stories.tsx create mode 100644 src/stories-omega/BrandInstagram.stories.tsx rename src/{stories-neo => stories-omega}/BrandTwitter.stories.tsx (96%) rename src/{stories-neo => stories-omega}/BrandWhatsapp.stories.tsx (96%) create mode 100644 src/stories-omega/BrandYoutube.stories.tsx rename src/{stories-neo => stories-omega}/Bulb.stories.tsx (97%) rename src/{stories-neo => stories-omega}/BulbOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Check.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ChevronDown.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ChevronLeft.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ChevronRight.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ChevronUp.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ChevronsLeft.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ChevronsRight.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Circle.stories.tsx (97%) rename src/{stories-neo => stories-omega}/CircleCheck.stories.tsx (96%) rename src/{stories-neo => stories-omega}/CircleCheck2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Clock.stories.tsx (97%) rename src/{stories-neo => stories-omega}/CloudUpload.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ColorSwatch.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Confetti.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Copy.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Crown.stories.tsx (97%) rename src/{stories-neo => stories-omega}/CurrencyDollar.stories.tsx (96%) create mode 100644 src/stories-omega/CurrentLocation.stories.tsx rename src/{stories-neo => stories-omega}/DeviceDesktop.stories.tsx (96%) rename src/{stories-neo => stories-omega}/DeviceDesktopAnalytics.stories.tsx (95%) rename src/{stories-neo => stories-omega}/DeviceDesktopOff.stories.tsx (96%) rename src/{stories-neo => stories-omega}/DeviceLaptop.stories.tsx (96%) rename src/{stories-neo => stories-omega}/DeviceTv.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Diamond.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Discount.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Discount2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Disk.stories.tsx (97%) create mode 100644 src/stories-omega/DotsVertical.stories.tsx rename src/{stories-neo => stories-omega}/Download.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Edit.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ExternalLink.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Eye.stories.tsx (97%) rename src/{stories-neo => stories-omega}/EyeCheck.stories.tsx (97%) rename src/{stories-neo => stories-omega}/EyeOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/FileDownload.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FileExport.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FileReport.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FileSearch.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Filter.stories.tsx (97%) rename src/{stories-neo => stories-omega}/FilterOff.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Flag.stories.tsx (97%) create mode 100644 src/stories-omega/FlagOff.stories.tsx rename src/{stories-neo => stories-omega}/Folder.stories.tsx (97%) rename src/{stories-neo => stories-omega}/FolderDownload.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderEye.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderMinus.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderOff.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderPlus.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderUpload.stories.tsx (96%) rename src/{stories-neo => stories-omega}/FolderX.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Folders.stories.tsx (97%) rename src/{stories-neo => stories-omega}/GridDots.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Home2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Import.stories.tsx (97%) create mode 100644 src/stories-omega/Info.stories.tsx rename src/{stories-neo => stories-omega}/InfoCircle.stories.tsx (96%) rename src/{stories-neo => stories-omega}/InfoCirlce2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/InfoSquare.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Key.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Key2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/KeyDuplicate.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Link.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Loader.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Lock.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Lock2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/LockOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/LockOpen.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Mail.stories.tsx (97%) create mode 100644 src/stories-omega/Map2.stories.tsx create mode 100644 src/stories-omega/MapPin.stories.tsx create mode 100644 src/stories-omega/MapPinOff.stories.tsx create mode 100644 src/stories-omega/Minus.stories.tsx rename src/{stories-neo => stories-omega}/MoodCrazyHappy.stories.tsx (96%) rename src/{stories-neo => stories-omega}/MoodEmpty.stories.tsx (96%) rename src/{stories-neo => stories-omega}/MoodSad.stories.tsx (97%) rename src/{stories-neo => stories-omega}/MoodSmile.stories.tsx (96%) rename src/{stories-neo => stories-omega}/MouseLeft.stories.tsx (96%) rename src/{stories-neo => stories-omega}/MouseRight.stories.tsx (96%) rename src/{stories-neo => stories-omega}/NoDuplicate.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Palette.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Photo.stories.tsx (97%) rename src/{stories-neo => stories-omega}/PhotoOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/PhotoOff2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/PhotoStack.stories.tsx (96%) create mode 100644 src/stories-omega/Pinned.stories.tsx create mode 100644 src/stories-omega/Plus.stories.tsx rename src/{stories-neo => stories-omega}/QuestionMark.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Redeem.stories.tsx (97%) create mode 100644 src/stories-omega/Refresh.stories.tsx create mode 100644 src/stories-omega/Refresh2.stories.tsx create mode 100644 src/stories-omega/RefreshAlert.stories.tsx rename src/{stories-neo => stories-omega}/ReloadAlert.stories.tsx (96%) create mode 100644 src/stories-omega/Rotate.stories.tsx rename src/{stories-neo => stories-omega}/Rotate90.stories.tsx (97%) create mode 100644 src/stories-omega/RotateClockwise.stories.tsx rename src/{stories-neo => stories-omega}/Search.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Share.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ShoppingCart.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ShoppingCartDiscount.stories.tsx (95%) rename src/{stories-neo => stories-omega}/SortAscending.stories.tsx (96%) rename src/{stories-neo => stories-omega}/SortAscending2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/SortAscendingLetters.stories.tsx (95%) rename src/{stories-neo => stories-omega}/SortAscendingNumbers.stories.tsx (95%) rename src/{stories-neo => stories-omega}/SortDescending.stories.tsx (96%) rename src/{stories-neo => stories-omega}/SortDescending2.stories.tsx (96%) rename src/{stories-neo => stories-omega}/SortDescendingLetters.stories.tsx (95%) rename src/{stories-neo => stories-omega}/SortDescendingNumbers.stories.tsx (95%) rename src/{stories-neo => stories-omega}/Spray.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Spray2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Stack.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Stack2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/StackDouble.stories.tsx (96%) rename src/{stories-neo => stories-omega}/StackTriple.stories.tsx (96%) rename src/{stories-neo => stories-omega}/Star.stories.tsx (97%) rename src/{stories-neo => stories-omega}/StarOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ThumbDown.stories.tsx (96%) rename src/{stories-neo => stories-omega}/ThumbUp.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Trash.stories.tsx (97%) rename src/{stories-neo => stories-omega}/TrashOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Unlink.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Upload.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Upload2.stories.tsx (97%) rename src/{stories-neo => stories-omega}/User.stories.tsx (97%) rename src/{stories-neo => stories-omega}/UserCheck.stories.tsx (96%) rename src/{stories-neo => stories-omega}/UserExclamation.stories.tsx (96%) rename src/{stories-neo => stories-omega}/UserMinus.stories.tsx (96%) rename src/{stories-neo => stories-omega}/UserOff.stories.tsx (97%) rename src/{stories-neo => stories-omega}/UserPlus.stories.tsx (97%) rename src/{stories-neo => stories-omega}/UserX.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Users.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ViewAll.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Viewfinder.stories.tsx (96%) create mode 100644 src/stories-omega/Wifi.stories.tsx create mode 100644 src/stories-omega/Wifi1.stories.tsx create mode 100644 src/stories-omega/Wifi2.stories.tsx create mode 100644 src/stories-omega/WifiOff.stories.tsx rename src/{stories-neo => stories-omega}/World.stories.tsx (97%) rename src/{stories-neo => stories-omega}/Writing.stories.tsx (97%) create mode 100644 src/stories-omega/X.stories.tsx rename src/{stories-neo => stories-omega}/ZoomIn.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ZoomOut.stories.tsx (97%) rename src/{stories-neo => stories-omega}/ZoomQuestion.stories.tsx (96%) diff --git a/icons-optimized/brand-github.svg b/icons-optimized/brand-github.svg new file mode 100644 index 00000000..c0da6b60 --- /dev/null +++ b/icons-optimized/brand-github.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-instagram.svg b/icons-optimized/brand-instagram.svg new file mode 100644 index 00000000..d25e2c01 --- /dev/null +++ b/icons-optimized/brand-instagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/brand-youtube.svg b/icons-optimized/brand-youtube.svg new file mode 100644 index 00000000..f738e62c --- /dev/null +++ b/icons-optimized/brand-youtube.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/current-location.svg b/icons-optimized/current-location.svg new file mode 100644 index 00000000..c996f126 --- /dev/null +++ b/icons-optimized/current-location.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/dots-vertical.svg b/icons-optimized/dots-vertical.svg new file mode 100644 index 00000000..b1c0cbb0 --- /dev/null +++ b/icons-optimized/dots-vertical.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/icons-optimized/flag-off.svg b/icons-optimized/flag-off.svg new file mode 100644 index 00000000..9572c1f3 --- /dev/null +++ b/icons-optimized/flag-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/info.svg b/icons-optimized/info.svg new file mode 100644 index 00000000..bef17674 --- /dev/null +++ b/icons-optimized/info.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-optimized/map-2.svg b/icons-optimized/map-2.svg new file mode 100644 index 00000000..cfe48a0f --- /dev/null +++ b/icons-optimized/map-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/map-pin-off.svg b/icons-optimized/map-pin-off.svg new file mode 100644 index 00000000..189a37f3 --- /dev/null +++ b/icons-optimized/map-pin-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/map-pin.svg b/icons-optimized/map-pin.svg new file mode 100644 index 00000000..4a0ef91c --- /dev/null +++ b/icons-optimized/map-pin.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/minus.svg b/icons-optimized/minus.svg new file mode 100644 index 00000000..653783c0 --- /dev/null +++ b/icons-optimized/minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-optimized/pinned.svg b/icons-optimized/pinned.svg new file mode 100644 index 00000000..99a1ab43 --- /dev/null +++ b/icons-optimized/pinned.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/plus.svg b/icons-optimized/plus.svg new file mode 100644 index 00000000..ecaf6766 --- /dev/null +++ b/icons-optimized/plus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/refresh-2.svg b/icons-optimized/refresh-2.svg new file mode 100644 index 00000000..5dce3593 --- /dev/null +++ b/icons-optimized/refresh-2.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/icons-optimized/refresh-alert.svg b/icons-optimized/refresh-alert.svg new file mode 100644 index 00000000..bbf51548 --- /dev/null +++ b/icons-optimized/refresh-alert.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/refresh.svg b/icons-optimized/refresh.svg new file mode 100644 index 00000000..7a1d96b0 --- /dev/null +++ b/icons-optimized/refresh.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/rotate-clockwise.svg b/icons-optimized/rotate-clockwise.svg new file mode 100644 index 00000000..991cb1c8 --- /dev/null +++ b/icons-optimized/rotate-clockwise.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/icons-optimized/rotate.svg b/icons-optimized/rotate.svg new file mode 100644 index 00000000..06e198cd --- /dev/null +++ b/icons-optimized/rotate.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/icons-optimized/wifi-1.svg b/icons-optimized/wifi-1.svg new file mode 100644 index 00000000..e09da0f4 --- /dev/null +++ b/icons-optimized/wifi-1.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/wifi-2.svg b/icons-optimized/wifi-2.svg new file mode 100644 index 00000000..7caa4a8f --- /dev/null +++ b/icons-optimized/wifi-2.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/wifi-off.svg b/icons-optimized/wifi-off.svg new file mode 100644 index 00000000..fcc0ac59 --- /dev/null +++ b/icons-optimized/wifi-off.svg @@ -0,0 +1,19 @@ + + + + + + + diff --git a/icons-optimized/wifi.svg b/icons-optimized/wifi.svg new file mode 100644 index 00000000..4fa21a89 --- /dev/null +++ b/icons-optimized/wifi.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index 5d826728..71283847 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -14,8 +14,10 @@ const cliArguments = getArgumentOptions(process.argv.slice(2)) const currentDir = getCurrentDirPath(import.meta.url) const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') -const OUTPUT_FOLDER_NAME = 'icons-neo' -const STORIES_OUTPUT_FOLDER_NAME = 'stories-neo' +const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicon.config.json', 'utf8')) + +const OUTPUT_FOLDER_NAME = UNICON_CONFIG.icon_output_dir ?? 'icons-neo' +const STORIES_OUTPUT_FOLDER_NAME = UNICON_CONFIG.stories_output_dir ?? 'stories-neo' if (!fs.existsSync(OUTPUT_DIR)) { fs.mkdirSync(OUTPUT_DIR) diff --git a/src/icons-neo/Import.tsx b/src/icons-omega/Import.tsx similarity index 100% rename from src/icons-neo/Import.tsx rename to src/icons-omega/Import.tsx diff --git a/src/icons-neo/adjustments-horizontal.tsx b/src/icons-omega/adjustments-horizontal.tsx similarity index 100% rename from src/icons-neo/adjustments-horizontal.tsx rename to src/icons-omega/adjustments-horizontal.tsx diff --git a/src/icons-neo/adjustments.tsx b/src/icons-omega/adjustments.tsx similarity index 100% rename from src/icons-neo/adjustments.tsx rename to src/icons-omega/adjustments.tsx diff --git a/src/icons-neo/alarm.tsx b/src/icons-omega/alarm.tsx similarity index 100% rename from src/icons-neo/alarm.tsx rename to src/icons-omega/alarm.tsx diff --git a/src/icons-neo/alert-circle.tsx b/src/icons-omega/alert-circle.tsx similarity index 100% rename from src/icons-neo/alert-circle.tsx rename to src/icons-omega/alert-circle.tsx diff --git a/src/icons-neo/alert-octagon.tsx b/src/icons-omega/alert-octagon.tsx similarity index 100% rename from src/icons-neo/alert-octagon.tsx rename to src/icons-omega/alert-octagon.tsx diff --git a/src/icons-neo/alert-triangle.tsx b/src/icons-omega/alert-triangle.tsx similarity index 100% rename from src/icons-neo/alert-triangle.tsx rename to src/icons-omega/alert-triangle.tsx diff --git a/src/icons-neo/arrow-down.tsx b/src/icons-omega/arrow-down.tsx similarity index 100% rename from src/icons-neo/arrow-down.tsx rename to src/icons-omega/arrow-down.tsx diff --git a/src/icons-neo/arrow-left.tsx b/src/icons-omega/arrow-left.tsx similarity index 100% rename from src/icons-neo/arrow-left.tsx rename to src/icons-omega/arrow-left.tsx diff --git a/src/icons-neo/arrow-narrow-left.tsx b/src/icons-omega/arrow-narrow-left.tsx similarity index 100% rename from src/icons-neo/arrow-narrow-left.tsx rename to src/icons-omega/arrow-narrow-left.tsx diff --git a/src/icons-neo/arrow-narrow-right.tsx b/src/icons-omega/arrow-narrow-right.tsx similarity index 100% rename from src/icons-neo/arrow-narrow-right.tsx rename to src/icons-omega/arrow-narrow-right.tsx diff --git a/src/icons-neo/arrow-right.tsx b/src/icons-omega/arrow-right.tsx similarity index 100% rename from src/icons-neo/arrow-right.tsx rename to src/icons-omega/arrow-right.tsx diff --git a/src/icons-neo/arrow-sort-2.tsx b/src/icons-omega/arrow-sort-2.tsx similarity index 100% rename from src/icons-neo/arrow-sort-2.tsx rename to src/icons-omega/arrow-sort-2.tsx diff --git a/src/icons-neo/arrow-up.tsx b/src/icons-omega/arrow-up.tsx similarity index 100% rename from src/icons-neo/arrow-up.tsx rename to src/icons-omega/arrow-up.tsx diff --git a/src/icons-neo/arrows-diagonal.tsx b/src/icons-omega/arrows-diagonal.tsx similarity index 100% rename from src/icons-neo/arrows-diagonal.tsx rename to src/icons-omega/arrows-diagonal.tsx diff --git a/src/icons-neo/arrows-sort.tsx b/src/icons-omega/arrows-sort.tsx similarity index 100% rename from src/icons-neo/arrows-sort.tsx rename to src/icons-omega/arrows-sort.tsx diff --git a/src/icons-neo/atom.tsx b/src/icons-omega/atom.tsx similarity index 100% rename from src/icons-neo/atom.tsx rename to src/icons-omega/atom.tsx diff --git a/src/icons-neo/ban.tsx b/src/icons-omega/ban.tsx similarity index 100% rename from src/icons-neo/ban.tsx rename to src/icons-omega/ban.tsx diff --git a/src/icons-neo/bell-minus.tsx b/src/icons-omega/bell-minus.tsx similarity index 100% rename from src/icons-neo/bell-minus.tsx rename to src/icons-omega/bell-minus.tsx diff --git a/src/icons-neo/bell-off.tsx b/src/icons-omega/bell-off.tsx similarity index 100% rename from src/icons-neo/bell-off.tsx rename to src/icons-omega/bell-off.tsx diff --git a/src/icons-neo/bell-plus.tsx b/src/icons-omega/bell-plus.tsx similarity index 100% rename from src/icons-neo/bell-plus.tsx rename to src/icons-omega/bell-plus.tsx diff --git a/src/icons-neo/bell-ringing-2.tsx b/src/icons-omega/bell-ringing-2.tsx similarity index 100% rename from src/icons-neo/bell-ringing-2.tsx rename to src/icons-omega/bell-ringing-2.tsx diff --git a/src/icons-neo/bell-ringing.tsx b/src/icons-omega/bell-ringing.tsx similarity index 100% rename from src/icons-neo/bell-ringing.tsx rename to src/icons-omega/bell-ringing.tsx diff --git a/src/icons-neo/bell-x.tsx b/src/icons-omega/bell-x.tsx similarity index 100% rename from src/icons-neo/bell-x.tsx rename to src/icons-omega/bell-x.tsx diff --git a/src/icons-neo/bell.tsx b/src/icons-omega/bell.tsx similarity index 100% rename from src/icons-neo/bell.tsx rename to src/icons-omega/bell.tsx diff --git a/src/icons-neo/brand-facebook.tsx b/src/icons-omega/brand-facebook.tsx similarity index 100% rename from src/icons-neo/brand-facebook.tsx rename to src/icons-omega/brand-facebook.tsx diff --git a/src/icons-omega/brand-github.tsx b/src/icons-omega/brand-github.tsx new file mode 100644 index 00000000..07749138 --- /dev/null +++ b/src/icons-omega/brand-github.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandGithub = createASIcon( + "BrandGithub", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default BrandGithub; diff --git a/src/icons-omega/brand-instagram.tsx b/src/icons-omega/brand-instagram.tsx new file mode 100644 index 00000000..dc5e4ee4 --- /dev/null +++ b/src/icons-omega/brand-instagram.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandInstagram = createASIcon( + "BrandInstagram", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default BrandInstagram; diff --git a/src/icons-neo/brand-twitter.tsx b/src/icons-omega/brand-twitter.tsx similarity index 100% rename from src/icons-neo/brand-twitter.tsx rename to src/icons-omega/brand-twitter.tsx diff --git a/src/icons-neo/brand-whatsapp.tsx b/src/icons-omega/brand-whatsapp.tsx similarity index 100% rename from src/icons-neo/brand-whatsapp.tsx rename to src/icons-omega/brand-whatsapp.tsx diff --git a/src/icons-omega/brand-youtube.tsx b/src/icons-omega/brand-youtube.tsx new file mode 100644 index 00000000..7d60ea11 --- /dev/null +++ b/src/icons-omega/brand-youtube.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandYoutube = createASIcon( + "BrandYoutube", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default BrandYoutube; diff --git a/src/icons-neo/bulb-off.tsx b/src/icons-omega/bulb-off.tsx similarity index 100% rename from src/icons-neo/bulb-off.tsx rename to src/icons-omega/bulb-off.tsx diff --git a/src/icons-neo/bulb.tsx b/src/icons-omega/bulb.tsx similarity index 100% rename from src/icons-neo/bulb.tsx rename to src/icons-omega/bulb.tsx diff --git a/src/icons-neo/check.tsx b/src/icons-omega/check.tsx similarity index 100% rename from src/icons-neo/check.tsx rename to src/icons-omega/check.tsx diff --git a/src/icons-neo/chevron-down.tsx b/src/icons-omega/chevron-down.tsx similarity index 100% rename from src/icons-neo/chevron-down.tsx rename to src/icons-omega/chevron-down.tsx diff --git a/src/icons-neo/chevron-left.tsx b/src/icons-omega/chevron-left.tsx similarity index 100% rename from src/icons-neo/chevron-left.tsx rename to src/icons-omega/chevron-left.tsx diff --git a/src/icons-neo/chevron-right.tsx b/src/icons-omega/chevron-right.tsx similarity index 100% rename from src/icons-neo/chevron-right.tsx rename to src/icons-omega/chevron-right.tsx diff --git a/src/icons-neo/chevron-up.tsx b/src/icons-omega/chevron-up.tsx similarity index 100% rename from src/icons-neo/chevron-up.tsx rename to src/icons-omega/chevron-up.tsx diff --git a/src/icons-neo/chevrons-left.tsx b/src/icons-omega/chevrons-left.tsx similarity index 100% rename from src/icons-neo/chevrons-left.tsx rename to src/icons-omega/chevrons-left.tsx diff --git a/src/icons-neo/chevrons-right.tsx b/src/icons-omega/chevrons-right.tsx similarity index 100% rename from src/icons-neo/chevrons-right.tsx rename to src/icons-omega/chevrons-right.tsx diff --git a/src/icons-neo/circle-check-2.tsx b/src/icons-omega/circle-check-2.tsx similarity index 100% rename from src/icons-neo/circle-check-2.tsx rename to src/icons-omega/circle-check-2.tsx diff --git a/src/icons-neo/circle-check.tsx b/src/icons-omega/circle-check.tsx similarity index 100% rename from src/icons-neo/circle-check.tsx rename to src/icons-omega/circle-check.tsx diff --git a/src/icons-neo/circle.tsx b/src/icons-omega/circle.tsx similarity index 100% rename from src/icons-neo/circle.tsx rename to src/icons-omega/circle.tsx diff --git a/src/icons-neo/clock.tsx b/src/icons-omega/clock.tsx similarity index 100% rename from src/icons-neo/clock.tsx rename to src/icons-omega/clock.tsx diff --git a/src/icons-neo/cloud-upload.tsx b/src/icons-omega/cloud-upload.tsx similarity index 100% rename from src/icons-neo/cloud-upload.tsx rename to src/icons-omega/cloud-upload.tsx diff --git a/src/icons-neo/color-swatch.tsx b/src/icons-omega/color-swatch.tsx similarity index 100% rename from src/icons-neo/color-swatch.tsx rename to src/icons-omega/color-swatch.tsx diff --git a/src/icons-neo/confetti.tsx b/src/icons-omega/confetti.tsx similarity index 100% rename from src/icons-neo/confetti.tsx rename to src/icons-omega/confetti.tsx diff --git a/src/icons-neo/copy.tsx b/src/icons-omega/copy.tsx similarity index 100% rename from src/icons-neo/copy.tsx rename to src/icons-omega/copy.tsx diff --git a/src/icons-neo/crown.tsx b/src/icons-omega/crown.tsx similarity index 100% rename from src/icons-neo/crown.tsx rename to src/icons-omega/crown.tsx diff --git a/src/icons-neo/currency-dollar.tsx b/src/icons-omega/currency-dollar.tsx similarity index 100% rename from src/icons-neo/currency-dollar.tsx rename to src/icons-omega/currency-dollar.tsx diff --git a/src/icons-omega/current-location.tsx b/src/icons-omega/current-location.tsx new file mode 100644 index 00000000..050366cc --- /dev/null +++ b/src/icons-omega/current-location.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CurrentLocation = createASIcon( + "CurrentLocation", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , +); + +export default CurrentLocation; diff --git a/src/icons-neo/device-desktop-analytics.tsx b/src/icons-omega/device-desktop-analytics.tsx similarity index 100% rename from src/icons-neo/device-desktop-analytics.tsx rename to src/icons-omega/device-desktop-analytics.tsx diff --git a/src/icons-neo/device-desktop-off.tsx b/src/icons-omega/device-desktop-off.tsx similarity index 100% rename from src/icons-neo/device-desktop-off.tsx rename to src/icons-omega/device-desktop-off.tsx diff --git a/src/icons-neo/device-desktop.tsx b/src/icons-omega/device-desktop.tsx similarity index 100% rename from src/icons-neo/device-desktop.tsx rename to src/icons-omega/device-desktop.tsx diff --git a/src/icons-neo/device-laptop.tsx b/src/icons-omega/device-laptop.tsx similarity index 100% rename from src/icons-neo/device-laptop.tsx rename to src/icons-omega/device-laptop.tsx diff --git a/src/icons-neo/device-tv.tsx b/src/icons-omega/device-tv.tsx similarity index 100% rename from src/icons-neo/device-tv.tsx rename to src/icons-omega/device-tv.tsx diff --git a/src/icons-neo/diamond.tsx b/src/icons-omega/diamond.tsx similarity index 100% rename from src/icons-neo/diamond.tsx rename to src/icons-omega/diamond.tsx diff --git a/src/icons-neo/discount-2.tsx b/src/icons-omega/discount-2.tsx similarity index 100% rename from src/icons-neo/discount-2.tsx rename to src/icons-omega/discount-2.tsx diff --git a/src/icons-neo/discount.tsx b/src/icons-omega/discount.tsx similarity index 100% rename from src/icons-neo/discount.tsx rename to src/icons-omega/discount.tsx diff --git a/src/icons-neo/disk.tsx b/src/icons-omega/disk.tsx similarity index 100% rename from src/icons-neo/disk.tsx rename to src/icons-omega/disk.tsx diff --git a/src/icons-omega/dots-vertical.tsx b/src/icons-omega/dots-vertical.tsx new file mode 100644 index 00000000..09e3196b --- /dev/null +++ b/src/icons-omega/dots-vertical.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DotsVertical = createASIcon( + "DotsVertical", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default DotsVertical; diff --git a/src/icons-neo/download.tsx b/src/icons-omega/download.tsx similarity index 100% rename from src/icons-neo/download.tsx rename to src/icons-omega/download.tsx diff --git a/src/icons-neo/edit.tsx b/src/icons-omega/edit.tsx similarity index 100% rename from src/icons-neo/edit.tsx rename to src/icons-omega/edit.tsx diff --git a/src/icons-neo/external-link.tsx b/src/icons-omega/external-link.tsx similarity index 100% rename from src/icons-neo/external-link.tsx rename to src/icons-omega/external-link.tsx diff --git a/src/icons-neo/eye-check.tsx b/src/icons-omega/eye-check.tsx similarity index 100% rename from src/icons-neo/eye-check.tsx rename to src/icons-omega/eye-check.tsx diff --git a/src/icons-neo/eye-off.tsx b/src/icons-omega/eye-off.tsx similarity index 100% rename from src/icons-neo/eye-off.tsx rename to src/icons-omega/eye-off.tsx diff --git a/src/icons-neo/eye.tsx b/src/icons-omega/eye.tsx similarity index 100% rename from src/icons-neo/eye.tsx rename to src/icons-omega/eye.tsx diff --git a/src/icons-neo/file-download.tsx b/src/icons-omega/file-download.tsx similarity index 100% rename from src/icons-neo/file-download.tsx rename to src/icons-omega/file-download.tsx diff --git a/src/icons-neo/file-export.tsx b/src/icons-omega/file-export.tsx similarity index 100% rename from src/icons-neo/file-export.tsx rename to src/icons-omega/file-export.tsx diff --git a/src/icons-neo/file-report.tsx b/src/icons-omega/file-report.tsx similarity index 100% rename from src/icons-neo/file-report.tsx rename to src/icons-omega/file-report.tsx diff --git a/src/icons-neo/file-search.tsx b/src/icons-omega/file-search.tsx similarity index 100% rename from src/icons-neo/file-search.tsx rename to src/icons-omega/file-search.tsx diff --git a/src/icons-neo/filter-off.tsx b/src/icons-omega/filter-off.tsx similarity index 100% rename from src/icons-neo/filter-off.tsx rename to src/icons-omega/filter-off.tsx diff --git a/src/icons-neo/filter.tsx b/src/icons-omega/filter.tsx similarity index 100% rename from src/icons-neo/filter.tsx rename to src/icons-omega/filter.tsx diff --git a/src/icons-omega/flag-off.tsx b/src/icons-omega/flag-off.tsx new file mode 100644 index 00000000..2a29e427 --- /dev/null +++ b/src/icons-omega/flag-off.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FlagOff = createASIcon( + "FlagOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default FlagOff; diff --git a/src/icons-neo/flag.tsx b/src/icons-omega/flag.tsx similarity index 100% rename from src/icons-neo/flag.tsx rename to src/icons-omega/flag.tsx diff --git a/src/icons-neo/folder-download.tsx b/src/icons-omega/folder-download.tsx similarity index 100% rename from src/icons-neo/folder-download.tsx rename to src/icons-omega/folder-download.tsx diff --git a/src/icons-neo/folder-eye.tsx b/src/icons-omega/folder-eye.tsx similarity index 100% rename from src/icons-neo/folder-eye.tsx rename to src/icons-omega/folder-eye.tsx diff --git a/src/icons-neo/folder-minus.tsx b/src/icons-omega/folder-minus.tsx similarity index 100% rename from src/icons-neo/folder-minus.tsx rename to src/icons-omega/folder-minus.tsx diff --git a/src/icons-neo/folder-off.tsx b/src/icons-omega/folder-off.tsx similarity index 100% rename from src/icons-neo/folder-off.tsx rename to src/icons-omega/folder-off.tsx diff --git a/src/icons-neo/folder-plus.tsx b/src/icons-omega/folder-plus.tsx similarity index 100% rename from src/icons-neo/folder-plus.tsx rename to src/icons-omega/folder-plus.tsx diff --git a/src/icons-neo/folder-upload.tsx b/src/icons-omega/folder-upload.tsx similarity index 100% rename from src/icons-neo/folder-upload.tsx rename to src/icons-omega/folder-upload.tsx diff --git a/src/icons-neo/folder-x.tsx b/src/icons-omega/folder-x.tsx similarity index 100% rename from src/icons-neo/folder-x.tsx rename to src/icons-omega/folder-x.tsx diff --git a/src/icons-neo/folder.tsx b/src/icons-omega/folder.tsx similarity index 100% rename from src/icons-neo/folder.tsx rename to src/icons-omega/folder.tsx diff --git a/src/icons-neo/folders.tsx b/src/icons-omega/folders.tsx similarity index 100% rename from src/icons-neo/folders.tsx rename to src/icons-omega/folders.tsx diff --git a/src/icons-neo/grid-dots.tsx b/src/icons-omega/grid-dots.tsx similarity index 100% rename from src/icons-neo/grid-dots.tsx rename to src/icons-omega/grid-dots.tsx diff --git a/src/icons-neo/home-2.tsx b/src/icons-omega/home-2.tsx similarity index 100% rename from src/icons-neo/home-2.tsx rename to src/icons-omega/home-2.tsx diff --git a/src/icons-neo/index.ts b/src/icons-omega/index.ts similarity index 87% rename from src/icons-neo/index.ts rename to src/icons-omega/index.ts index 070a8118..bcc6a970 100644 --- a/src/icons-neo/index.ts +++ b/src/icons-omega/index.ts @@ -24,8 +24,11 @@ export { default as BellRinging } from './bell-ringing'; export { default as BellX } from './bell-x'; export { default as Bell } from './bell'; export { default as BrandFacebook } from './brand-facebook'; +export { default as BrandGithub } from './brand-github'; +export { default as BrandInstagram } from './brand-instagram'; export { default as BrandTwitter } from './brand-twitter'; export { default as BrandWhatsapp } from './brand-whatsapp'; +export { default as BrandYoutube } from './brand-youtube'; export { default as BulbOff } from './bulb-off'; export { default as Bulb } from './bulb'; export { default as Check } from './check'; @@ -45,6 +48,7 @@ export { default as Confetti } from './confetti'; export { default as Copy } from './copy'; export { default as Crown } from './crown'; export { default as CurrencyDollar } from './currency-dollar'; +export { default as CurrentLocation } from './current-location'; export { default as DeviceDesktopAnalytics } from './device-desktop-analytics'; export { default as DeviceDesktopOff } from './device-desktop-off'; export { default as DeviceDesktop } from './device-desktop'; @@ -54,6 +58,7 @@ export { default as Diamond } from './diamond'; export { default as Discount2 } from './discount-2'; export { default as Discount } from './discount'; export { default as Disk } from './disk'; +export { default as DotsVertical } from './dots-vertical'; export { default as Download } from './download'; export { default as Edit } from './edit'; export { default as ExternalLink } from './external-link'; @@ -66,6 +71,7 @@ export { default as FileReport } from './file-report'; export { default as FileSearch } from './file-search'; export { default as FilterOff } from './filter-off'; export { default as Filter } from './filter'; +export { default as FlagOff } from './flag-off'; export { default as Flag } from './flag'; export { default as FolderDownload } from './folder-download'; export { default as FolderEye } from './folder-eye'; @@ -81,6 +87,7 @@ export { default as Home2 } from './home-2'; export { default as InfoCircle } from './info-circle'; export { default as InfoCirlce2 } from './info-cirlce-2'; export { default as InfoSquare } from './info-square'; +export { default as Info } from './info'; export { default as Key2 } from './key-2'; export { default as KeyDuplicate } from './key-duplicate'; export { default as Key } from './key'; @@ -91,6 +98,10 @@ export { default as LockOff } from './lock-off'; export { default as LockOpen } from './lock-open'; export { default as Lock } from './lock'; export { default as Mail } from './mail'; +export { default as Map2 } from './map-2'; +export { default as MapPinOff } from './map-pin-off'; +export { default as MapPin } from './map-pin'; +export { default as Minus } from './minus'; export { default as MoodCrazyHappy } from './mood-crazy-happy'; export { default as MoodEmpty } from './mood-empty'; export { default as MoodSad } from './mood-sad'; @@ -103,10 +114,17 @@ export { default as PhotoOff2 } from './photo-off-2'; export { default as PhotoOff } from './photo-off'; export { default as PhotoStack } from './photo-stack'; export { default as Photo } from './photo'; +export { default as Pinned } from './pinned'; +export { default as Plus } from './plus'; export { default as QuestionMark } from './question-mark'; export { default as Redeem } from './redeem'; +export { default as Refresh2 } from './refresh-2'; +export { default as RefreshAlert } from './refresh-alert'; +export { default as Refresh } from './refresh'; export { default as ReloadAlert } from './reload-alert'; export { default as Rotate90 } from './rotate-90'; +export { default as RotateClockwise } from './rotate-clockwise'; +export { default as Rotate } from './rotate'; export { default as Search } from './search'; export { default as Share } from './share'; export { default as ShoppingCartDiscount } from './shopping-cart-discount'; @@ -144,6 +162,10 @@ export { default as User } from './user'; export { default as Users } from './users'; export { default as ViewAll } from './view-all'; export { default as Viewfinder } from './viewfinder'; +export { default as Wifi1 } from './wifi-1'; +export { default as Wifi2 } from './wifi-2'; +export { default as WifiOff } from './wifi-off'; +export { default as Wifi } from './wifi'; export { default as World } from './world'; export { default as Writing } from './writing'; export { default as X } from './x'; diff --git a/src/icons-neo/info-circle.tsx b/src/icons-omega/info-circle.tsx similarity index 100% rename from src/icons-neo/info-circle.tsx rename to src/icons-omega/info-circle.tsx diff --git a/src/icons-neo/info-cirlce-2.tsx b/src/icons-omega/info-cirlce-2.tsx similarity index 100% rename from src/icons-neo/info-cirlce-2.tsx rename to src/icons-omega/info-cirlce-2.tsx diff --git a/src/icons-neo/info-square.tsx b/src/icons-omega/info-square.tsx similarity index 100% rename from src/icons-neo/info-square.tsx rename to src/icons-omega/info-square.tsx diff --git a/src/icons-omega/info.tsx b/src/icons-omega/info.tsx new file mode 100644 index 00000000..4f001ec4 --- /dev/null +++ b/src/icons-omega/info.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Info = createASIcon( + "Info", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 18 18", + }, + + + + , +); + +export default Info; diff --git a/src/icons-neo/key-2.tsx b/src/icons-omega/key-2.tsx similarity index 100% rename from src/icons-neo/key-2.tsx rename to src/icons-omega/key-2.tsx diff --git a/src/icons-neo/key-duplicate.tsx b/src/icons-omega/key-duplicate.tsx similarity index 100% rename from src/icons-neo/key-duplicate.tsx rename to src/icons-omega/key-duplicate.tsx diff --git a/src/icons-neo/key.tsx b/src/icons-omega/key.tsx similarity index 100% rename from src/icons-neo/key.tsx rename to src/icons-omega/key.tsx diff --git a/src/icons-neo/link.tsx b/src/icons-omega/link.tsx similarity index 100% rename from src/icons-neo/link.tsx rename to src/icons-omega/link.tsx diff --git a/src/icons-neo/loader.tsx b/src/icons-omega/loader.tsx similarity index 100% rename from src/icons-neo/loader.tsx rename to src/icons-omega/loader.tsx diff --git a/src/icons-neo/lock-2.tsx b/src/icons-omega/lock-2.tsx similarity index 100% rename from src/icons-neo/lock-2.tsx rename to src/icons-omega/lock-2.tsx diff --git a/src/icons-neo/lock-off.tsx b/src/icons-omega/lock-off.tsx similarity index 100% rename from src/icons-neo/lock-off.tsx rename to src/icons-omega/lock-off.tsx diff --git a/src/icons-neo/lock-open.tsx b/src/icons-omega/lock-open.tsx similarity index 100% rename from src/icons-neo/lock-open.tsx rename to src/icons-omega/lock-open.tsx diff --git a/src/icons-neo/lock.tsx b/src/icons-omega/lock.tsx similarity index 100% rename from src/icons-neo/lock.tsx rename to src/icons-omega/lock.tsx diff --git a/src/icons-neo/mail.tsx b/src/icons-omega/mail.tsx similarity index 100% rename from src/icons-neo/mail.tsx rename to src/icons-omega/mail.tsx diff --git a/src/icons-omega/map-2.tsx b/src/icons-omega/map-2.tsx new file mode 100644 index 00000000..f38c0530 --- /dev/null +++ b/src/icons-omega/map-2.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Map2 = createASIcon( + "Map2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , +); + +export default Map2; diff --git a/src/icons-omega/map-pin-off.tsx b/src/icons-omega/map-pin-off.tsx new file mode 100644 index 00000000..30b1a1dd --- /dev/null +++ b/src/icons-omega/map-pin-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MapPinOff = createASIcon( + "MapPinOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default MapPinOff; diff --git a/src/icons-omega/map-pin.tsx b/src/icons-omega/map-pin.tsx new file mode 100644 index 00000000..104fd023 --- /dev/null +++ b/src/icons-omega/map-pin.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MapPin = createASIcon( + "MapPin", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default MapPin; diff --git a/src/icons-omega/minus.tsx b/src/icons-omega/minus.tsx new file mode 100644 index 00000000..6fd42962 --- /dev/null +++ b/src/icons-omega/minus.tsx @@ -0,0 +1,16 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Minus = createASIcon( + "Minus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default Minus; diff --git a/src/icons-neo/mood-crazy-happy.tsx b/src/icons-omega/mood-crazy-happy.tsx similarity index 100% rename from src/icons-neo/mood-crazy-happy.tsx rename to src/icons-omega/mood-crazy-happy.tsx diff --git a/src/icons-neo/mood-empty.tsx b/src/icons-omega/mood-empty.tsx similarity index 100% rename from src/icons-neo/mood-empty.tsx rename to src/icons-omega/mood-empty.tsx diff --git a/src/icons-neo/mood-sad.tsx b/src/icons-omega/mood-sad.tsx similarity index 100% rename from src/icons-neo/mood-sad.tsx rename to src/icons-omega/mood-sad.tsx diff --git a/src/icons-neo/mood-smile.tsx b/src/icons-omega/mood-smile.tsx similarity index 100% rename from src/icons-neo/mood-smile.tsx rename to src/icons-omega/mood-smile.tsx diff --git a/src/icons-neo/mouse-left.tsx b/src/icons-omega/mouse-left.tsx similarity index 100% rename from src/icons-neo/mouse-left.tsx rename to src/icons-omega/mouse-left.tsx diff --git a/src/icons-neo/mouse-right.tsx b/src/icons-omega/mouse-right.tsx similarity index 100% rename from src/icons-neo/mouse-right.tsx rename to src/icons-omega/mouse-right.tsx diff --git a/src/icons-neo/no-duplicate.tsx b/src/icons-omega/no-duplicate.tsx similarity index 100% rename from src/icons-neo/no-duplicate.tsx rename to src/icons-omega/no-duplicate.tsx diff --git a/src/icons-neo/palette.tsx b/src/icons-omega/palette.tsx similarity index 100% rename from src/icons-neo/palette.tsx rename to src/icons-omega/palette.tsx diff --git a/src/icons-neo/photo-off-2.tsx b/src/icons-omega/photo-off-2.tsx similarity index 100% rename from src/icons-neo/photo-off-2.tsx rename to src/icons-omega/photo-off-2.tsx diff --git a/src/icons-neo/photo-off.tsx b/src/icons-omega/photo-off.tsx similarity index 100% rename from src/icons-neo/photo-off.tsx rename to src/icons-omega/photo-off.tsx diff --git a/src/icons-neo/photo-stack.tsx b/src/icons-omega/photo-stack.tsx similarity index 100% rename from src/icons-neo/photo-stack.tsx rename to src/icons-omega/photo-stack.tsx diff --git a/src/icons-neo/photo.tsx b/src/icons-omega/photo.tsx similarity index 100% rename from src/icons-neo/photo.tsx rename to src/icons-omega/photo.tsx diff --git a/src/icons-omega/pinned.tsx b/src/icons-omega/pinned.tsx new file mode 100644 index 00000000..6add13c9 --- /dev/null +++ b/src/icons-omega/pinned.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Pinned = createASIcon( + "Pinned", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , +); + +export default Pinned; diff --git a/src/icons-omega/plus.tsx b/src/icons-omega/plus.tsx new file mode 100644 index 00000000..0ee983ae --- /dev/null +++ b/src/icons-omega/plus.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Plus = createASIcon( + "Plus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , +); + +export default Plus; diff --git a/src/icons-neo/question-mark.tsx b/src/icons-omega/question-mark.tsx similarity index 100% rename from src/icons-neo/question-mark.tsx rename to src/icons-omega/question-mark.tsx diff --git a/src/icons-neo/redeem.tsx b/src/icons-omega/redeem.tsx similarity index 100% rename from src/icons-neo/redeem.tsx rename to src/icons-omega/redeem.tsx diff --git a/src/icons-omega/refresh-2.tsx b/src/icons-omega/refresh-2.tsx new file mode 100644 index 00000000..1e515102 --- /dev/null +++ b/src/icons-omega/refresh-2.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Refresh2 = createASIcon( + "Refresh2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + , +); + +export default Refresh2; diff --git a/src/icons-omega/refresh-alert.tsx b/src/icons-omega/refresh-alert.tsx new file mode 100644 index 00000000..ea0e84e1 --- /dev/null +++ b/src/icons-omega/refresh-alert.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RefreshAlert = createASIcon( + "RefreshAlert", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default RefreshAlert; diff --git a/src/icons-omega/refresh.tsx b/src/icons-omega/refresh.tsx new file mode 100644 index 00000000..c0e8b740 --- /dev/null +++ b/src/icons-omega/refresh.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Refresh = createASIcon( + "Refresh", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Refresh; diff --git a/src/icons-neo/reload-alert.tsx b/src/icons-omega/reload-alert.tsx similarity index 100% rename from src/icons-neo/reload-alert.tsx rename to src/icons-omega/reload-alert.tsx diff --git a/src/icons-neo/rotate-90.tsx b/src/icons-omega/rotate-90.tsx similarity index 100% rename from src/icons-neo/rotate-90.tsx rename to src/icons-omega/rotate-90.tsx diff --git a/src/icons-omega/rotate-clockwise.tsx b/src/icons-omega/rotate-clockwise.tsx new file mode 100644 index 00000000..2a8eb12f --- /dev/null +++ b/src/icons-omega/rotate-clockwise.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RotateClockwise = createASIcon( + "RotateClockwise", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default RotateClockwise; diff --git a/src/icons-omega/rotate.tsx b/src/icons-omega/rotate.tsx new file mode 100644 index 00000000..c67b2c31 --- /dev/null +++ b/src/icons-omega/rotate.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Rotate = createASIcon( + "Rotate", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , +); + +export default Rotate; diff --git a/src/icons-neo/search.tsx b/src/icons-omega/search.tsx similarity index 100% rename from src/icons-neo/search.tsx rename to src/icons-omega/search.tsx diff --git a/src/icons-neo/share.tsx b/src/icons-omega/share.tsx similarity index 100% rename from src/icons-neo/share.tsx rename to src/icons-omega/share.tsx diff --git a/src/icons-neo/shopping-cart-discount.tsx b/src/icons-omega/shopping-cart-discount.tsx similarity index 100% rename from src/icons-neo/shopping-cart-discount.tsx rename to src/icons-omega/shopping-cart-discount.tsx diff --git a/src/icons-neo/shopping-cart.tsx b/src/icons-omega/shopping-cart.tsx similarity index 100% rename from src/icons-neo/shopping-cart.tsx rename to src/icons-omega/shopping-cart.tsx diff --git a/src/icons-neo/sort-ascending-2.tsx b/src/icons-omega/sort-ascending-2.tsx similarity index 100% rename from src/icons-neo/sort-ascending-2.tsx rename to src/icons-omega/sort-ascending-2.tsx diff --git a/src/icons-neo/sort-ascending-letters.tsx b/src/icons-omega/sort-ascending-letters.tsx similarity index 100% rename from src/icons-neo/sort-ascending-letters.tsx rename to src/icons-omega/sort-ascending-letters.tsx diff --git a/src/icons-neo/sort-ascending-numbers.tsx b/src/icons-omega/sort-ascending-numbers.tsx similarity index 100% rename from src/icons-neo/sort-ascending-numbers.tsx rename to src/icons-omega/sort-ascending-numbers.tsx diff --git a/src/icons-neo/sort-ascending.tsx b/src/icons-omega/sort-ascending.tsx similarity index 100% rename from src/icons-neo/sort-ascending.tsx rename to src/icons-omega/sort-ascending.tsx diff --git a/src/icons-neo/sort-descending-2.tsx b/src/icons-omega/sort-descending-2.tsx similarity index 100% rename from src/icons-neo/sort-descending-2.tsx rename to src/icons-omega/sort-descending-2.tsx diff --git a/src/icons-neo/sort-descending-letters.tsx b/src/icons-omega/sort-descending-letters.tsx similarity index 100% rename from src/icons-neo/sort-descending-letters.tsx rename to src/icons-omega/sort-descending-letters.tsx diff --git a/src/icons-neo/sort-descending-numbers.tsx b/src/icons-omega/sort-descending-numbers.tsx similarity index 100% rename from src/icons-neo/sort-descending-numbers.tsx rename to src/icons-omega/sort-descending-numbers.tsx diff --git a/src/icons-neo/sort-descending.tsx b/src/icons-omega/sort-descending.tsx similarity index 100% rename from src/icons-neo/sort-descending.tsx rename to src/icons-omega/sort-descending.tsx diff --git a/src/icons-neo/spray.tsx b/src/icons-omega/spray.tsx similarity index 100% rename from src/icons-neo/spray.tsx rename to src/icons-omega/spray.tsx diff --git a/src/icons-neo/spray_2.tsx b/src/icons-omega/spray_2.tsx similarity index 100% rename from src/icons-neo/spray_2.tsx rename to src/icons-omega/spray_2.tsx diff --git a/src/icons-neo/stack-2.tsx b/src/icons-omega/stack-2.tsx similarity index 100% rename from src/icons-neo/stack-2.tsx rename to src/icons-omega/stack-2.tsx diff --git a/src/icons-neo/stack-double.tsx b/src/icons-omega/stack-double.tsx similarity index 100% rename from src/icons-neo/stack-double.tsx rename to src/icons-omega/stack-double.tsx diff --git a/src/icons-neo/stack-triple.tsx b/src/icons-omega/stack-triple.tsx similarity index 100% rename from src/icons-neo/stack-triple.tsx rename to src/icons-omega/stack-triple.tsx diff --git a/src/icons-neo/stack.tsx b/src/icons-omega/stack.tsx similarity index 100% rename from src/icons-neo/stack.tsx rename to src/icons-omega/stack.tsx diff --git a/src/icons-neo/star-off.tsx b/src/icons-omega/star-off.tsx similarity index 100% rename from src/icons-neo/star-off.tsx rename to src/icons-omega/star-off.tsx diff --git a/src/icons-neo/star.tsx b/src/icons-omega/star.tsx similarity index 100% rename from src/icons-neo/star.tsx rename to src/icons-omega/star.tsx diff --git a/src/icons-neo/thumb-down.tsx b/src/icons-omega/thumb-down.tsx similarity index 100% rename from src/icons-neo/thumb-down.tsx rename to src/icons-omega/thumb-down.tsx diff --git a/src/icons-neo/thumb-up.tsx b/src/icons-omega/thumb-up.tsx similarity index 100% rename from src/icons-neo/thumb-up.tsx rename to src/icons-omega/thumb-up.tsx diff --git a/src/icons-neo/trash-off.tsx b/src/icons-omega/trash-off.tsx similarity index 100% rename from src/icons-neo/trash-off.tsx rename to src/icons-omega/trash-off.tsx diff --git a/src/icons-neo/trash.tsx b/src/icons-omega/trash.tsx similarity index 100% rename from src/icons-neo/trash.tsx rename to src/icons-omega/trash.tsx diff --git a/src/icons-neo/unlink.tsx b/src/icons-omega/unlink.tsx similarity index 100% rename from src/icons-neo/unlink.tsx rename to src/icons-omega/unlink.tsx diff --git a/src/icons-neo/upload-2.tsx b/src/icons-omega/upload-2.tsx similarity index 100% rename from src/icons-neo/upload-2.tsx rename to src/icons-omega/upload-2.tsx diff --git a/src/icons-neo/upload.tsx b/src/icons-omega/upload.tsx similarity index 100% rename from src/icons-neo/upload.tsx rename to src/icons-omega/upload.tsx diff --git a/src/icons-neo/user-check.tsx b/src/icons-omega/user-check.tsx similarity index 100% rename from src/icons-neo/user-check.tsx rename to src/icons-omega/user-check.tsx diff --git a/src/icons-neo/user-exclamation.tsx b/src/icons-omega/user-exclamation.tsx similarity index 100% rename from src/icons-neo/user-exclamation.tsx rename to src/icons-omega/user-exclamation.tsx diff --git a/src/icons-neo/user-minus.tsx b/src/icons-omega/user-minus.tsx similarity index 100% rename from src/icons-neo/user-minus.tsx rename to src/icons-omega/user-minus.tsx diff --git a/src/icons-neo/user-off.tsx b/src/icons-omega/user-off.tsx similarity index 100% rename from src/icons-neo/user-off.tsx rename to src/icons-omega/user-off.tsx diff --git a/src/icons-neo/user-plus.tsx b/src/icons-omega/user-plus.tsx similarity index 100% rename from src/icons-neo/user-plus.tsx rename to src/icons-omega/user-plus.tsx diff --git a/src/icons-neo/user-x.tsx b/src/icons-omega/user-x.tsx similarity index 100% rename from src/icons-neo/user-x.tsx rename to src/icons-omega/user-x.tsx diff --git a/src/icons-neo/user.tsx b/src/icons-omega/user.tsx similarity index 100% rename from src/icons-neo/user.tsx rename to src/icons-omega/user.tsx diff --git a/src/icons-neo/users.tsx b/src/icons-omega/users.tsx similarity index 100% rename from src/icons-neo/users.tsx rename to src/icons-omega/users.tsx diff --git a/src/icons-neo/view-all.tsx b/src/icons-omega/view-all.tsx similarity index 100% rename from src/icons-neo/view-all.tsx rename to src/icons-omega/view-all.tsx diff --git a/src/icons-neo/viewfinder.tsx b/src/icons-omega/viewfinder.tsx similarity index 100% rename from src/icons-neo/viewfinder.tsx rename to src/icons-omega/viewfinder.tsx diff --git a/src/icons-omega/wifi-1.tsx b/src/icons-omega/wifi-1.tsx new file mode 100644 index 00000000..27a39fe1 --- /dev/null +++ b/src/icons-omega/wifi-1.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi1 = createASIcon( + "Wifi1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Wifi1; diff --git a/src/icons-omega/wifi-2.tsx b/src/icons-omega/wifi-2.tsx new file mode 100644 index 00000000..9be1a06c --- /dev/null +++ b/src/icons-omega/wifi-2.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi2 = createASIcon( + "Wifi2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , +); + +export default Wifi2; diff --git a/src/icons-omega/wifi-off.tsx b/src/icons-omega/wifi-off.tsx new file mode 100644 index 00000000..9d26c194 --- /dev/null +++ b/src/icons-omega/wifi-off.tsx @@ -0,0 +1,45 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const WifiOff = createASIcon( + "WifiOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + , +); + +export default WifiOff; diff --git a/src/icons-omega/wifi.tsx b/src/icons-omega/wifi.tsx new file mode 100644 index 00000000..f6838928 --- /dev/null +++ b/src/icons-omega/wifi.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi = createASIcon( + "Wifi", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , +); + +export default Wifi; diff --git a/src/icons-neo/world.tsx b/src/icons-omega/world.tsx similarity index 100% rename from src/icons-neo/world.tsx rename to src/icons-omega/world.tsx diff --git a/src/icons-neo/writing.tsx b/src/icons-omega/writing.tsx similarity index 100% rename from src/icons-neo/writing.tsx rename to src/icons-omega/writing.tsx diff --git a/src/icons-neo/x.tsx b/src/icons-omega/x.tsx similarity index 100% rename from src/icons-neo/x.tsx rename to src/icons-omega/x.tsx diff --git a/src/icons-neo/zoom-in.tsx b/src/icons-omega/zoom-in.tsx similarity index 100% rename from src/icons-neo/zoom-in.tsx rename to src/icons-omega/zoom-in.tsx diff --git a/src/icons-neo/zoom-out.tsx b/src/icons-omega/zoom-out.tsx similarity index 100% rename from src/icons-neo/zoom-out.tsx rename to src/icons-omega/zoom-out.tsx diff --git a/src/icons-neo/zoom-question.tsx b/src/icons-omega/zoom-question.tsx similarity index 100% rename from src/icons-neo/zoom-question.tsx rename to src/icons-omega/zoom-question.tsx diff --git a/src/stories-neo/X.stories.tsx b/src/stories-neo/X.stories.tsx deleted file mode 100644 index 001801a3..00000000 --- a/src/stories-neo/X.stories.tsx +++ /dev/null @@ -1,64 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' -import IconBackground from '../components/IconBackground' -import IconBorder from '../components/IconBorder' -import X from '../icons-neo/x' - -const meta: Meta = { - component: X, - title: 'omega/X', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} - -export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, -} - -export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-[5px] hover:text-blue-400', - }, -} diff --git a/src/stories-neo/Adjustments.stories.tsx b/src/stories-omega/Adjustments.stories.tsx similarity index 96% rename from src/stories-neo/Adjustments.stories.tsx rename to src/stories-omega/Adjustments.stories.tsx index ec38fcaa..d02c42ea 100644 --- a/src/stories-neo/Adjustments.stories.tsx +++ b/src/stories-omega/Adjustments.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Adjustments from '../icons-neo/adjustments' + import Adjustments from '../icons-omega/adjustments' const meta: Meta = { component: Adjustments, diff --git a/src/stories-neo/AdjustmentsHorizontal.stories.tsx b/src/stories-omega/AdjustmentsHorizontal.stories.tsx similarity index 95% rename from src/stories-neo/AdjustmentsHorizontal.stories.tsx rename to src/stories-omega/AdjustmentsHorizontal.stories.tsx index fce317dd..2d1dec50 100644 --- a/src/stories-neo/AdjustmentsHorizontal.stories.tsx +++ b/src/stories-omega/AdjustmentsHorizontal.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AdjustmentsHorizontal from '../icons-neo/adjustments-horizontal' + import AdjustmentsHorizontal from '../icons-omega/adjustments-horizontal' const meta: Meta = { component: AdjustmentsHorizontal, diff --git a/src/stories-neo/Alarm.stories.tsx b/src/stories-omega/Alarm.stories.tsx similarity index 97% rename from src/stories-neo/Alarm.stories.tsx rename to src/stories-omega/Alarm.stories.tsx index a32ed536..4878c11b 100644 --- a/src/stories-neo/Alarm.stories.tsx +++ b/src/stories-omega/Alarm.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Alarm from '../icons-neo/alarm' + import Alarm from '../icons-omega/alarm' const meta: Meta = { component: Alarm, diff --git a/src/stories-neo/AlertCircle.stories.tsx b/src/stories-omega/AlertCircle.stories.tsx similarity index 96% rename from src/stories-neo/AlertCircle.stories.tsx rename to src/stories-omega/AlertCircle.stories.tsx index 92ca9565..305a738d 100644 --- a/src/stories-neo/AlertCircle.stories.tsx +++ b/src/stories-omega/AlertCircle.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertCircle from '../icons-neo/alert-circle' + import AlertCircle from '../icons-omega/alert-circle' const meta: Meta = { component: AlertCircle, diff --git a/src/stories-neo/AlertOctagon.stories.tsx b/src/stories-omega/AlertOctagon.stories.tsx similarity index 96% rename from src/stories-neo/AlertOctagon.stories.tsx rename to src/stories-omega/AlertOctagon.stories.tsx index 454ff20a..742a2ebf 100644 --- a/src/stories-neo/AlertOctagon.stories.tsx +++ b/src/stories-omega/AlertOctagon.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertOctagon from '../icons-neo/alert-octagon' + import AlertOctagon from '../icons-omega/alert-octagon' const meta: Meta = { component: AlertOctagon, diff --git a/src/stories-neo/AlertTriangle.stories.tsx b/src/stories-omega/AlertTriangle.stories.tsx similarity index 96% rename from src/stories-neo/AlertTriangle.stories.tsx rename to src/stories-omega/AlertTriangle.stories.tsx index 02a85306..51105792 100644 --- a/src/stories-neo/AlertTriangle.stories.tsx +++ b/src/stories-omega/AlertTriangle.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertTriangle from '../icons-neo/alert-triangle' + import AlertTriangle from '../icons-omega/alert-triangle' const meta: Meta = { component: AlertTriangle, diff --git a/src/stories-neo/ArrowDown.stories.tsx b/src/stories-omega/ArrowDown.stories.tsx similarity index 96% rename from src/stories-neo/ArrowDown.stories.tsx rename to src/stories-omega/ArrowDown.stories.tsx index ae99f3bc..97cc3558 100644 --- a/src/stories-neo/ArrowDown.stories.tsx +++ b/src/stories-omega/ArrowDown.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowDown from '../icons-neo/arrow-down' + import ArrowDown from '../icons-omega/arrow-down' const meta: Meta = { component: ArrowDown, diff --git a/src/stories-neo/ArrowLeft.stories.tsx b/src/stories-omega/ArrowLeft.stories.tsx similarity index 96% rename from src/stories-neo/ArrowLeft.stories.tsx rename to src/stories-omega/ArrowLeft.stories.tsx index ffc5f876..03b4c96a 100644 --- a/src/stories-neo/ArrowLeft.stories.tsx +++ b/src/stories-omega/ArrowLeft.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowLeft from '../icons-neo/arrow-left' + import ArrowLeft from '../icons-omega/arrow-left' const meta: Meta = { component: ArrowLeft, diff --git a/src/stories-neo/ArrowNarrowLeft.stories.tsx b/src/stories-omega/ArrowNarrowLeft.stories.tsx similarity index 96% rename from src/stories-neo/ArrowNarrowLeft.stories.tsx rename to src/stories-omega/ArrowNarrowLeft.stories.tsx index abe75ba9..7ab5ec5f 100644 --- a/src/stories-neo/ArrowNarrowLeft.stories.tsx +++ b/src/stories-omega/ArrowNarrowLeft.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowNarrowLeft from '../icons-neo/arrow-narrow-left' + import ArrowNarrowLeft from '../icons-omega/arrow-narrow-left' const meta: Meta = { component: ArrowNarrowLeft, diff --git a/src/stories-neo/ArrowNarrowRight.stories.tsx b/src/stories-omega/ArrowNarrowRight.stories.tsx similarity index 96% rename from src/stories-neo/ArrowNarrowRight.stories.tsx rename to src/stories-omega/ArrowNarrowRight.stories.tsx index b2f8d35f..41fc242c 100644 --- a/src/stories-neo/ArrowNarrowRight.stories.tsx +++ b/src/stories-omega/ArrowNarrowRight.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowNarrowRight from '../icons-neo/arrow-narrow-right' + import ArrowNarrowRight from '../icons-omega/arrow-narrow-right' const meta: Meta = { component: ArrowNarrowRight, diff --git a/src/stories-neo/ArrowRight.stories.tsx b/src/stories-omega/ArrowRight.stories.tsx similarity index 96% rename from src/stories-neo/ArrowRight.stories.tsx rename to src/stories-omega/ArrowRight.stories.tsx index c34c6e5e..c4826451 100644 --- a/src/stories-neo/ArrowRight.stories.tsx +++ b/src/stories-omega/ArrowRight.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowRight from '../icons-neo/arrow-right' + import ArrowRight from '../icons-omega/arrow-right' const meta: Meta = { component: ArrowRight, diff --git a/src/stories-neo/ArrowSort2.stories.tsx b/src/stories-omega/ArrowSort2.stories.tsx similarity index 96% rename from src/stories-neo/ArrowSort2.stories.tsx rename to src/stories-omega/ArrowSort2.stories.tsx index a1fa8ac0..a58164ed 100644 --- a/src/stories-neo/ArrowSort2.stories.tsx +++ b/src/stories-omega/ArrowSort2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowSort2 from '../icons-neo/arrow-sort-2' + import ArrowSort2 from '../icons-omega/arrow-sort-2' const meta: Meta = { component: ArrowSort2, diff --git a/src/stories-neo/ArrowUp.stories.tsx b/src/stories-omega/ArrowUp.stories.tsx similarity index 97% rename from src/stories-neo/ArrowUp.stories.tsx rename to src/stories-omega/ArrowUp.stories.tsx index fb28304c..722255ef 100644 --- a/src/stories-neo/ArrowUp.stories.tsx +++ b/src/stories-omega/ArrowUp.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowUp from '../icons-neo/arrow-up' + import ArrowUp from '../icons-omega/arrow-up' const meta: Meta = { component: ArrowUp, diff --git a/src/stories-neo/ArrowsDiagonal.stories.tsx b/src/stories-omega/ArrowsDiagonal.stories.tsx similarity index 96% rename from src/stories-neo/ArrowsDiagonal.stories.tsx rename to src/stories-omega/ArrowsDiagonal.stories.tsx index 4d15cd84..6bc6520e 100644 --- a/src/stories-neo/ArrowsDiagonal.stories.tsx +++ b/src/stories-omega/ArrowsDiagonal.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowsDiagonal from '../icons-neo/arrows-diagonal' + import ArrowsDiagonal from '../icons-omega/arrows-diagonal' const meta: Meta = { component: ArrowsDiagonal, diff --git a/src/stories-neo/ArrowsSort.stories.tsx b/src/stories-omega/ArrowsSort.stories.tsx similarity index 96% rename from src/stories-neo/ArrowsSort.stories.tsx rename to src/stories-omega/ArrowsSort.stories.tsx index ed65b566..8a6761b5 100644 --- a/src/stories-neo/ArrowsSort.stories.tsx +++ b/src/stories-omega/ArrowsSort.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowsSort from '../icons-neo/arrows-sort' + import ArrowsSort from '../icons-omega/arrows-sort' const meta: Meta = { component: ArrowsSort, diff --git a/src/stories-neo/Atom.stories.tsx b/src/stories-omega/Atom.stories.tsx similarity index 97% rename from src/stories-neo/Atom.stories.tsx rename to src/stories-omega/Atom.stories.tsx index 02953f3f..bcbcf6d9 100644 --- a/src/stories-neo/Atom.stories.tsx +++ b/src/stories-omega/Atom.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Atom from '../icons-neo/atom' + import Atom from '../icons-omega/atom' const meta: Meta = { component: Atom, diff --git a/src/stories-neo/Ban.stories.tsx b/src/stories-omega/Ban.stories.tsx similarity index 97% rename from src/stories-neo/Ban.stories.tsx rename to src/stories-omega/Ban.stories.tsx index c7abe7f2..366cc6f6 100644 --- a/src/stories-neo/Ban.stories.tsx +++ b/src/stories-omega/Ban.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Ban from '../icons-neo/ban' + import Ban from '../icons-omega/ban' const meta: Meta = { component: Ban, diff --git a/src/stories-neo/Bell.stories.tsx b/src/stories-omega/Bell.stories.tsx similarity index 97% rename from src/stories-neo/Bell.stories.tsx rename to src/stories-omega/Bell.stories.tsx index 5ae25cc2..47829904 100644 --- a/src/stories-neo/Bell.stories.tsx +++ b/src/stories-omega/Bell.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Bell from '../icons-neo/bell' + import Bell from '../icons-omega/bell' const meta: Meta = { component: Bell, diff --git a/src/stories-neo/BellMinus.stories.tsx b/src/stories-omega/BellMinus.stories.tsx similarity index 96% rename from src/stories-neo/BellMinus.stories.tsx rename to src/stories-omega/BellMinus.stories.tsx index 5ddbc33c..20e6711f 100644 --- a/src/stories-neo/BellMinus.stories.tsx +++ b/src/stories-omega/BellMinus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellMinus from '../icons-neo/bell-minus' + import BellMinus from '../icons-omega/bell-minus' const meta: Meta = { component: BellMinus, diff --git a/src/stories-neo/BellOff.stories.tsx b/src/stories-omega/BellOff.stories.tsx similarity index 97% rename from src/stories-neo/BellOff.stories.tsx rename to src/stories-omega/BellOff.stories.tsx index 606ee7d3..8a42272d 100644 --- a/src/stories-neo/BellOff.stories.tsx +++ b/src/stories-omega/BellOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellOff from '../icons-neo/bell-off' + import BellOff from '../icons-omega/bell-off' const meta: Meta = { component: BellOff, diff --git a/src/stories-neo/BellPlus.stories.tsx b/src/stories-omega/BellPlus.stories.tsx similarity index 97% rename from src/stories-neo/BellPlus.stories.tsx rename to src/stories-omega/BellPlus.stories.tsx index 288d64c9..dc5c218e 100644 --- a/src/stories-neo/BellPlus.stories.tsx +++ b/src/stories-omega/BellPlus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellPlus from '../icons-neo/bell-plus' + import BellPlus from '../icons-omega/bell-plus' const meta: Meta = { component: BellPlus, diff --git a/src/stories-neo/BellRinging.stories.tsx b/src/stories-omega/BellRinging.stories.tsx similarity index 96% rename from src/stories-neo/BellRinging.stories.tsx rename to src/stories-omega/BellRinging.stories.tsx index d341b684..4782b382 100644 --- a/src/stories-neo/BellRinging.stories.tsx +++ b/src/stories-omega/BellRinging.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellRinging from '../icons-neo/bell-ringing' + import BellRinging from '../icons-omega/bell-ringing' const meta: Meta = { component: BellRinging, diff --git a/src/stories-neo/BellRinging2.stories.tsx b/src/stories-omega/BellRinging2.stories.tsx similarity index 96% rename from src/stories-neo/BellRinging2.stories.tsx rename to src/stories-omega/BellRinging2.stories.tsx index 7e017323..3713d76a 100644 --- a/src/stories-neo/BellRinging2.stories.tsx +++ b/src/stories-omega/BellRinging2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellRinging2 from '../icons-neo/bell-ringing-2' + import BellRinging2 from '../icons-omega/bell-ringing-2' const meta: Meta = { component: BellRinging2, diff --git a/src/stories-neo/BellX.stories.tsx b/src/stories-omega/BellX.stories.tsx similarity index 97% rename from src/stories-neo/BellX.stories.tsx rename to src/stories-omega/BellX.stories.tsx index c4d719d1..9708cdb0 100644 --- a/src/stories-neo/BellX.stories.tsx +++ b/src/stories-omega/BellX.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BellX from '../icons-neo/bell-x' + import BellX from '../icons-omega/bell-x' const meta: Meta = { component: BellX, diff --git a/src/stories-neo/BrandFacebook.stories.tsx b/src/stories-omega/BrandFacebook.stories.tsx similarity index 96% rename from src/stories-neo/BrandFacebook.stories.tsx rename to src/stories-omega/BrandFacebook.stories.tsx index e219f7cd..2e74d592 100644 --- a/src/stories-neo/BrandFacebook.stories.tsx +++ b/src/stories-omega/BrandFacebook.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BrandFacebook from '../icons-neo/brand-facebook' + import BrandFacebook from '../icons-omega/brand-facebook' const meta: Meta = { component: BrandFacebook, diff --git a/src/stories-omega/BrandGithub.stories.tsx b/src/stories-omega/BrandGithub.stories.tsx new file mode 100644 index 00000000..27c7cf67 --- /dev/null +++ b/src/stories-omega/BrandGithub.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandGithub from '../icons-omega/brand-github' + + const meta: Meta = { + component: BrandGithub, + title: 'omega/BrandGithub', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/BrandInstagram.stories.tsx b/src/stories-omega/BrandInstagram.stories.tsx new file mode 100644 index 00000000..532a1a5a --- /dev/null +++ b/src/stories-omega/BrandInstagram.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandInstagram from '../icons-omega/brand-instagram' + + const meta: Meta = { + component: BrandInstagram, + title: 'omega/BrandInstagram', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/BrandTwitter.stories.tsx b/src/stories-omega/BrandTwitter.stories.tsx similarity index 96% rename from src/stories-neo/BrandTwitter.stories.tsx rename to src/stories-omega/BrandTwitter.stories.tsx index dc461bc3..d3a55587 100644 --- a/src/stories-neo/BrandTwitter.stories.tsx +++ b/src/stories-omega/BrandTwitter.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BrandTwitter from '../icons-neo/brand-twitter' + import BrandTwitter from '../icons-omega/brand-twitter' const meta: Meta = { component: BrandTwitter, diff --git a/src/stories-neo/BrandWhatsapp.stories.tsx b/src/stories-omega/BrandWhatsapp.stories.tsx similarity index 96% rename from src/stories-neo/BrandWhatsapp.stories.tsx rename to src/stories-omega/BrandWhatsapp.stories.tsx index d942e086..4237e453 100644 --- a/src/stories-neo/BrandWhatsapp.stories.tsx +++ b/src/stories-omega/BrandWhatsapp.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BrandWhatsapp from '../icons-neo/brand-whatsapp' + import BrandWhatsapp from '../icons-omega/brand-whatsapp' const meta: Meta = { component: BrandWhatsapp, diff --git a/src/stories-omega/BrandYoutube.stories.tsx b/src/stories-omega/BrandYoutube.stories.tsx new file mode 100644 index 00000000..9bbe2ab6 --- /dev/null +++ b/src/stories-omega/BrandYoutube.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandYoutube from '../icons-omega/brand-youtube' + + const meta: Meta = { + component: BrandYoutube, + title: 'omega/BrandYoutube', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Bulb.stories.tsx b/src/stories-omega/Bulb.stories.tsx similarity index 97% rename from src/stories-neo/Bulb.stories.tsx rename to src/stories-omega/Bulb.stories.tsx index dcfccd77..baee9d97 100644 --- a/src/stories-neo/Bulb.stories.tsx +++ b/src/stories-omega/Bulb.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Bulb from '../icons-neo/bulb' + import Bulb from '../icons-omega/bulb' const meta: Meta = { component: Bulb, diff --git a/src/stories-neo/BulbOff.stories.tsx b/src/stories-omega/BulbOff.stories.tsx similarity index 97% rename from src/stories-neo/BulbOff.stories.tsx rename to src/stories-omega/BulbOff.stories.tsx index f5cae4f5..9d78cae5 100644 --- a/src/stories-neo/BulbOff.stories.tsx +++ b/src/stories-omega/BulbOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import BulbOff from '../icons-neo/bulb-off' + import BulbOff from '../icons-omega/bulb-off' const meta: Meta = { component: BulbOff, diff --git a/src/stories-neo/Check.stories.tsx b/src/stories-omega/Check.stories.tsx similarity index 97% rename from src/stories-neo/Check.stories.tsx rename to src/stories-omega/Check.stories.tsx index 8abd45e2..20c98bd4 100644 --- a/src/stories-neo/Check.stories.tsx +++ b/src/stories-omega/Check.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Check from '../icons-neo/check' + import Check from '../icons-omega/check' const meta: Meta = { component: Check, diff --git a/src/stories-neo/ChevronDown.stories.tsx b/src/stories-omega/ChevronDown.stories.tsx similarity index 96% rename from src/stories-neo/ChevronDown.stories.tsx rename to src/stories-omega/ChevronDown.stories.tsx index 81751fa0..9c9c5474 100644 --- a/src/stories-neo/ChevronDown.stories.tsx +++ b/src/stories-omega/ChevronDown.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronDown from '../icons-neo/chevron-down' + import ChevronDown from '../icons-omega/chevron-down' const meta: Meta = { component: ChevronDown, diff --git a/src/stories-neo/ChevronLeft.stories.tsx b/src/stories-omega/ChevronLeft.stories.tsx similarity index 96% rename from src/stories-neo/ChevronLeft.stories.tsx rename to src/stories-omega/ChevronLeft.stories.tsx index f049ba8f..3e226015 100644 --- a/src/stories-neo/ChevronLeft.stories.tsx +++ b/src/stories-omega/ChevronLeft.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronLeft from '../icons-neo/chevron-left' + import ChevronLeft from '../icons-omega/chevron-left' const meta: Meta = { component: ChevronLeft, diff --git a/src/stories-neo/ChevronRight.stories.tsx b/src/stories-omega/ChevronRight.stories.tsx similarity index 96% rename from src/stories-neo/ChevronRight.stories.tsx rename to src/stories-omega/ChevronRight.stories.tsx index 764ceab9..647b4d1d 100644 --- a/src/stories-neo/ChevronRight.stories.tsx +++ b/src/stories-omega/ChevronRight.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronRight from '../icons-neo/chevron-right' + import ChevronRight from '../icons-omega/chevron-right' const meta: Meta = { component: ChevronRight, diff --git a/src/stories-neo/ChevronUp.stories.tsx b/src/stories-omega/ChevronUp.stories.tsx similarity index 96% rename from src/stories-neo/ChevronUp.stories.tsx rename to src/stories-omega/ChevronUp.stories.tsx index 6b9b2c68..7b021060 100644 --- a/src/stories-neo/ChevronUp.stories.tsx +++ b/src/stories-omega/ChevronUp.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronUp from '../icons-neo/chevron-up' + import ChevronUp from '../icons-omega/chevron-up' const meta: Meta = { component: ChevronUp, diff --git a/src/stories-neo/ChevronsLeft.stories.tsx b/src/stories-omega/ChevronsLeft.stories.tsx similarity index 96% rename from src/stories-neo/ChevronsLeft.stories.tsx rename to src/stories-omega/ChevronsLeft.stories.tsx index 880bbeb6..8445bc26 100644 --- a/src/stories-neo/ChevronsLeft.stories.tsx +++ b/src/stories-omega/ChevronsLeft.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronsLeft from '../icons-neo/chevrons-left' + import ChevronsLeft from '../icons-omega/chevrons-left' const meta: Meta = { component: ChevronsLeft, diff --git a/src/stories-neo/ChevronsRight.stories.tsx b/src/stories-omega/ChevronsRight.stories.tsx similarity index 96% rename from src/stories-neo/ChevronsRight.stories.tsx rename to src/stories-omega/ChevronsRight.stories.tsx index 203d8a55..8f8dda74 100644 --- a/src/stories-neo/ChevronsRight.stories.tsx +++ b/src/stories-omega/ChevronsRight.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ChevronsRight from '../icons-neo/chevrons-right' + import ChevronsRight from '../icons-omega/chevrons-right' const meta: Meta = { component: ChevronsRight, diff --git a/src/stories-neo/Circle.stories.tsx b/src/stories-omega/Circle.stories.tsx similarity index 97% rename from src/stories-neo/Circle.stories.tsx rename to src/stories-omega/Circle.stories.tsx index 618fb4fb..4e3bd4e3 100644 --- a/src/stories-neo/Circle.stories.tsx +++ b/src/stories-omega/Circle.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Circle from '../icons-neo/circle' + import Circle from '../icons-omega/circle' const meta: Meta = { component: Circle, diff --git a/src/stories-neo/CircleCheck.stories.tsx b/src/stories-omega/CircleCheck.stories.tsx similarity index 96% rename from src/stories-neo/CircleCheck.stories.tsx rename to src/stories-omega/CircleCheck.stories.tsx index 802f1f63..06be0a30 100644 --- a/src/stories-neo/CircleCheck.stories.tsx +++ b/src/stories-omega/CircleCheck.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CircleCheck from '../icons-neo/circle-check' + import CircleCheck from '../icons-omega/circle-check' const meta: Meta = { component: CircleCheck, diff --git a/src/stories-neo/CircleCheck2.stories.tsx b/src/stories-omega/CircleCheck2.stories.tsx similarity index 96% rename from src/stories-neo/CircleCheck2.stories.tsx rename to src/stories-omega/CircleCheck2.stories.tsx index 2ddd5487..bc379af6 100644 --- a/src/stories-neo/CircleCheck2.stories.tsx +++ b/src/stories-omega/CircleCheck2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CircleCheck2 from '../icons-neo/circle-check-2' + import CircleCheck2 from '../icons-omega/circle-check-2' const meta: Meta = { component: CircleCheck2, diff --git a/src/stories-neo/Clock.stories.tsx b/src/stories-omega/Clock.stories.tsx similarity index 97% rename from src/stories-neo/Clock.stories.tsx rename to src/stories-omega/Clock.stories.tsx index 56795ca9..63b9290a 100644 --- a/src/stories-neo/Clock.stories.tsx +++ b/src/stories-omega/Clock.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Clock from '../icons-neo/clock' + import Clock from '../icons-omega/clock' const meta: Meta = { component: Clock, diff --git a/src/stories-neo/CloudUpload.stories.tsx b/src/stories-omega/CloudUpload.stories.tsx similarity index 96% rename from src/stories-neo/CloudUpload.stories.tsx rename to src/stories-omega/CloudUpload.stories.tsx index 05207da2..78990be7 100644 --- a/src/stories-neo/CloudUpload.stories.tsx +++ b/src/stories-omega/CloudUpload.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CloudUpload from '../icons-neo/cloud-upload' + import CloudUpload from '../icons-omega/cloud-upload' const meta: Meta = { component: CloudUpload, diff --git a/src/stories-neo/ColorSwatch.stories.tsx b/src/stories-omega/ColorSwatch.stories.tsx similarity index 96% rename from src/stories-neo/ColorSwatch.stories.tsx rename to src/stories-omega/ColorSwatch.stories.tsx index a8122e10..2864342a 100644 --- a/src/stories-neo/ColorSwatch.stories.tsx +++ b/src/stories-omega/ColorSwatch.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ColorSwatch from '../icons-neo/color-swatch' + import ColorSwatch from '../icons-omega/color-swatch' const meta: Meta = { component: ColorSwatch, diff --git a/src/stories-neo/Confetti.stories.tsx b/src/stories-omega/Confetti.stories.tsx similarity index 97% rename from src/stories-neo/Confetti.stories.tsx rename to src/stories-omega/Confetti.stories.tsx index 95d5c69f..a700c189 100644 --- a/src/stories-neo/Confetti.stories.tsx +++ b/src/stories-omega/Confetti.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Confetti from '../icons-neo/confetti' + import Confetti from '../icons-omega/confetti' const meta: Meta = { component: Confetti, diff --git a/src/stories-neo/Copy.stories.tsx b/src/stories-omega/Copy.stories.tsx similarity index 97% rename from src/stories-neo/Copy.stories.tsx rename to src/stories-omega/Copy.stories.tsx index 54b5579a..3f013299 100644 --- a/src/stories-neo/Copy.stories.tsx +++ b/src/stories-omega/Copy.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Copy from '../icons-neo/copy' + import Copy from '../icons-omega/copy' const meta: Meta = { component: Copy, diff --git a/src/stories-neo/Crown.stories.tsx b/src/stories-omega/Crown.stories.tsx similarity index 97% rename from src/stories-neo/Crown.stories.tsx rename to src/stories-omega/Crown.stories.tsx index c1b01a95..ff88e825 100644 --- a/src/stories-neo/Crown.stories.tsx +++ b/src/stories-omega/Crown.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Crown from '../icons-neo/crown' + import Crown from '../icons-omega/crown' const meta: Meta = { component: Crown, diff --git a/src/stories-neo/CurrencyDollar.stories.tsx b/src/stories-omega/CurrencyDollar.stories.tsx similarity index 96% rename from src/stories-neo/CurrencyDollar.stories.tsx rename to src/stories-omega/CurrencyDollar.stories.tsx index d92402e3..48b0b062 100644 --- a/src/stories-neo/CurrencyDollar.stories.tsx +++ b/src/stories-omega/CurrencyDollar.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CurrencyDollar from '../icons-neo/currency-dollar' + import CurrencyDollar from '../icons-omega/currency-dollar' const meta: Meta = { component: CurrencyDollar, diff --git a/src/stories-omega/CurrentLocation.stories.tsx b/src/stories-omega/CurrentLocation.stories.tsx new file mode 100644 index 00000000..b7e4c739 --- /dev/null +++ b/src/stories-omega/CurrentLocation.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrentLocation from '../icons-omega/current-location' + + const meta: Meta = { + component: CurrentLocation, + title: 'omega/CurrentLocation', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/DeviceDesktop.stories.tsx b/src/stories-omega/DeviceDesktop.stories.tsx similarity index 96% rename from src/stories-neo/DeviceDesktop.stories.tsx rename to src/stories-omega/DeviceDesktop.stories.tsx index 712b5693..98e24eaa 100644 --- a/src/stories-neo/DeviceDesktop.stories.tsx +++ b/src/stories-omega/DeviceDesktop.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DeviceDesktop from '../icons-neo/device-desktop' + import DeviceDesktop from '../icons-omega/device-desktop' const meta: Meta = { component: DeviceDesktop, diff --git a/src/stories-neo/DeviceDesktopAnalytics.stories.tsx b/src/stories-omega/DeviceDesktopAnalytics.stories.tsx similarity index 95% rename from src/stories-neo/DeviceDesktopAnalytics.stories.tsx rename to src/stories-omega/DeviceDesktopAnalytics.stories.tsx index 7c31ffe1..54e1b6d6 100644 --- a/src/stories-neo/DeviceDesktopAnalytics.stories.tsx +++ b/src/stories-omega/DeviceDesktopAnalytics.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DeviceDesktopAnalytics from '../icons-neo/device-desktop-analytics' + import DeviceDesktopAnalytics from '../icons-omega/device-desktop-analytics' const meta: Meta = { component: DeviceDesktopAnalytics, diff --git a/src/stories-neo/DeviceDesktopOff.stories.tsx b/src/stories-omega/DeviceDesktopOff.stories.tsx similarity index 96% rename from src/stories-neo/DeviceDesktopOff.stories.tsx rename to src/stories-omega/DeviceDesktopOff.stories.tsx index ee7d9168..d68ccd63 100644 --- a/src/stories-neo/DeviceDesktopOff.stories.tsx +++ b/src/stories-omega/DeviceDesktopOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DeviceDesktopOff from '../icons-neo/device-desktop-off' + import DeviceDesktopOff from '../icons-omega/device-desktop-off' const meta: Meta = { component: DeviceDesktopOff, diff --git a/src/stories-neo/DeviceLaptop.stories.tsx b/src/stories-omega/DeviceLaptop.stories.tsx similarity index 96% rename from src/stories-neo/DeviceLaptop.stories.tsx rename to src/stories-omega/DeviceLaptop.stories.tsx index 828a55d7..2c387b49 100644 --- a/src/stories-neo/DeviceLaptop.stories.tsx +++ b/src/stories-omega/DeviceLaptop.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DeviceLaptop from '../icons-neo/device-laptop' + import DeviceLaptop from '../icons-omega/device-laptop' const meta: Meta = { component: DeviceLaptop, diff --git a/src/stories-neo/DeviceTv.stories.tsx b/src/stories-omega/DeviceTv.stories.tsx similarity index 97% rename from src/stories-neo/DeviceTv.stories.tsx rename to src/stories-omega/DeviceTv.stories.tsx index 05521d92..8a836b24 100644 --- a/src/stories-neo/DeviceTv.stories.tsx +++ b/src/stories-omega/DeviceTv.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DeviceTv from '../icons-neo/device-tv' + import DeviceTv from '../icons-omega/device-tv' const meta: Meta = { component: DeviceTv, diff --git a/src/stories-neo/Diamond.stories.tsx b/src/stories-omega/Diamond.stories.tsx similarity index 97% rename from src/stories-neo/Diamond.stories.tsx rename to src/stories-omega/Diamond.stories.tsx index e55a5c70..0909d2da 100644 --- a/src/stories-neo/Diamond.stories.tsx +++ b/src/stories-omega/Diamond.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Diamond from '../icons-neo/diamond' + import Diamond from '../icons-omega/diamond' const meta: Meta = { component: Diamond, diff --git a/src/stories-neo/Discount.stories.tsx b/src/stories-omega/Discount.stories.tsx similarity index 97% rename from src/stories-neo/Discount.stories.tsx rename to src/stories-omega/Discount.stories.tsx index 86129c23..3a2a8b34 100644 --- a/src/stories-neo/Discount.stories.tsx +++ b/src/stories-omega/Discount.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Discount from '../icons-neo/discount' + import Discount from '../icons-omega/discount' const meta: Meta = { component: Discount, diff --git a/src/stories-neo/Discount2.stories.tsx b/src/stories-omega/Discount2.stories.tsx similarity index 96% rename from src/stories-neo/Discount2.stories.tsx rename to src/stories-omega/Discount2.stories.tsx index ae2e6c98..4fc54abd 100644 --- a/src/stories-neo/Discount2.stories.tsx +++ b/src/stories-omega/Discount2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Discount2 from '../icons-neo/discount-2' + import Discount2 from '../icons-omega/discount-2' const meta: Meta = { component: Discount2, diff --git a/src/stories-neo/Disk.stories.tsx b/src/stories-omega/Disk.stories.tsx similarity index 97% rename from src/stories-neo/Disk.stories.tsx rename to src/stories-omega/Disk.stories.tsx index 27f1a2cd..1c383664 100644 --- a/src/stories-neo/Disk.stories.tsx +++ b/src/stories-omega/Disk.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Disk from '../icons-neo/disk' + import Disk from '../icons-omega/disk' const meta: Meta = { component: Disk, diff --git a/src/stories-omega/DotsVertical.stories.tsx b/src/stories-omega/DotsVertical.stories.tsx new file mode 100644 index 00000000..51a215c2 --- /dev/null +++ b/src/stories-omega/DotsVertical.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DotsVertical from '../icons-omega/dots-vertical' + + const meta: Meta = { + component: DotsVertical, + title: 'omega/DotsVertical', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Download.stories.tsx b/src/stories-omega/Download.stories.tsx similarity index 97% rename from src/stories-neo/Download.stories.tsx rename to src/stories-omega/Download.stories.tsx index fefd4a38..ba1aaa10 100644 --- a/src/stories-neo/Download.stories.tsx +++ b/src/stories-omega/Download.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Download from '../icons-neo/download' + import Download from '../icons-omega/download' const meta: Meta = { component: Download, diff --git a/src/stories-neo/Edit.stories.tsx b/src/stories-omega/Edit.stories.tsx similarity index 97% rename from src/stories-neo/Edit.stories.tsx rename to src/stories-omega/Edit.stories.tsx index 465b5b5d..3b8fd20a 100644 --- a/src/stories-neo/Edit.stories.tsx +++ b/src/stories-omega/Edit.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Edit from '../icons-neo/edit' + import Edit from '../icons-omega/edit' const meta: Meta = { component: Edit, diff --git a/src/stories-neo/ExternalLink.stories.tsx b/src/stories-omega/ExternalLink.stories.tsx similarity index 96% rename from src/stories-neo/ExternalLink.stories.tsx rename to src/stories-omega/ExternalLink.stories.tsx index c0e78823..4f31a2cc 100644 --- a/src/stories-neo/ExternalLink.stories.tsx +++ b/src/stories-omega/ExternalLink.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ExternalLink from '../icons-neo/external-link' + import ExternalLink from '../icons-omega/external-link' const meta: Meta = { component: ExternalLink, diff --git a/src/stories-neo/Eye.stories.tsx b/src/stories-omega/Eye.stories.tsx similarity index 97% rename from src/stories-neo/Eye.stories.tsx rename to src/stories-omega/Eye.stories.tsx index 1c6c3e62..e3ae92da 100644 --- a/src/stories-neo/Eye.stories.tsx +++ b/src/stories-omega/Eye.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Eye from '../icons-neo/eye' + import Eye from '../icons-omega/eye' const meta: Meta = { component: Eye, diff --git a/src/stories-neo/EyeCheck.stories.tsx b/src/stories-omega/EyeCheck.stories.tsx similarity index 97% rename from src/stories-neo/EyeCheck.stories.tsx rename to src/stories-omega/EyeCheck.stories.tsx index 92f095e7..09d57c32 100644 --- a/src/stories-neo/EyeCheck.stories.tsx +++ b/src/stories-omega/EyeCheck.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import EyeCheck from '../icons-neo/eye-check' + import EyeCheck from '../icons-omega/eye-check' const meta: Meta = { component: EyeCheck, diff --git a/src/stories-neo/EyeOff.stories.tsx b/src/stories-omega/EyeOff.stories.tsx similarity index 97% rename from src/stories-neo/EyeOff.stories.tsx rename to src/stories-omega/EyeOff.stories.tsx index 036a607f..fce62fae 100644 --- a/src/stories-neo/EyeOff.stories.tsx +++ b/src/stories-omega/EyeOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import EyeOff from '../icons-neo/eye-off' + import EyeOff from '../icons-omega/eye-off' const meta: Meta = { component: EyeOff, diff --git a/src/stories-neo/FileDownload.stories.tsx b/src/stories-omega/FileDownload.stories.tsx similarity index 96% rename from src/stories-neo/FileDownload.stories.tsx rename to src/stories-omega/FileDownload.stories.tsx index 018888e7..fdb366fd 100644 --- a/src/stories-neo/FileDownload.stories.tsx +++ b/src/stories-omega/FileDownload.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FileDownload from '../icons-neo/file-download' + import FileDownload from '../icons-omega/file-download' const meta: Meta = { component: FileDownload, diff --git a/src/stories-neo/FileExport.stories.tsx b/src/stories-omega/FileExport.stories.tsx similarity index 96% rename from src/stories-neo/FileExport.stories.tsx rename to src/stories-omega/FileExport.stories.tsx index 2d5f84e2..5a1f2726 100644 --- a/src/stories-neo/FileExport.stories.tsx +++ b/src/stories-omega/FileExport.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FileExport from '../icons-neo/file-export' + import FileExport from '../icons-omega/file-export' const meta: Meta = { component: FileExport, diff --git a/src/stories-neo/FileReport.stories.tsx b/src/stories-omega/FileReport.stories.tsx similarity index 96% rename from src/stories-neo/FileReport.stories.tsx rename to src/stories-omega/FileReport.stories.tsx index b0919924..0187167c 100644 --- a/src/stories-neo/FileReport.stories.tsx +++ b/src/stories-omega/FileReport.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FileReport from '../icons-neo/file-report' + import FileReport from '../icons-omega/file-report' const meta: Meta = { component: FileReport, diff --git a/src/stories-neo/FileSearch.stories.tsx b/src/stories-omega/FileSearch.stories.tsx similarity index 96% rename from src/stories-neo/FileSearch.stories.tsx rename to src/stories-omega/FileSearch.stories.tsx index 0222ad96..3715d616 100644 --- a/src/stories-neo/FileSearch.stories.tsx +++ b/src/stories-omega/FileSearch.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FileSearch from '../icons-neo/file-search' + import FileSearch from '../icons-omega/file-search' const meta: Meta = { component: FileSearch, diff --git a/src/stories-neo/Filter.stories.tsx b/src/stories-omega/Filter.stories.tsx similarity index 97% rename from src/stories-neo/Filter.stories.tsx rename to src/stories-omega/Filter.stories.tsx index a760e624..e99c9442 100644 --- a/src/stories-neo/Filter.stories.tsx +++ b/src/stories-omega/Filter.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Filter from '../icons-neo/filter' + import Filter from '../icons-omega/filter' const meta: Meta = { component: Filter, diff --git a/src/stories-neo/FilterOff.stories.tsx b/src/stories-omega/FilterOff.stories.tsx similarity index 96% rename from src/stories-neo/FilterOff.stories.tsx rename to src/stories-omega/FilterOff.stories.tsx index c2d4dbf9..5a4faf61 100644 --- a/src/stories-neo/FilterOff.stories.tsx +++ b/src/stories-omega/FilterOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FilterOff from '../icons-neo/filter-off' + import FilterOff from '../icons-omega/filter-off' const meta: Meta = { component: FilterOff, diff --git a/src/stories-neo/Flag.stories.tsx b/src/stories-omega/Flag.stories.tsx similarity index 97% rename from src/stories-neo/Flag.stories.tsx rename to src/stories-omega/Flag.stories.tsx index be2f566a..34e3a99a 100644 --- a/src/stories-neo/Flag.stories.tsx +++ b/src/stories-omega/Flag.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Flag from '../icons-neo/flag' + import Flag from '../icons-omega/flag' const meta: Meta = { component: Flag, diff --git a/src/stories-omega/FlagOff.stories.tsx b/src/stories-omega/FlagOff.stories.tsx new file mode 100644 index 00000000..b81069ab --- /dev/null +++ b/src/stories-omega/FlagOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagOff from '../icons-omega/flag-off' + + const meta: Meta = { + component: FlagOff, + title: 'omega/FlagOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Folder.stories.tsx b/src/stories-omega/Folder.stories.tsx similarity index 97% rename from src/stories-neo/Folder.stories.tsx rename to src/stories-omega/Folder.stories.tsx index 0e8c047a..00401be9 100644 --- a/src/stories-neo/Folder.stories.tsx +++ b/src/stories-omega/Folder.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Folder from '../icons-neo/folder' + import Folder from '../icons-omega/folder' const meta: Meta = { component: Folder, diff --git a/src/stories-neo/FolderDownload.stories.tsx b/src/stories-omega/FolderDownload.stories.tsx similarity index 96% rename from src/stories-neo/FolderDownload.stories.tsx rename to src/stories-omega/FolderDownload.stories.tsx index f3612b77..ef8ad564 100644 --- a/src/stories-neo/FolderDownload.stories.tsx +++ b/src/stories-omega/FolderDownload.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderDownload from '../icons-neo/folder-download' + import FolderDownload from '../icons-omega/folder-download' const meta: Meta = { component: FolderDownload, diff --git a/src/stories-neo/FolderEye.stories.tsx b/src/stories-omega/FolderEye.stories.tsx similarity index 96% rename from src/stories-neo/FolderEye.stories.tsx rename to src/stories-omega/FolderEye.stories.tsx index cb4acbc3..989c8643 100644 --- a/src/stories-neo/FolderEye.stories.tsx +++ b/src/stories-omega/FolderEye.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderEye from '../icons-neo/folder-eye' + import FolderEye from '../icons-omega/folder-eye' const meta: Meta = { component: FolderEye, diff --git a/src/stories-neo/FolderMinus.stories.tsx b/src/stories-omega/FolderMinus.stories.tsx similarity index 96% rename from src/stories-neo/FolderMinus.stories.tsx rename to src/stories-omega/FolderMinus.stories.tsx index 050eeb54..0bed0a59 100644 --- a/src/stories-neo/FolderMinus.stories.tsx +++ b/src/stories-omega/FolderMinus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderMinus from '../icons-neo/folder-minus' + import FolderMinus from '../icons-omega/folder-minus' const meta: Meta = { component: FolderMinus, diff --git a/src/stories-neo/FolderOff.stories.tsx b/src/stories-omega/FolderOff.stories.tsx similarity index 96% rename from src/stories-neo/FolderOff.stories.tsx rename to src/stories-omega/FolderOff.stories.tsx index 97b67611..d99c92a9 100644 --- a/src/stories-neo/FolderOff.stories.tsx +++ b/src/stories-omega/FolderOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderOff from '../icons-neo/folder-off' + import FolderOff from '../icons-omega/folder-off' const meta: Meta = { component: FolderOff, diff --git a/src/stories-neo/FolderPlus.stories.tsx b/src/stories-omega/FolderPlus.stories.tsx similarity index 96% rename from src/stories-neo/FolderPlus.stories.tsx rename to src/stories-omega/FolderPlus.stories.tsx index 882fd751..0480fd0a 100644 --- a/src/stories-neo/FolderPlus.stories.tsx +++ b/src/stories-omega/FolderPlus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderPlus from '../icons-neo/folder-plus' + import FolderPlus from '../icons-omega/folder-plus' const meta: Meta = { component: FolderPlus, diff --git a/src/stories-neo/FolderUpload.stories.tsx b/src/stories-omega/FolderUpload.stories.tsx similarity index 96% rename from src/stories-neo/FolderUpload.stories.tsx rename to src/stories-omega/FolderUpload.stories.tsx index 05fbd2f9..35ac2c02 100644 --- a/src/stories-neo/FolderUpload.stories.tsx +++ b/src/stories-omega/FolderUpload.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderUpload from '../icons-neo/folder-upload' + import FolderUpload from '../icons-omega/folder-upload' const meta: Meta = { component: FolderUpload, diff --git a/src/stories-neo/FolderX.stories.tsx b/src/stories-omega/FolderX.stories.tsx similarity index 97% rename from src/stories-neo/FolderX.stories.tsx rename to src/stories-omega/FolderX.stories.tsx index b58d4731..88665991 100644 --- a/src/stories-neo/FolderX.stories.tsx +++ b/src/stories-omega/FolderX.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderX from '../icons-neo/folder-x' + import FolderX from '../icons-omega/folder-x' const meta: Meta = { component: FolderX, diff --git a/src/stories-neo/Folders.stories.tsx b/src/stories-omega/Folders.stories.tsx similarity index 97% rename from src/stories-neo/Folders.stories.tsx rename to src/stories-omega/Folders.stories.tsx index 11c24697..7a071653 100644 --- a/src/stories-neo/Folders.stories.tsx +++ b/src/stories-omega/Folders.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Folders from '../icons-neo/folders' + import Folders from '../icons-omega/folders' const meta: Meta = { component: Folders, diff --git a/src/stories-neo/GridDots.stories.tsx b/src/stories-omega/GridDots.stories.tsx similarity index 97% rename from src/stories-neo/GridDots.stories.tsx rename to src/stories-omega/GridDots.stories.tsx index b31060e3..49121328 100644 --- a/src/stories-neo/GridDots.stories.tsx +++ b/src/stories-omega/GridDots.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import GridDots from '../icons-neo/grid-dots' + import GridDots from '../icons-omega/grid-dots' const meta: Meta = { component: GridDots, diff --git a/src/stories-neo/Home2.stories.tsx b/src/stories-omega/Home2.stories.tsx similarity index 97% rename from src/stories-neo/Home2.stories.tsx rename to src/stories-omega/Home2.stories.tsx index e20beaad..eb37cb12 100644 --- a/src/stories-neo/Home2.stories.tsx +++ b/src/stories-omega/Home2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Home2 from '../icons-neo/home-2' + import Home2 from '../icons-omega/home-2' const meta: Meta = { component: Home2, diff --git a/src/stories-neo/Import.stories.tsx b/src/stories-omega/Import.stories.tsx similarity index 97% rename from src/stories-neo/Import.stories.tsx rename to src/stories-omega/Import.stories.tsx index b78d78d0..e1c90a36 100644 --- a/src/stories-neo/Import.stories.tsx +++ b/src/stories-omega/Import.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Import from '../icons-neo/Import' + import Import from '../icons-omega/Import' const meta: Meta = { component: Import, diff --git a/src/stories-omega/Info.stories.tsx b/src/stories-omega/Info.stories.tsx new file mode 100644 index 00000000..9d5389ac --- /dev/null +++ b/src/stories-omega/Info.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Info from '../icons-omega/info' + + const meta: Meta = { + component: Info, + title: 'omega/Info', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/InfoCircle.stories.tsx b/src/stories-omega/InfoCircle.stories.tsx similarity index 96% rename from src/stories-neo/InfoCircle.stories.tsx rename to src/stories-omega/InfoCircle.stories.tsx index b0b152c7..ea686fc1 100644 --- a/src/stories-neo/InfoCircle.stories.tsx +++ b/src/stories-omega/InfoCircle.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import InfoCircle from '../icons-neo/info-circle' + import InfoCircle from '../icons-omega/info-circle' const meta: Meta = { component: InfoCircle, diff --git a/src/stories-neo/InfoCirlce2.stories.tsx b/src/stories-omega/InfoCirlce2.stories.tsx similarity index 96% rename from src/stories-neo/InfoCirlce2.stories.tsx rename to src/stories-omega/InfoCirlce2.stories.tsx index 39c35f4a..1f412f9f 100644 --- a/src/stories-neo/InfoCirlce2.stories.tsx +++ b/src/stories-omega/InfoCirlce2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import InfoCirlce2 from '../icons-neo/info-cirlce-2' + import InfoCirlce2 from '../icons-omega/info-cirlce-2' const meta: Meta = { component: InfoCirlce2, diff --git a/src/stories-neo/InfoSquare.stories.tsx b/src/stories-omega/InfoSquare.stories.tsx similarity index 96% rename from src/stories-neo/InfoSquare.stories.tsx rename to src/stories-omega/InfoSquare.stories.tsx index 0e1888fd..29247e88 100644 --- a/src/stories-neo/InfoSquare.stories.tsx +++ b/src/stories-omega/InfoSquare.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import InfoSquare from '../icons-neo/info-square' + import InfoSquare from '../icons-omega/info-square' const meta: Meta = { component: InfoSquare, diff --git a/src/stories-neo/Key.stories.tsx b/src/stories-omega/Key.stories.tsx similarity index 97% rename from src/stories-neo/Key.stories.tsx rename to src/stories-omega/Key.stories.tsx index 6ee1823c..f2b49726 100644 --- a/src/stories-neo/Key.stories.tsx +++ b/src/stories-omega/Key.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Key from '../icons-neo/key' + import Key from '../icons-omega/key' const meta: Meta = { component: Key, diff --git a/src/stories-neo/Key2.stories.tsx b/src/stories-omega/Key2.stories.tsx similarity index 97% rename from src/stories-neo/Key2.stories.tsx rename to src/stories-omega/Key2.stories.tsx index e4b5001a..05d11255 100644 --- a/src/stories-neo/Key2.stories.tsx +++ b/src/stories-omega/Key2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Key2 from '../icons-neo/key-2' + import Key2 from '../icons-omega/key-2' const meta: Meta = { component: Key2, diff --git a/src/stories-neo/KeyDuplicate.stories.tsx b/src/stories-omega/KeyDuplicate.stories.tsx similarity index 96% rename from src/stories-neo/KeyDuplicate.stories.tsx rename to src/stories-omega/KeyDuplicate.stories.tsx index dae67690..a499d071 100644 --- a/src/stories-neo/KeyDuplicate.stories.tsx +++ b/src/stories-omega/KeyDuplicate.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import KeyDuplicate from '../icons-neo/key-duplicate' + import KeyDuplicate from '../icons-omega/key-duplicate' const meta: Meta = { component: KeyDuplicate, diff --git a/src/stories-neo/Link.stories.tsx b/src/stories-omega/Link.stories.tsx similarity index 97% rename from src/stories-neo/Link.stories.tsx rename to src/stories-omega/Link.stories.tsx index b75fa34f..bbc53752 100644 --- a/src/stories-neo/Link.stories.tsx +++ b/src/stories-omega/Link.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Link from '../icons-neo/link' + import Link from '../icons-omega/link' const meta: Meta = { component: Link, diff --git a/src/stories-neo/Loader.stories.tsx b/src/stories-omega/Loader.stories.tsx similarity index 97% rename from src/stories-neo/Loader.stories.tsx rename to src/stories-omega/Loader.stories.tsx index 40d82d9d..56feb38b 100644 --- a/src/stories-neo/Loader.stories.tsx +++ b/src/stories-omega/Loader.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Loader from '../icons-neo/loader' + import Loader from '../icons-omega/loader' const meta: Meta = { component: Loader, diff --git a/src/stories-neo/Lock.stories.tsx b/src/stories-omega/Lock.stories.tsx similarity index 97% rename from src/stories-neo/Lock.stories.tsx rename to src/stories-omega/Lock.stories.tsx index 8ec68b33..c0854871 100644 --- a/src/stories-neo/Lock.stories.tsx +++ b/src/stories-omega/Lock.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Lock from '../icons-neo/lock' + import Lock from '../icons-omega/lock' const meta: Meta = { component: Lock, diff --git a/src/stories-neo/Lock2.stories.tsx b/src/stories-omega/Lock2.stories.tsx similarity index 97% rename from src/stories-neo/Lock2.stories.tsx rename to src/stories-omega/Lock2.stories.tsx index 96c83d65..038fd59a 100644 --- a/src/stories-neo/Lock2.stories.tsx +++ b/src/stories-omega/Lock2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Lock2 from '../icons-neo/lock-2' + import Lock2 from '../icons-omega/lock-2' const meta: Meta = { component: Lock2, diff --git a/src/stories-neo/LockOff.stories.tsx b/src/stories-omega/LockOff.stories.tsx similarity index 97% rename from src/stories-neo/LockOff.stories.tsx rename to src/stories-omega/LockOff.stories.tsx index 69c416b9..0232d11b 100644 --- a/src/stories-neo/LockOff.stories.tsx +++ b/src/stories-omega/LockOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import LockOff from '../icons-neo/lock-off' + import LockOff from '../icons-omega/lock-off' const meta: Meta = { component: LockOff, diff --git a/src/stories-neo/LockOpen.stories.tsx b/src/stories-omega/LockOpen.stories.tsx similarity index 97% rename from src/stories-neo/LockOpen.stories.tsx rename to src/stories-omega/LockOpen.stories.tsx index a04e199c..ea41a635 100644 --- a/src/stories-neo/LockOpen.stories.tsx +++ b/src/stories-omega/LockOpen.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import LockOpen from '../icons-neo/lock-open' + import LockOpen from '../icons-omega/lock-open' const meta: Meta = { component: LockOpen, diff --git a/src/stories-neo/Mail.stories.tsx b/src/stories-omega/Mail.stories.tsx similarity index 97% rename from src/stories-neo/Mail.stories.tsx rename to src/stories-omega/Mail.stories.tsx index ea379fe2..f006d74b 100644 --- a/src/stories-neo/Mail.stories.tsx +++ b/src/stories-omega/Mail.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Mail from '../icons-neo/mail' + import Mail from '../icons-omega/mail' const meta: Meta = { component: Mail, diff --git a/src/stories-omega/Map2.stories.tsx b/src/stories-omega/Map2.stories.tsx new file mode 100644 index 00000000..3f891917 --- /dev/null +++ b/src/stories-omega/Map2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Map2 from '../icons-omega/map-2' + + const meta: Meta = { + component: Map2, + title: 'omega/Map2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/MapPin.stories.tsx b/src/stories-omega/MapPin.stories.tsx new file mode 100644 index 00000000..8d826c43 --- /dev/null +++ b/src/stories-omega/MapPin.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPin from '../icons-omega/map-pin' + + const meta: Meta = { + component: MapPin, + title: 'omega/MapPin', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/MapPinOff.stories.tsx b/src/stories-omega/MapPinOff.stories.tsx new file mode 100644 index 00000000..91a454f7 --- /dev/null +++ b/src/stories-omega/MapPinOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPinOff from '../icons-omega/map-pin-off' + + const meta: Meta = { + component: MapPinOff, + title: 'omega/MapPinOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/Minus.stories.tsx b/src/stories-omega/Minus.stories.tsx new file mode 100644 index 00000000..2df900b0 --- /dev/null +++ b/src/stories-omega/Minus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Minus from '../icons-omega/minus' + + const meta: Meta = { + component: Minus, + title: 'omega/Minus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/MoodCrazyHappy.stories.tsx b/src/stories-omega/MoodCrazyHappy.stories.tsx similarity index 96% rename from src/stories-neo/MoodCrazyHappy.stories.tsx rename to src/stories-omega/MoodCrazyHappy.stories.tsx index d202864f..3d8316a5 100644 --- a/src/stories-neo/MoodCrazyHappy.stories.tsx +++ b/src/stories-omega/MoodCrazyHappy.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MoodCrazyHappy from '../icons-neo/mood-crazy-happy' + import MoodCrazyHappy from '../icons-omega/mood-crazy-happy' const meta: Meta = { component: MoodCrazyHappy, diff --git a/src/stories-neo/MoodEmpty.stories.tsx b/src/stories-omega/MoodEmpty.stories.tsx similarity index 96% rename from src/stories-neo/MoodEmpty.stories.tsx rename to src/stories-omega/MoodEmpty.stories.tsx index 08193060..9efbf01d 100644 --- a/src/stories-neo/MoodEmpty.stories.tsx +++ b/src/stories-omega/MoodEmpty.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MoodEmpty from '../icons-neo/mood-empty' + import MoodEmpty from '../icons-omega/mood-empty' const meta: Meta = { component: MoodEmpty, diff --git a/src/stories-neo/MoodSad.stories.tsx b/src/stories-omega/MoodSad.stories.tsx similarity index 97% rename from src/stories-neo/MoodSad.stories.tsx rename to src/stories-omega/MoodSad.stories.tsx index 5b25ccf1..7d8899d5 100644 --- a/src/stories-neo/MoodSad.stories.tsx +++ b/src/stories-omega/MoodSad.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MoodSad from '../icons-neo/mood-sad' + import MoodSad from '../icons-omega/mood-sad' const meta: Meta = { component: MoodSad, diff --git a/src/stories-neo/MoodSmile.stories.tsx b/src/stories-omega/MoodSmile.stories.tsx similarity index 96% rename from src/stories-neo/MoodSmile.stories.tsx rename to src/stories-omega/MoodSmile.stories.tsx index 7b459c68..02287c99 100644 --- a/src/stories-neo/MoodSmile.stories.tsx +++ b/src/stories-omega/MoodSmile.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MoodSmile from '../icons-neo/mood-smile' + import MoodSmile from '../icons-omega/mood-smile' const meta: Meta = { component: MoodSmile, diff --git a/src/stories-neo/MouseLeft.stories.tsx b/src/stories-omega/MouseLeft.stories.tsx similarity index 96% rename from src/stories-neo/MouseLeft.stories.tsx rename to src/stories-omega/MouseLeft.stories.tsx index 6f6520d5..c3a072a0 100644 --- a/src/stories-neo/MouseLeft.stories.tsx +++ b/src/stories-omega/MouseLeft.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MouseLeft from '../icons-neo/mouse-left' + import MouseLeft from '../icons-omega/mouse-left' const meta: Meta = { component: MouseLeft, diff --git a/src/stories-neo/MouseRight.stories.tsx b/src/stories-omega/MouseRight.stories.tsx similarity index 96% rename from src/stories-neo/MouseRight.stories.tsx rename to src/stories-omega/MouseRight.stories.tsx index 2e3f2758..bfdcd78f 100644 --- a/src/stories-neo/MouseRight.stories.tsx +++ b/src/stories-omega/MouseRight.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MouseRight from '../icons-neo/mouse-right' + import MouseRight from '../icons-omega/mouse-right' const meta: Meta = { component: MouseRight, diff --git a/src/stories-neo/NoDuplicate.stories.tsx b/src/stories-omega/NoDuplicate.stories.tsx similarity index 96% rename from src/stories-neo/NoDuplicate.stories.tsx rename to src/stories-omega/NoDuplicate.stories.tsx index fbe2657e..d65f9485 100644 --- a/src/stories-neo/NoDuplicate.stories.tsx +++ b/src/stories-omega/NoDuplicate.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import NoDuplicate from '../icons-neo/no-duplicate' + import NoDuplicate from '../icons-omega/no-duplicate' const meta: Meta = { component: NoDuplicate, diff --git a/src/stories-neo/Palette.stories.tsx b/src/stories-omega/Palette.stories.tsx similarity index 97% rename from src/stories-neo/Palette.stories.tsx rename to src/stories-omega/Palette.stories.tsx index 38fc070d..825967b0 100644 --- a/src/stories-neo/Palette.stories.tsx +++ b/src/stories-omega/Palette.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Palette from '../icons-neo/palette' + import Palette from '../icons-omega/palette' const meta: Meta = { component: Palette, diff --git a/src/stories-neo/Photo.stories.tsx b/src/stories-omega/Photo.stories.tsx similarity index 97% rename from src/stories-neo/Photo.stories.tsx rename to src/stories-omega/Photo.stories.tsx index 26c6539b..759b416f 100644 --- a/src/stories-neo/Photo.stories.tsx +++ b/src/stories-omega/Photo.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Photo from '../icons-neo/photo' + import Photo from '../icons-omega/photo' const meta: Meta = { component: Photo, diff --git a/src/stories-neo/PhotoOff.stories.tsx b/src/stories-omega/PhotoOff.stories.tsx similarity index 97% rename from src/stories-neo/PhotoOff.stories.tsx rename to src/stories-omega/PhotoOff.stories.tsx index 6346a5f0..f4c256de 100644 --- a/src/stories-neo/PhotoOff.stories.tsx +++ b/src/stories-omega/PhotoOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import PhotoOff from '../icons-neo/photo-off' + import PhotoOff from '../icons-omega/photo-off' const meta: Meta = { component: PhotoOff, diff --git a/src/stories-neo/PhotoOff2.stories.tsx b/src/stories-omega/PhotoOff2.stories.tsx similarity index 96% rename from src/stories-neo/PhotoOff2.stories.tsx rename to src/stories-omega/PhotoOff2.stories.tsx index d13b36b0..a85e7244 100644 --- a/src/stories-neo/PhotoOff2.stories.tsx +++ b/src/stories-omega/PhotoOff2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import PhotoOff2 from '../icons-neo/photo-off-2' + import PhotoOff2 from '../icons-omega/photo-off-2' const meta: Meta = { component: PhotoOff2, diff --git a/src/stories-neo/PhotoStack.stories.tsx b/src/stories-omega/PhotoStack.stories.tsx similarity index 96% rename from src/stories-neo/PhotoStack.stories.tsx rename to src/stories-omega/PhotoStack.stories.tsx index 4480212d..b3d2f8d8 100644 --- a/src/stories-neo/PhotoStack.stories.tsx +++ b/src/stories-omega/PhotoStack.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import PhotoStack from '../icons-neo/photo-stack' + import PhotoStack from '../icons-omega/photo-stack' const meta: Meta = { component: PhotoStack, diff --git a/src/stories-omega/Pinned.stories.tsx b/src/stories-omega/Pinned.stories.tsx new file mode 100644 index 00000000..198dee0d --- /dev/null +++ b/src/stories-omega/Pinned.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Pinned from '../icons-omega/pinned' + + const meta: Meta = { + component: Pinned, + title: 'omega/Pinned', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/Plus.stories.tsx b/src/stories-omega/Plus.stories.tsx new file mode 100644 index 00000000..da58e318 --- /dev/null +++ b/src/stories-omega/Plus.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Plus from '../icons-omega/plus' + + const meta: Meta = { + component: Plus, + title: 'omega/Plus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/QuestionMark.stories.tsx b/src/stories-omega/QuestionMark.stories.tsx similarity index 96% rename from src/stories-neo/QuestionMark.stories.tsx rename to src/stories-omega/QuestionMark.stories.tsx index dec661d8..616d6cfe 100644 --- a/src/stories-neo/QuestionMark.stories.tsx +++ b/src/stories-omega/QuestionMark.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import QuestionMark from '../icons-neo/question-mark' + import QuestionMark from '../icons-omega/question-mark' const meta: Meta = { component: QuestionMark, diff --git a/src/stories-neo/Redeem.stories.tsx b/src/stories-omega/Redeem.stories.tsx similarity index 97% rename from src/stories-neo/Redeem.stories.tsx rename to src/stories-omega/Redeem.stories.tsx index 257c139b..31459eaa 100644 --- a/src/stories-neo/Redeem.stories.tsx +++ b/src/stories-omega/Redeem.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Redeem from '../icons-neo/redeem' + import Redeem from '../icons-omega/redeem' const meta: Meta = { component: Redeem, diff --git a/src/stories-omega/Refresh.stories.tsx b/src/stories-omega/Refresh.stories.tsx new file mode 100644 index 00000000..fe665f44 --- /dev/null +++ b/src/stories-omega/Refresh.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Refresh from '../icons-omega/refresh' + + const meta: Meta = { + component: Refresh, + title: 'omega/Refresh', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/Refresh2.stories.tsx b/src/stories-omega/Refresh2.stories.tsx new file mode 100644 index 00000000..f05d9ead --- /dev/null +++ b/src/stories-omega/Refresh2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Refresh2 from '../icons-omega/refresh-2' + + const meta: Meta = { + component: Refresh2, + title: 'omega/Refresh2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/RefreshAlert.stories.tsx b/src/stories-omega/RefreshAlert.stories.tsx new file mode 100644 index 00000000..411fcd5f --- /dev/null +++ b/src/stories-omega/RefreshAlert.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RefreshAlert from '../icons-omega/refresh-alert' + + const meta: Meta = { + component: RefreshAlert, + title: 'omega/RefreshAlert', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ReloadAlert.stories.tsx b/src/stories-omega/ReloadAlert.stories.tsx similarity index 96% rename from src/stories-neo/ReloadAlert.stories.tsx rename to src/stories-omega/ReloadAlert.stories.tsx index 89999d64..0ecb10ab 100644 --- a/src/stories-neo/ReloadAlert.stories.tsx +++ b/src/stories-omega/ReloadAlert.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ReloadAlert from '../icons-neo/reload-alert' + import ReloadAlert from '../icons-omega/reload-alert' const meta: Meta = { component: ReloadAlert, diff --git a/src/stories-omega/Rotate.stories.tsx b/src/stories-omega/Rotate.stories.tsx new file mode 100644 index 00000000..c44be441 --- /dev/null +++ b/src/stories-omega/Rotate.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Rotate from '../icons-omega/rotate' + + const meta: Meta = { + component: Rotate, + title: 'omega/Rotate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Rotate90.stories.tsx b/src/stories-omega/Rotate90.stories.tsx similarity index 97% rename from src/stories-neo/Rotate90.stories.tsx rename to src/stories-omega/Rotate90.stories.tsx index d2b60481..fc0d3b58 100644 --- a/src/stories-neo/Rotate90.stories.tsx +++ b/src/stories-omega/Rotate90.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Rotate90 from '../icons-neo/rotate-90' + import Rotate90 from '../icons-omega/rotate-90' const meta: Meta = { component: Rotate90, diff --git a/src/stories-omega/RotateClockwise.stories.tsx b/src/stories-omega/RotateClockwise.stories.tsx new file mode 100644 index 00000000..f1ef1d36 --- /dev/null +++ b/src/stories-omega/RotateClockwise.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateClockwise from '../icons-omega/rotate-clockwise' + + const meta: Meta = { + component: RotateClockwise, + title: 'omega/RotateClockwise', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/Search.stories.tsx b/src/stories-omega/Search.stories.tsx similarity index 97% rename from src/stories-neo/Search.stories.tsx rename to src/stories-omega/Search.stories.tsx index fe006622..ca9923f9 100644 --- a/src/stories-neo/Search.stories.tsx +++ b/src/stories-omega/Search.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Search from '../icons-neo/search' + import Search from '../icons-omega/search' const meta: Meta = { component: Search, diff --git a/src/stories-neo/Share.stories.tsx b/src/stories-omega/Share.stories.tsx similarity index 97% rename from src/stories-neo/Share.stories.tsx rename to src/stories-omega/Share.stories.tsx index 147b1f8d..bf481175 100644 --- a/src/stories-neo/Share.stories.tsx +++ b/src/stories-omega/Share.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Share from '../icons-neo/share' + import Share from '../icons-omega/share' const meta: Meta = { component: Share, diff --git a/src/stories-neo/ShoppingCart.stories.tsx b/src/stories-omega/ShoppingCart.stories.tsx similarity index 96% rename from src/stories-neo/ShoppingCart.stories.tsx rename to src/stories-omega/ShoppingCart.stories.tsx index ecc6bc79..04cd928d 100644 --- a/src/stories-neo/ShoppingCart.stories.tsx +++ b/src/stories-omega/ShoppingCart.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ShoppingCart from '../icons-neo/shopping-cart' + import ShoppingCart from '../icons-omega/shopping-cart' const meta: Meta = { component: ShoppingCart, diff --git a/src/stories-neo/ShoppingCartDiscount.stories.tsx b/src/stories-omega/ShoppingCartDiscount.stories.tsx similarity index 95% rename from src/stories-neo/ShoppingCartDiscount.stories.tsx rename to src/stories-omega/ShoppingCartDiscount.stories.tsx index a431ac75..b3972c7b 100644 --- a/src/stories-neo/ShoppingCartDiscount.stories.tsx +++ b/src/stories-omega/ShoppingCartDiscount.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ShoppingCartDiscount from '../icons-neo/shopping-cart-discount' + import ShoppingCartDiscount from '../icons-omega/shopping-cart-discount' const meta: Meta = { component: ShoppingCartDiscount, diff --git a/src/stories-neo/SortAscending.stories.tsx b/src/stories-omega/SortAscending.stories.tsx similarity index 96% rename from src/stories-neo/SortAscending.stories.tsx rename to src/stories-omega/SortAscending.stories.tsx index 56056598..1d0df3e6 100644 --- a/src/stories-neo/SortAscending.stories.tsx +++ b/src/stories-omega/SortAscending.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortAscending from '../icons-neo/sort-ascending' + import SortAscending from '../icons-omega/sort-ascending' const meta: Meta = { component: SortAscending, diff --git a/src/stories-neo/SortAscending2.stories.tsx b/src/stories-omega/SortAscending2.stories.tsx similarity index 96% rename from src/stories-neo/SortAscending2.stories.tsx rename to src/stories-omega/SortAscending2.stories.tsx index 59ba1dc5..f09365ec 100644 --- a/src/stories-neo/SortAscending2.stories.tsx +++ b/src/stories-omega/SortAscending2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortAscending2 from '../icons-neo/sort-ascending-2' + import SortAscending2 from '../icons-omega/sort-ascending-2' const meta: Meta = { component: SortAscending2, diff --git a/src/stories-neo/SortAscendingLetters.stories.tsx b/src/stories-omega/SortAscendingLetters.stories.tsx similarity index 95% rename from src/stories-neo/SortAscendingLetters.stories.tsx rename to src/stories-omega/SortAscendingLetters.stories.tsx index 7f014842..fae3be0c 100644 --- a/src/stories-neo/SortAscendingLetters.stories.tsx +++ b/src/stories-omega/SortAscendingLetters.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortAscendingLetters from '../icons-neo/sort-ascending-letters' + import SortAscendingLetters from '../icons-omega/sort-ascending-letters' const meta: Meta = { component: SortAscendingLetters, diff --git a/src/stories-neo/SortAscendingNumbers.stories.tsx b/src/stories-omega/SortAscendingNumbers.stories.tsx similarity index 95% rename from src/stories-neo/SortAscendingNumbers.stories.tsx rename to src/stories-omega/SortAscendingNumbers.stories.tsx index 22b49fb6..c7b77966 100644 --- a/src/stories-neo/SortAscendingNumbers.stories.tsx +++ b/src/stories-omega/SortAscendingNumbers.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortAscendingNumbers from '../icons-neo/sort-ascending-numbers' + import SortAscendingNumbers from '../icons-omega/sort-ascending-numbers' const meta: Meta = { component: SortAscendingNumbers, diff --git a/src/stories-neo/SortDescending.stories.tsx b/src/stories-omega/SortDescending.stories.tsx similarity index 96% rename from src/stories-neo/SortDescending.stories.tsx rename to src/stories-omega/SortDescending.stories.tsx index ef184714..506a828d 100644 --- a/src/stories-neo/SortDescending.stories.tsx +++ b/src/stories-omega/SortDescending.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortDescending from '../icons-neo/sort-descending' + import SortDescending from '../icons-omega/sort-descending' const meta: Meta = { component: SortDescending, diff --git a/src/stories-neo/SortDescending2.stories.tsx b/src/stories-omega/SortDescending2.stories.tsx similarity index 96% rename from src/stories-neo/SortDescending2.stories.tsx rename to src/stories-omega/SortDescending2.stories.tsx index 647413b2..01aa45be 100644 --- a/src/stories-neo/SortDescending2.stories.tsx +++ b/src/stories-omega/SortDescending2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortDescending2 from '../icons-neo/sort-descending-2' + import SortDescending2 from '../icons-omega/sort-descending-2' const meta: Meta = { component: SortDescending2, diff --git a/src/stories-neo/SortDescendingLetters.stories.tsx b/src/stories-omega/SortDescendingLetters.stories.tsx similarity index 95% rename from src/stories-neo/SortDescendingLetters.stories.tsx rename to src/stories-omega/SortDescendingLetters.stories.tsx index 65a7853b..2f40a102 100644 --- a/src/stories-neo/SortDescendingLetters.stories.tsx +++ b/src/stories-omega/SortDescendingLetters.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortDescendingLetters from '../icons-neo/sort-descending-letters' + import SortDescendingLetters from '../icons-omega/sort-descending-letters' const meta: Meta = { component: SortDescendingLetters, diff --git a/src/stories-neo/SortDescendingNumbers.stories.tsx b/src/stories-omega/SortDescendingNumbers.stories.tsx similarity index 95% rename from src/stories-neo/SortDescendingNumbers.stories.tsx rename to src/stories-omega/SortDescendingNumbers.stories.tsx index 43f879f7..efd55322 100644 --- a/src/stories-neo/SortDescendingNumbers.stories.tsx +++ b/src/stories-omega/SortDescendingNumbers.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import SortDescendingNumbers from '../icons-neo/sort-descending-numbers' + import SortDescendingNumbers from '../icons-omega/sort-descending-numbers' const meta: Meta = { component: SortDescendingNumbers, diff --git a/src/stories-neo/Spray.stories.tsx b/src/stories-omega/Spray.stories.tsx similarity index 97% rename from src/stories-neo/Spray.stories.tsx rename to src/stories-omega/Spray.stories.tsx index 6d6f8e32..32393708 100644 --- a/src/stories-neo/Spray.stories.tsx +++ b/src/stories-omega/Spray.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Spray from '../icons-neo/spray' + import Spray from '../icons-omega/spray' const meta: Meta = { component: Spray, diff --git a/src/stories-neo/Spray2.stories.tsx b/src/stories-omega/Spray2.stories.tsx similarity index 97% rename from src/stories-neo/Spray2.stories.tsx rename to src/stories-omega/Spray2.stories.tsx index 87e29b04..6d9fe682 100644 --- a/src/stories-neo/Spray2.stories.tsx +++ b/src/stories-omega/Spray2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Spray2 from '../icons-neo/spray_2' + import Spray2 from '../icons-omega/spray_2' const meta: Meta = { component: Spray2, diff --git a/src/stories-neo/Stack.stories.tsx b/src/stories-omega/Stack.stories.tsx similarity index 97% rename from src/stories-neo/Stack.stories.tsx rename to src/stories-omega/Stack.stories.tsx index 9e835793..f1103ba2 100644 --- a/src/stories-neo/Stack.stories.tsx +++ b/src/stories-omega/Stack.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Stack from '../icons-neo/stack' + import Stack from '../icons-omega/stack' const meta: Meta = { component: Stack, diff --git a/src/stories-neo/Stack2.stories.tsx b/src/stories-omega/Stack2.stories.tsx similarity index 97% rename from src/stories-neo/Stack2.stories.tsx rename to src/stories-omega/Stack2.stories.tsx index 41dfd787..8cf0d7e6 100644 --- a/src/stories-neo/Stack2.stories.tsx +++ b/src/stories-omega/Stack2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Stack2 from '../icons-neo/stack-2' + import Stack2 from '../icons-omega/stack-2' const meta: Meta = { component: Stack2, diff --git a/src/stories-neo/StackDouble.stories.tsx b/src/stories-omega/StackDouble.stories.tsx similarity index 96% rename from src/stories-neo/StackDouble.stories.tsx rename to src/stories-omega/StackDouble.stories.tsx index 7133a13d..caff9c20 100644 --- a/src/stories-neo/StackDouble.stories.tsx +++ b/src/stories-omega/StackDouble.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import StackDouble from '../icons-neo/stack-double' + import StackDouble from '../icons-omega/stack-double' const meta: Meta = { component: StackDouble, diff --git a/src/stories-neo/StackTriple.stories.tsx b/src/stories-omega/StackTriple.stories.tsx similarity index 96% rename from src/stories-neo/StackTriple.stories.tsx rename to src/stories-omega/StackTriple.stories.tsx index f5ef92ce..55f7caa6 100644 --- a/src/stories-neo/StackTriple.stories.tsx +++ b/src/stories-omega/StackTriple.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import StackTriple from '../icons-neo/stack-triple' + import StackTriple from '../icons-omega/stack-triple' const meta: Meta = { component: StackTriple, diff --git a/src/stories-neo/Star.stories.tsx b/src/stories-omega/Star.stories.tsx similarity index 97% rename from src/stories-neo/Star.stories.tsx rename to src/stories-omega/Star.stories.tsx index 70030d3d..b73aa57a 100644 --- a/src/stories-neo/Star.stories.tsx +++ b/src/stories-omega/Star.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Star from '../icons-neo/star' + import Star from '../icons-omega/star' const meta: Meta = { component: Star, diff --git a/src/stories-neo/StarOff.stories.tsx b/src/stories-omega/StarOff.stories.tsx similarity index 97% rename from src/stories-neo/StarOff.stories.tsx rename to src/stories-omega/StarOff.stories.tsx index dafb1d7d..c7c3b4ea 100644 --- a/src/stories-neo/StarOff.stories.tsx +++ b/src/stories-omega/StarOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import StarOff from '../icons-neo/star-off' + import StarOff from '../icons-omega/star-off' const meta: Meta = { component: StarOff, diff --git a/src/stories-neo/ThumbDown.stories.tsx b/src/stories-omega/ThumbDown.stories.tsx similarity index 96% rename from src/stories-neo/ThumbDown.stories.tsx rename to src/stories-omega/ThumbDown.stories.tsx index dd7071aa..d45da8d8 100644 --- a/src/stories-neo/ThumbDown.stories.tsx +++ b/src/stories-omega/ThumbDown.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ThumbDown from '../icons-neo/thumb-down' + import ThumbDown from '../icons-omega/thumb-down' const meta: Meta = { component: ThumbDown, diff --git a/src/stories-neo/ThumbUp.stories.tsx b/src/stories-omega/ThumbUp.stories.tsx similarity index 97% rename from src/stories-neo/ThumbUp.stories.tsx rename to src/stories-omega/ThumbUp.stories.tsx index 710fe6c3..81c9813d 100644 --- a/src/stories-neo/ThumbUp.stories.tsx +++ b/src/stories-omega/ThumbUp.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ThumbUp from '../icons-neo/thumb-up' + import ThumbUp from '../icons-omega/thumb-up' const meta: Meta = { component: ThumbUp, diff --git a/src/stories-neo/Trash.stories.tsx b/src/stories-omega/Trash.stories.tsx similarity index 97% rename from src/stories-neo/Trash.stories.tsx rename to src/stories-omega/Trash.stories.tsx index 7a3cbcc2..fa389f6d 100644 --- a/src/stories-neo/Trash.stories.tsx +++ b/src/stories-omega/Trash.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Trash from '../icons-neo/trash' + import Trash from '../icons-omega/trash' const meta: Meta = { component: Trash, diff --git a/src/stories-neo/TrashOff.stories.tsx b/src/stories-omega/TrashOff.stories.tsx similarity index 97% rename from src/stories-neo/TrashOff.stories.tsx rename to src/stories-omega/TrashOff.stories.tsx index 86a49050..98bc6a20 100644 --- a/src/stories-neo/TrashOff.stories.tsx +++ b/src/stories-omega/TrashOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import TrashOff from '../icons-neo/trash-off' + import TrashOff from '../icons-omega/trash-off' const meta: Meta = { component: TrashOff, diff --git a/src/stories-neo/Unlink.stories.tsx b/src/stories-omega/Unlink.stories.tsx similarity index 97% rename from src/stories-neo/Unlink.stories.tsx rename to src/stories-omega/Unlink.stories.tsx index 1a8fcf14..a6ec4e72 100644 --- a/src/stories-neo/Unlink.stories.tsx +++ b/src/stories-omega/Unlink.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Unlink from '../icons-neo/unlink' + import Unlink from '../icons-omega/unlink' const meta: Meta = { component: Unlink, diff --git a/src/stories-neo/Upload.stories.tsx b/src/stories-omega/Upload.stories.tsx similarity index 97% rename from src/stories-neo/Upload.stories.tsx rename to src/stories-omega/Upload.stories.tsx index 892e4ca7..ee9c902a 100644 --- a/src/stories-neo/Upload.stories.tsx +++ b/src/stories-omega/Upload.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Upload from '../icons-neo/upload' + import Upload from '../icons-omega/upload' const meta: Meta = { component: Upload, diff --git a/src/stories-neo/Upload2.stories.tsx b/src/stories-omega/Upload2.stories.tsx similarity index 97% rename from src/stories-neo/Upload2.stories.tsx rename to src/stories-omega/Upload2.stories.tsx index 4866a1f9..508e562c 100644 --- a/src/stories-neo/Upload2.stories.tsx +++ b/src/stories-omega/Upload2.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Upload2 from '../icons-neo/upload-2' + import Upload2 from '../icons-omega/upload-2' const meta: Meta = { component: Upload2, diff --git a/src/stories-neo/User.stories.tsx b/src/stories-omega/User.stories.tsx similarity index 97% rename from src/stories-neo/User.stories.tsx rename to src/stories-omega/User.stories.tsx index 11fe0091..bf38f3c7 100644 --- a/src/stories-neo/User.stories.tsx +++ b/src/stories-omega/User.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import User from '../icons-neo/user' + import User from '../icons-omega/user' const meta: Meta = { component: User, diff --git a/src/stories-neo/UserCheck.stories.tsx b/src/stories-omega/UserCheck.stories.tsx similarity index 96% rename from src/stories-neo/UserCheck.stories.tsx rename to src/stories-omega/UserCheck.stories.tsx index 99e6a9a9..778fa584 100644 --- a/src/stories-neo/UserCheck.stories.tsx +++ b/src/stories-omega/UserCheck.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserCheck from '../icons-neo/user-check' + import UserCheck from '../icons-omega/user-check' const meta: Meta = { component: UserCheck, diff --git a/src/stories-neo/UserExclamation.stories.tsx b/src/stories-omega/UserExclamation.stories.tsx similarity index 96% rename from src/stories-neo/UserExclamation.stories.tsx rename to src/stories-omega/UserExclamation.stories.tsx index 772979a4..572f1510 100644 --- a/src/stories-neo/UserExclamation.stories.tsx +++ b/src/stories-omega/UserExclamation.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserExclamation from '../icons-neo/user-exclamation' + import UserExclamation from '../icons-omega/user-exclamation' const meta: Meta = { component: UserExclamation, diff --git a/src/stories-neo/UserMinus.stories.tsx b/src/stories-omega/UserMinus.stories.tsx similarity index 96% rename from src/stories-neo/UserMinus.stories.tsx rename to src/stories-omega/UserMinus.stories.tsx index 77d83e45..98a810c0 100644 --- a/src/stories-neo/UserMinus.stories.tsx +++ b/src/stories-omega/UserMinus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserMinus from '../icons-neo/user-minus' + import UserMinus from '../icons-omega/user-minus' const meta: Meta = { component: UserMinus, diff --git a/src/stories-neo/UserOff.stories.tsx b/src/stories-omega/UserOff.stories.tsx similarity index 97% rename from src/stories-neo/UserOff.stories.tsx rename to src/stories-omega/UserOff.stories.tsx index 317e4990..3672ec9f 100644 --- a/src/stories-neo/UserOff.stories.tsx +++ b/src/stories-omega/UserOff.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserOff from '../icons-neo/user-off' + import UserOff from '../icons-omega/user-off' const meta: Meta = { component: UserOff, diff --git a/src/stories-neo/UserPlus.stories.tsx b/src/stories-omega/UserPlus.stories.tsx similarity index 97% rename from src/stories-neo/UserPlus.stories.tsx rename to src/stories-omega/UserPlus.stories.tsx index 612a8100..f5bd871e 100644 --- a/src/stories-neo/UserPlus.stories.tsx +++ b/src/stories-omega/UserPlus.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserPlus from '../icons-neo/user-plus' + import UserPlus from '../icons-omega/user-plus' const meta: Meta = { component: UserPlus, diff --git a/src/stories-neo/UserX.stories.tsx b/src/stories-omega/UserX.stories.tsx similarity index 97% rename from src/stories-neo/UserX.stories.tsx rename to src/stories-omega/UserX.stories.tsx index 7f4e07d7..da1b5a14 100644 --- a/src/stories-neo/UserX.stories.tsx +++ b/src/stories-omega/UserX.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserX from '../icons-neo/user-x' + import UserX from '../icons-omega/user-x' const meta: Meta = { component: UserX, diff --git a/src/stories-neo/Users.stories.tsx b/src/stories-omega/Users.stories.tsx similarity index 97% rename from src/stories-neo/Users.stories.tsx rename to src/stories-omega/Users.stories.tsx index 44fb2c7b..34f23061 100644 --- a/src/stories-neo/Users.stories.tsx +++ b/src/stories-omega/Users.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Users from '../icons-neo/users' + import Users from '../icons-omega/users' const meta: Meta = { component: Users, diff --git a/src/stories-neo/ViewAll.stories.tsx b/src/stories-omega/ViewAll.stories.tsx similarity index 97% rename from src/stories-neo/ViewAll.stories.tsx rename to src/stories-omega/ViewAll.stories.tsx index bfcdf799..17c006a0 100644 --- a/src/stories-neo/ViewAll.stories.tsx +++ b/src/stories-omega/ViewAll.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ViewAll from '../icons-neo/view-all' + import ViewAll from '../icons-omega/view-all' const meta: Meta = { component: ViewAll, diff --git a/src/stories-neo/Viewfinder.stories.tsx b/src/stories-omega/Viewfinder.stories.tsx similarity index 96% rename from src/stories-neo/Viewfinder.stories.tsx rename to src/stories-omega/Viewfinder.stories.tsx index 10b4a3a9..6da1f8c4 100644 --- a/src/stories-neo/Viewfinder.stories.tsx +++ b/src/stories-omega/Viewfinder.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Viewfinder from '../icons-neo/viewfinder' + import Viewfinder from '../icons-omega/viewfinder' const meta: Meta = { component: Viewfinder, diff --git a/src/stories-omega/Wifi.stories.tsx b/src/stories-omega/Wifi.stories.tsx new file mode 100644 index 00000000..08c221b6 --- /dev/null +++ b/src/stories-omega/Wifi.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi from '../icons-omega/wifi' + + const meta: Meta = { + component: Wifi, + title: 'omega/Wifi', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/Wifi1.stories.tsx b/src/stories-omega/Wifi1.stories.tsx new file mode 100644 index 00000000..4ba5a4f7 --- /dev/null +++ b/src/stories-omega/Wifi1.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi1 from '../icons-omega/wifi-1' + + const meta: Meta = { + component: Wifi1, + title: 'omega/Wifi1', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/Wifi2.stories.tsx b/src/stories-omega/Wifi2.stories.tsx new file mode 100644 index 00000000..0aaf6a73 --- /dev/null +++ b/src/stories-omega/Wifi2.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi2 from '../icons-omega/wifi-2' + + const meta: Meta = { + component: Wifi2, + title: 'omega/Wifi2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-omega/WifiOff.stories.tsx b/src/stories-omega/WifiOff.stories.tsx new file mode 100644 index 00000000..44d47118 --- /dev/null +++ b/src/stories-omega/WifiOff.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WifiOff from '../icons-omega/wifi-off' + + const meta: Meta = { + component: WifiOff, + title: 'omega/WifiOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/World.stories.tsx b/src/stories-omega/World.stories.tsx similarity index 97% rename from src/stories-neo/World.stories.tsx rename to src/stories-omega/World.stories.tsx index e466c29c..d896850e 100644 --- a/src/stories-neo/World.stories.tsx +++ b/src/stories-omega/World.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import World from '../icons-neo/world' + import World from '../icons-omega/world' const meta: Meta = { component: World, diff --git a/src/stories-neo/Writing.stories.tsx b/src/stories-omega/Writing.stories.tsx similarity index 97% rename from src/stories-neo/Writing.stories.tsx rename to src/stories-omega/Writing.stories.tsx index 1374d3e6..cf2cd700 100644 --- a/src/stories-neo/Writing.stories.tsx +++ b/src/stories-omega/Writing.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Writing from '../icons-neo/writing' + import Writing from '../icons-omega/writing' const meta: Meta = { component: Writing, diff --git a/src/stories-omega/X.stories.tsx b/src/stories-omega/X.stories.tsx new file mode 100644 index 00000000..f614b46b --- /dev/null +++ b/src/stories-omega/X.stories.tsx @@ -0,0 +1,68 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import X from '../icons-omega/x' + + const meta: Meta = { + component: X, + title: 'omega/X', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + export const Red: Story = { + args: { + color: 'red', + }, + } + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories-neo/ZoomIn.stories.tsx b/src/stories-omega/ZoomIn.stories.tsx similarity index 97% rename from src/stories-neo/ZoomIn.stories.tsx rename to src/stories-omega/ZoomIn.stories.tsx index 5e24df79..632ce873 100644 --- a/src/stories-neo/ZoomIn.stories.tsx +++ b/src/stories-omega/ZoomIn.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ZoomIn from '../icons-neo/zoom-in' + import ZoomIn from '../icons-omega/zoom-in' const meta: Meta = { component: ZoomIn, diff --git a/src/stories-neo/ZoomOut.stories.tsx b/src/stories-omega/ZoomOut.stories.tsx similarity index 97% rename from src/stories-neo/ZoomOut.stories.tsx rename to src/stories-omega/ZoomOut.stories.tsx index 8432b0b8..c419c5c6 100644 --- a/src/stories-neo/ZoomOut.stories.tsx +++ b/src/stories-omega/ZoomOut.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ZoomOut from '../icons-neo/zoom-out' + import ZoomOut from '../icons-omega/zoom-out' const meta: Meta = { component: ZoomOut, diff --git a/src/stories-neo/ZoomQuestion.stories.tsx b/src/stories-omega/ZoomQuestion.stories.tsx similarity index 96% rename from src/stories-neo/ZoomQuestion.stories.tsx rename to src/stories-omega/ZoomQuestion.stories.tsx index 01aad99d..4369e432 100644 --- a/src/stories-neo/ZoomQuestion.stories.tsx +++ b/src/stories-omega/ZoomQuestion.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ZoomQuestion from '../icons-neo/zoom-question' + import ZoomQuestion from '../icons-omega/zoom-question' const meta: Meta = { component: ZoomQuestion, diff --git a/unicon.config.json b/unicon.config.json index 15395b9f..e2257fac 100644 --- a/unicon.config.json +++ b/unicon.config.json @@ -1,4 +1,4 @@ { - "icon-output-dir": "icons", - "stories-output-dir": "stories" + "icon_output_dir": "icons-omega", + "stories_output_dir": "stories-omega" } From 191b79c3878de4426073630b2c2b8a3a3e54523a Mon Sep 17 00:00:00 2001 From: booi-dev Date: Sat, 1 Jun 2024 01:24:24 +0530 Subject: [PATCH 21/34] update: unicons config name --- package.json | 2 +- scripts/buildIcons.mjs | 2 +- scripts/optimizeSvgs.mjs | 4 ++++ unicon.config.json => unicons.config.json | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) rename unicon.config.json => unicons.config.json (67%) diff --git a/package.json b/package.json index d37d2c0e..bfc01bcc 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@aftershootco/unicorn-icons-beta", + "name": "@aftershootco/unicons", "version": "1.0.0", "description": "", "author": { diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index 71283847..bd37332b 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -14,7 +14,7 @@ const cliArguments = getArgumentOptions(process.argv.slice(2)) const currentDir = getCurrentDirPath(import.meta.url) const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') -const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicon.config.json', 'utf8')) +const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) const OUTPUT_FOLDER_NAME = UNICON_CONFIG.icon_output_dir ?? 'icons-neo' const STORIES_OUTPUT_FOLDER_NAME = UNICON_CONFIG.stories_output_dir ?? 'stories-neo' diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs index cadfee82..3c4489ba 100644 --- a/scripts/optimizeSvgs.mjs +++ b/scripts/optimizeSvgs.mjs @@ -4,6 +4,10 @@ import path from 'path' import { readSvgDirectory, writeSvgFile } from './helpers.mjs' import processSvg from './processSvg.mjs' +const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) + +const BASE_ICON_DIR = UNICON_CONFIG.icon_input_dir + const ICONS_DIR = path.resolve(process.cwd(), 'icons-original/outline') const OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') diff --git a/unicon.config.json b/unicons.config.json similarity index 67% rename from unicon.config.json rename to unicons.config.json index e2257fac..aa950bb2 100644 --- a/unicon.config.json +++ b/unicons.config.json @@ -1,4 +1,5 @@ { + "icon_input_dir": "icons-original", "icon_output_dir": "icons-omega", "stories_output_dir": "stories-omega" } From 967b1f2fdd40ea7931e0b6d92b538d77e450a1e0 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Sat, 1 Jun 2024 23:50:01 +0530 Subject: [PATCH 22/34] add: render metadata object --- icons-optimized/Import.svg | 12 -- icons-optimized/adjustments-horizontal.svg | 18 -- icons-optimized/adjustments.svg | 18 -- icons-optimized/aftershoot-logo.json | 7 + icons-optimized/aftershoot-logo.svg | 6 + icons-optimized/alarm.svg | 13 -- icons-optimized/alert-circle.svg | 12 -- icons-optimized/alert-octagon.svg | 12 -- icons-optimized/alert-triangle.svg | 11 - icons-optimized/apple.json | 7 + icons-optimized/apple.svg | 6 + icons-optimized/arrow-curve-fill.json | 7 + icons-optimized/arrow-curve-fill.svg | 6 + icons-optimized/arrow-down.svg | 12 -- icons-optimized/arrow-left.svg | 12 -- icons-optimized/arrow-narrow-left.svg | 12 -- icons-optimized/arrow-narrow-right.svg | 12 -- icons-optimized/arrow-right.svg | 12 -- icons-optimized/arrow-sort-2.svg | 7 - icons-optimized/arrow-up.svg | 12 -- icons-optimized/arrows-diagonal.svg | 13 -- icons-optimized/arrows-sort.svg | 11 - icons-optimized/atom.svg | 12 -- icons-optimized/ban.svg | 11 - icons-optimized/bell-minus.svg | 12 -- icons-optimized/bell-off.svg | 12 -- icons-optimized/bell-plus.svg | 13 -- icons-optimized/bell-ringing-2.svg | 11 - icons-optimized/bell-ringing.svg | 13 -- icons-optimized/bell-x.svg | 12 -- icons-optimized/bell.svg | 11 - icons-optimized/brand-facebook.svg | 14 -- icons-optimized/brand-github.svg | 14 -- icons-optimized/brand-instagram.svg | 12 -- icons-optimized/brand-twitter.svg | 14 -- icons-optimized/brand-whatsapp.svg | 11 - icons-optimized/brand-youtube.svg | 11 - icons-optimized/bulb-off.svg | 11 - icons-optimized/bulb.svg | 12 -- icons-optimized/check.svg | 10 - icons-optimized/chevron-down.svg | 10 - icons-optimized/chevron-left.svg | 10 - icons-optimized/chevron-right.svg | 10 - icons-optimized/chevron-up.svg | 10 - icons-optimized/chevrons-left.svg | 11 - icons-optimized/chevrons-right.svg | 11 - icons-optimized/circle-check-2.svg | 12 -- icons-optimized/circle-check.svg | 11 - icons-optimized/circle-fill.json | 7 + icons-optimized/circle-fill.svg | 6 + icons-optimized/circle.svg | 14 -- icons-optimized/clock.svg | 11 - icons-optimized/cloud-upload.svg | 12 -- icons-optimized/color-swatch.svg | 13 -- icons-optimized/confetti.svg | 19 -- icons-optimized/copy.svg | 11 - icons-optimized/crown-2-fill.json | 7 + icons-optimized/crown-2-fill.svg | 12 ++ icons-optimized/crown.svg | 14 -- icons-optimized/currency-dollar.svg | 11 - icons-optimized/current-location.svg | 15 -- icons-optimized/device-desktop-analytics.svg | 17 -- icons-optimized/device-desktop-off.svg | 14 -- icons-optimized/device-desktop.svg | 12 -- icons-optimized/device-laptop.svg | 11 - icons-optimized/device-tv.svg | 11 - icons-optimized/diamond.svg | 11 - icons-optimized/discount-2.svg | 13 -- icons-optimized/discount.svg | 13 -- icons-optimized/disk.svg | 14 -- icons-optimized/dots-vertical.svg | 17 -- icons-optimized/download.svg | 12 -- icons-optimized/edit.svg | 12 -- icons-optimized/external-link.svg | 12 -- icons-optimized/eye-check.svg | 12 -- icons-optimized/eye-off.svg | 12 -- icons-optimized/eye.svg | 11 - icons-optimized/facebook.json | 7 + icons-optimized/facebook.svg | 6 + icons-optimized/file-download.svg | 13 -- icons-optimized/file-export.svg | 11 - icons-optimized/file-report.svg | 13 -- icons-optimized/file-search.svg | 13 -- icons-optimized/filter-off.svg | 11 - icons-optimized/filter.svg | 14 -- icons-optimized/flag-off.svg | 11 - icons-optimized/flag.svg | 14 -- icons-optimized/folder-download.svg | 12 -- icons-optimized/folder-eye.svg | 16 -- icons-optimized/folder-minus.svg | 11 - icons-optimized/folder-off.svg | 11 - icons-optimized/folder-plus.svg | 12 -- icons-optimized/folder-upload.svg | 12 -- icons-optimized/folder-x.svg | 11 - icons-optimized/folder.svg | 14 -- icons-optimized/folders.svg | 11 - icons-optimized/grid-dots.svg | 18 -- icons-optimized/grid-view-1.json | 7 + icons-optimized/grid-view-1.svg | 18 ++ icons-optimized/grid-view-2.json | 7 + icons-optimized/grid-view-2.svg | 18 ++ icons-optimized/home-2.svg | 27 --- icons-optimized/info-circle.svg | 12 -- icons-optimized/info-cirlce-2.svg | 14 -- icons-optimized/info-square.svg | 12 -- icons-optimized/info.svg | 4 - icons-optimized/key-2.svg | 7 - icons-optimized/key-duplicate-fill.json | 7 + icons-optimized/key-duplicate-fill.svg | 10 + icons-optimized/key-duplicate.svg | 12 -- icons-optimized/key.svg | 13 -- icons-optimized/link.svg | 11 - icons-optimized/list-fill.json | 7 + icons-optimized/list-fill.svg | 10 + icons-optimized/loader.svg | 17 -- icons-optimized/lock-2.svg | 11 - icons-optimized/lock-off.svg | 13 -- icons-optimized/lock-open.svg | 12 -- icons-optimized/lock.svg | 12 -- icons-optimized/loop.json | 7 + icons-optimized/loop.svg | 18 ++ icons-optimized/loupe-fill.json | 7 + icons-optimized/loupe-fill.svg | 10 + icons-optimized/mail.svg | 11 - icons-optimized/map-2.svg | 14 -- icons-optimized/map-pin-off.svg | 12 -- icons-optimized/map-pin.svg | 11 - icons-optimized/minus.svg | 3 - icons-optimized/mood-crazy-happy.svg | 15 -- icons-optimized/mood-empty.svg | 13 -- icons-optimized/mood-sad.svg | 13 -- icons-optimized/mood-smile.svg | 13 -- icons-optimized/mouse-left.svg | 11 - icons-optimized/mouse-right.svg | 11 - icons-optimized/no-duplicate.svg | 14 -- icons-optimized/palette-fill.json | 7 + icons-optimized/palette-fill.svg | 6 + icons-optimized/palette.svg | 13 -- icons-optimized/pause-fill.json | 7 + icons-optimized/pause-fill.svg | 10 + icons-optimized/photo-off-2.svg | 13 -- icons-optimized/photo-off.svg | 14 -- icons-optimized/photo-stack.svg | 14 -- icons-optimized/photo.svg | 13 -- icons-optimized/pinned.svg | 12 -- icons-optimized/play-fill.json | 7 + icons-optimized/play-fill.svg | 6 + icons-optimized/plus.svg | 11 - icons-optimized/question-mark.svg | 11 - icons-optimized/redeem.svg | 18 -- icons-optimized/refresh-2.svg | 13 -- icons-optimized/refresh-alert.svg | 14 -- icons-optimized/refresh.svg | 14 -- icons-optimized/reload-alert.svg | 7 - icons-optimized/rotate-90.svg | 11 - icons-optimized/rotate-clockwise.svg | 19 -- icons-optimized/rotate.svg | 19 -- icons-optimized/scissors-fill.json | 7 + icons-optimized/scissors-fill.svg | 14 ++ icons-optimized/search.svg | 11 - icons-optimized/share.svg | 14 -- icons-optimized/shopping-cart-discount.svg | 16 -- icons-optimized/shopping-cart.svg | 13 -- icons-optimized/sort-ascending-2.svg | 13 -- icons-optimized/sort-ascending-letters.svg | 13 -- icons-optimized/sort-ascending-numbers.svg | 14 -- icons-optimized/sort-ascending.svg | 14 -- icons-optimized/sort-descending-2.svg | 13 -- icons-optimized/sort-descending-letters.svg | 13 -- icons-optimized/sort-descending-numbers.svg | 14 -- icons-optimized/sort-descending.svg | 14 -- icons-optimized/spray.svg | 8 - icons-optimized/spray_2.svg | 10 - icons-optimized/stack-2.svg | 17 -- icons-optimized/stack-double.svg | 11 - icons-optimized/stack-triple.svg | 12 -- icons-optimized/stack.svg | 18 -- icons-optimized/star-off.svg | 11 - icons-optimized/star.svg | 14 -- icons-optimized/thumb-down.svg | 14 -- icons-optimized/thumb-up.svg | 14 -- icons-optimized/trash-off.svg | 16 -- icons-optimized/trash.svg | 14 -- icons-optimized/unlink.svg | 15 -- icons-optimized/upload-2.svg | 7 - icons-optimized/upload.svg | 12 -- icons-optimized/user-check.svg | 12 -- icons-optimized/user-exclamation.svg | 13 -- icons-optimized/user-minus.svg | 12 -- icons-optimized/user-off.svg | 12 -- icons-optimized/user-plus.svg | 12 -- icons-optimized/user-x.svg | 12 -- icons-optimized/user.svg | 11 - icons-optimized/users.svg | 13 -- icons-optimized/view-all.svg | 6 - icons-optimized/viewfinder.svg | 15 -- icons-optimized/wifi-1.svg | 11 - icons-optimized/wifi-2.svg | 12 -- icons-optimized/wifi-off.svg | 19 -- icons-optimized/wifi.svg | 13 -- icons-optimized/world.svg | 14 -- icons-optimized/writing.svg | 7 - icons-optimized/x.svg | 11 - icons-optimized/zoom-in.svg | 13 -- icons-optimized/zoom-out.svg | 12 -- icons-optimized/zoom-question.svg | 13 -- .../{accent => _accent}/check_box.svg | 0 .../cloud-upload-accent.svg | 0 .../{accent => _accent}/download-accent.svg | 0 icons-original/{accent => _accent}/mood.svg | 0 .../{accent => _accent}/mood_gray.svg | 0 .../{accent => _accent}/partially_checked.svg | 0 .../{accent => _accent}/upload-accent.svg | 0 .../{color => _color}/edits_logo_text.svg | 0 .../{img => _img}/adobe_camera_raw.svg | 0 icons-original/{img => _img}/bridge.svg | 0 icons-original/{img => _img}/capture_one.svg | 0 .../{img => _img}/drag_capture_one.svg | 0 icons-original/{img => _img}/drag_folder.svg | 0 icons-original/{img => _img}/drag_lr copy.svg | 0 icons-original/{img => _img}/drag_lr.svg | 0 icons-original/{img => _img}/drag_lrc.svg | 0 .../{img => _img}/drag_photoshop.svg | 0 .../{img => _img}/facebook_people.svg | 0 .../{img => _img}/lessGrouping1.svg | 0 .../{img => _img}/lessGrouping2.svg | 0 icons-original/{img => _img}/lightroom.svg | 0 .../{img => _img}/lightroom_classic.svg | 0 .../{img => _img}/moreGrouping1.svg | 0 .../{img => _img}/moreGrouping2.svg | 0 icons-original/{mix => _mix}/Crown Play.svg | 0 .../{mix => _mix}/check_box_empty.svg | 0 icons-original/{mix => _mix}/collection.svg | 0 icons-original/{mix => _mix}/flag-fill.svg | 0 icons-original/{mix => _mix}/folder-fill.svg | 0 icons-original/{mix => _mix}/home-mix.svg | 0 icons-original/{mix => _mix}/image-border.svg | 0 .../layout-sidebar-right-mix.svg | 0 icons-original/{mix => _mix}/mouse-left-2.svg | 0 icons-original/{mix => _mix}/no-duplicate.svg | 0 .../{mix => _mix}/none-selected.svg | 0 icons-original/{mix => _mix}/recull.svg | 0 icons-original/{mix => _mix}/sparkle.svg | 0 icons-original/{mix => _mix}/star - 0.svg | 0 icons-original/{mix => _mix}/star - 1.svg | 0 icons-original/{mix => _mix}/star - 2.svg | 0 icons-original/{mix => _mix}/star - 3.svg | 0 icons-original/{mix => _mix}/star - 4.svg | 0 icons-original/{mix => _mix}/star - 5.svg | 0 icons-original/{mix => _mix}/star-fill.svg | 0 .../{mix => _mix}/star-off-fill.svg | 0 .../{mix => _mix}/upload-c1-cat.svg | 0 .../{mix => _mix}/upload-lr-cat.svg | 0 .../add_folder.svg | 0 .../adobe_camera_raw.svg | 0 .../arrow_right.svg | 0 .../{not-include => _not-include}/bridge.svg | 0 .../{not-include => _not-include}/bulb.svg | 0 .../capture_one.svg | 0 .../checkIcon.svg | 0 .../circle-check_2.svg | 0 .../circleCheckFilled.svg | 0 .../circle_check.svg | 0 .../redirect.svg | 0 .../{outline => _outline}/Import.svg | 0 .../adjustments-horizontal.svg | 0 .../{outline => _outline}/adjustments.svg | 0 .../{outline => _outline}/alarm.svg | 0 .../{outline => _outline}/alert-circle.svg | 0 .../{outline => _outline}/alert-octagon.svg | 0 .../{outline => _outline}/alert-triangle.svg | 0 .../{outline => _outline}/arrow-down.svg | 0 .../{outline => _outline}/arrow-left.svg | 0 .../arrow-narrow-left.svg | 0 .../arrow-narrow-right.svg | 0 .../{outline => _outline}/arrow-right.svg | 0 .../{outline => _outline}/arrow-sort-2.svg | 0 .../{outline => _outline}/arrow-up.svg | 0 .../{outline => _outline}/arrows-diagonal.svg | 0 .../{outline => _outline}/arrows-sort.svg | 0 icons-original/{outline => _outline}/atom.svg | 0 icons-original/{outline => _outline}/ban.svg | 0 .../{outline => _outline}/bell-minus.svg | 0 .../{outline => _outline}/bell-off.svg | 0 .../{outline => _outline}/bell-plus.svg | 0 .../{outline => _outline}/bell-ringing-2.svg | 0 .../{outline => _outline}/bell-ringing.svg | 0 .../{outline => _outline}/bell-x.svg | 0 icons-original/{outline => _outline}/bell.svg | 0 .../{outline => _outline}/brand-facebook.svg | 0 .../{outline => _outline}/brand-github.svg | 0 .../{outline => _outline}/brand-instagram.svg | 0 .../{outline => _outline}/brand-twitter.svg | 0 .../{outline => _outline}/brand-whatsapp.svg | 0 .../{outline => _outline}/brand-youtube.svg | 0 .../{outline => _outline}/bulb-off.svg | 0 icons-original/{outline => _outline}/bulb.svg | 0 .../{outline => _outline}/check.svg | 0 .../{outline => _outline}/chevron-down.svg | 0 .../{outline => _outline}/chevron-left.svg | 0 .../{outline => _outline}/chevron-right.svg | 0 .../{outline => _outline}/chevron-up.svg | 0 .../{outline => _outline}/chevrons-left.svg | 0 .../{outline => _outline}/chevrons-right.svg | 0 .../{outline => _outline}/circle-check-2.svg | 0 .../{outline => _outline}/circle-check.svg | 0 .../{outline => _outline}/circle.svg | 0 .../{outline => _outline}/clock.svg | 0 .../{outline => _outline}/cloud-upload.svg | 0 .../{outline => _outline}/color-swatch.svg | 0 .../{outline => _outline}/confetti.svg | 0 icons-original/{outline => _outline}/copy.svg | 0 .../{outline => _outline}/crown.svg | 0 .../{outline => _outline}/currency-dollar.svg | 0 .../current-location.svg | 0 .../device-desktop-analytics.svg | 0 .../device-desktop-off.svg | 0 .../{outline => _outline}/device-desktop.svg | 0 .../{outline => _outline}/device-laptop.svg | 0 .../{outline => _outline}/device-tv.svg | 0 .../{outline => _outline}/diamond.svg | 0 .../{outline => _outline}/discount-2.svg | 0 .../{outline => _outline}/discount.svg | 0 icons-original/{outline => _outline}/disk.svg | 0 .../{outline => _outline}/dots-vertical.svg | 0 .../{outline => _outline}/download.svg | 0 icons-original/{outline => _outline}/edit.svg | 0 .../{outline => _outline}/external-link.svg | 0 .../{outline => _outline}/eye-check.svg | 0 .../{outline => _outline}/eye-off.svg | 0 icons-original/{outline => _outline}/eye.svg | 0 .../{outline => _outline}/file-download.svg | 0 .../{outline => _outline}/file-export.svg | 0 .../{outline => _outline}/file-report.svg | 0 .../{outline => _outline}/file-search.svg | 0 .../{outline => _outline}/filter-off.svg | 0 .../{outline => _outline}/filter.svg | 0 .../{outline => _outline}/flag-off.svg | 0 icons-original/{outline => _outline}/flag.svg | 0 .../{outline => _outline}/folder-download.svg | 0 .../{outline => _outline}/folder-eye.svg | 0 .../{outline => _outline}/folder-minus.svg | 0 .../{outline => _outline}/folder-off.svg | 0 .../{outline => _outline}/folder-plus.svg | 0 .../{outline => _outline}/folder-upload.svg | 0 .../{outline => _outline}/folder-x.svg | 0 .../{outline => _outline}/folder.svg | 0 .../{outline => _outline}/folders.svg | 0 .../{outline => _outline}/grid-dots.svg | 0 .../{outline => _outline}/home-2.svg | 0 .../{outline => _outline}/info-circle.svg | 0 .../{outline => _outline}/info-cirlce-2.svg | 0 .../{outline => _outline}/info-square.svg | 0 icons-original/{outline => _outline}/info.svg | 0 .../{outline => _outline}/key-2.svg | 0 .../{outline => _outline}/key-duplicate.svg | 0 icons-original/{outline => _outline}/key.svg | 0 icons-original/{outline => _outline}/link.svg | 0 .../{outline => _outline}/loader.svg | 0 .../{outline => _outline}/lock-2.svg | 0 .../{outline => _outline}/lock-off.svg | 0 .../{outline => _outline}/lock-open.svg | 0 icons-original/{outline => _outline}/lock.svg | 0 icons-original/{outline => _outline}/mail.svg | 0 .../{outline => _outline}/map-2.svg | 0 .../{outline => _outline}/map-pin-off.svg | 0 .../{outline => _outline}/map-pin.svg | 0 .../{outline => _outline}/minus.svg | 0 .../mood-crazy-happy.svg | 0 .../{outline => _outline}/mood-empty.svg | 0 .../{outline => _outline}/mood-sad.svg | 0 .../{outline => _outline}/mood-smile.svg | 0 .../{outline => _outline}/mouse-left.svg | 0 .../{outline => _outline}/mouse-right.svg | 0 .../{outline => _outline}/no-duplicate.svg | 0 .../{outline => _outline}/palette.svg | 0 .../{outline => _outline}/photo-off-2.svg | 0 .../{outline => _outline}/photo-off.svg | 0 .../{outline => _outline}/photo-stack.svg | 0 .../{outline => _outline}/photo.svg | 0 .../{outline => _outline}/pinned.svg | 0 icons-original/{outline => _outline}/plus.svg | 0 .../{outline => _outline}/question-mark.svg | 0 .../{outline => _outline}/redeem.svg | 0 .../{outline => _outline}/refresh-2.svg | 0 .../{outline => _outline}/refresh-alert.svg | 0 .../{outline => _outline}/refresh.svg | 0 .../{outline => _outline}/reload-alert.svg | 0 .../rotate-clockwise.svg | 0 .../{outline => _outline}/rotate.svg | 0 .../{outline => _outline}/search.svg | 0 .../{outline => _outline}/share.svg | 0 .../shopping-cart-discount.svg | 0 .../{outline => _outline}/shopping-cart.svg | 0 .../sort-ascending-2.svg | 0 .../sort-ascending-letters.svg | 0 .../sort-ascending-numbers.svg | 0 .../{outline => _outline}/sort-ascending.svg | 0 .../sort-descending-2.svg | 0 .../sort-descending-letters.svg | 0 .../sort-descending-numbers.svg | 0 .../{outline => _outline}/sort-descending.svg | 0 .../{outline => _outline}/spray.svg | 0 .../{outline => _outline}/spray_2.svg | 0 .../{outline => _outline}/stack-double.svg | 0 .../{outline => _outline}/stack-triple.svg | 0 .../{outline => _outline}/star-off.svg | 0 icons-original/{outline => _outline}/star.svg | 0 .../{outline => _outline}/thumb-down.svg | 0 .../{outline => _outline}/thumb-up.svg | 0 .../{outline => _outline}/trash-off.svg | 0 .../{outline => _outline}/trash.svg | 0 .../{outline => _outline}/unlink.svg | 0 .../{outline => _outline}/upload-2.svg | 0 .../{outline => _outline}/upload.svg | 0 .../{outline => _outline}/user-check.svg | 0 .../user-exclamation.svg | 0 .../{outline => _outline}/user-minus.svg | 0 .../{outline => _outline}/user-off.svg | 0 .../{outline => _outline}/user-plus.svg | 0 .../{outline => _outline}/user-x.svg | 0 icons-original/{outline => _outline}/user.svg | 0 .../{outline => _outline}/users.svg | 0 .../{outline => _outline}/view-all.svg | 0 .../{outline => _outline}/viewfinder.svg | 0 .../{outline => _outline}/wifi-1.svg | 0 .../{outline => _outline}/wifi-2.svg | 0 .../{outline => _outline}/wifi-off.svg | 0 icons-original/{outline => _outline}/wifi.svg | 0 .../{outline => _outline}/world.svg | 0 .../{outline => _outline}/writing.svg | 0 icons-original/{outline => _outline}/x.svg | 0 .../{outline => _outline}/zoom-in.svg | 0 .../{outline => _outline}/zoom-out.svg | 0 .../{outline => _outline}/zoom-question.svg | 0 .../{weird => _weird}/aftershoot-credit.svg | 0 .../{weird => _weird}/aftershoot_edit.svg | 0 .../{weird => _weird}/check_box.svg | 0 icons-original/{weird => _weird}/cup.svg | 0 icons-original/{weird => _weird}/facebook.svg | 0 .../{weird => _weird}/facebook_color.svg | 0 icons-original/{weird => _weird}/goodies.svg | 0 .../{weird => _weird}/google-color.svg | 0 .../{weird => _weird}/grab-hand.svg | 0 icons-original/{weird => _weird}/logo.svg | 0 icons-original/{weird => _weird}/thunder.svg | 0 .../{weird => _weird}/twitter_color.svg | 0 icons-original/fill/apple-all.svg | 1 - icons-original/fill/apple.svg | 2 + icons-original/fill/checkBlue.svg | 10 - .../fill/{ => di}/alert-circle-fill.svg | 0 .../fill/{ => di}/alert-triangle-fill.svg | 0 icons-original/fill/scissors-fill.svg | 6 +- package.json | 7 +- scripts/buildIcons.mjs | 7 +- scripts/default-attrsxxx.json | 11 - scripts/exportIconTemplate.mjs | 4 +- scripts/exportStoryTemplate.mjs | 24 ++- scripts/generateIconFiles.mjs | 3 +- scripts/generateStories.mjs | 4 +- scripts/helpers.mjs | 30 +++ scripts/optimizeSvgs.mjs | 36 ++-- scripts/processSvg.mjs | 104 +++++----- scripts/renderIconsObject.mjs | 6 +- scripts/renderMetadataObj.mjs | 20 ++ scripts/writeSvgMetadata.mjs | 56 ++++++ src/.DS_Store | Bin 6148 -> 6148 bytes src/Icon.ts | 28 ++- src/createASIcon.ts | 3 +- src/defaultAttributes.ts | 8 - src/icons-omega/Crown Play.tsx | 23 +++ src/icons-omega/aftershoot-logo.tsx | 20 ++ src/icons-omega/alert-circle-fill.tsx | 29 +++ src/icons-omega/alert-triangle-fill.tsx | 26 +++ src/icons-omega/apple-all.tsx | 20 ++ src/icons-omega/arrow-curve-fill.tsx | 20 ++ src/icons-omega/checkBlue.tsx | 27 +++ src/icons-omega/check_box.tsx | 40 ++++ src/icons-omega/check_box_empty.tsx | 32 +++ src/icons-omega/circle-fill.tsx | 20 ++ src/icons-omega/cloud-upload-accent.tsx | 27 +++ src/icons-omega/collection.tsx | 29 +++ src/icons-omega/crown-2-fill.tsx | 27 +++ src/icons-omega/download-accent.tsx | 27 +++ src/icons-omega/facebook.tsx | 20 ++ src/icons-omega/flag-fill.tsx | 28 +++ src/icons-omega/folder-fill.tsx | 44 ++++ src/icons-omega/grid-view-1.tsx | 35 ++++ src/icons-omega/grid-view-2.tsx | 35 ++++ src/icons-omega/home-mix.tsx | 54 +++++ src/icons-omega/image-border.tsx | 24 +++ src/icons-omega/index.ts | 190 ++---------------- src/icons-omega/key-duplicate-fill.tsx | 25 +++ src/icons-omega/layout-sidebar-right-mix.tsx | 35 ++++ src/icons-omega/list-fill.tsx | 25 +++ src/icons-omega/loop.tsx | 39 ++++ src/icons-omega/loupe-fill.tsx | 25 +++ src/icons-omega/mood.tsx | 37 ++++ src/icons-omega/mood_gray.tsx | 37 ++++ src/icons-omega/mouse-left-2.tsx | 36 ++++ src/icons-omega/none-selected.tsx | 32 +++ src/icons-omega/palette-fill.tsx | 20 ++ src/icons-omega/partially_checked.tsx | 47 +++++ src/icons-omega/pause-fill.tsx | 25 +++ src/icons-omega/play-fill.tsx | 20 ++ src/icons-omega/recull.tsx | 42 ++++ src/icons-omega/scissors-fill.tsx | 36 ++++ src/icons-omega/sparkle.tsx | 25 +++ src/icons-omega/star - 0.tsx | 33 +++ src/icons-omega/star - 1.tsx | 33 +++ src/icons-omega/star - 2.tsx | 33 +++ src/icons-omega/star - 3.tsx | 33 +++ src/icons-omega/star - 4.tsx | 33 +++ src/icons-omega/star - 5.tsx | 33 +++ src/icons-omega/star-fill.tsx | 22 ++ src/icons-omega/star-off-fill.tsx | 34 ++++ src/icons-omega/upload-accent.tsx | 33 +++ src/icons-omega/upload-c1-cat.tsx | 46 +++++ src/icons-omega/upload-lr-cat.tsx | 46 +++++ src/icons-test/aftershoot-logo.tsx | 21 ++ src/icons-test/apple.tsx | 20 ++ src/icons-test/arrow-curve-fill.tsx | 21 ++ src/icons-test/circle-fill.tsx | 21 ++ src/icons-test/crown-2-fill.tsx | 28 +++ src/icons-test/facebook.tsx | 21 ++ src/icons-test/grid-view-1.tsx | 36 ++++ src/icons-test/grid-view-2.tsx | 36 ++++ src/icons-test/index.ts | 17 ++ src/icons-test/key-duplicate-fill.tsx | 26 +++ src/icons-test/list-fill.tsx | 26 +++ src/icons-test/loop.tsx | 40 ++++ src/icons-test/loupe-fill.tsx | 26 +++ src/icons-test/palette-fill.tsx | 21 ++ src/icons-test/pause-fill.tsx | 26 +++ src/icons-test/play-fill.tsx | 21 ++ src/icons-test/scissors-fill.tsx | 36 ++++ src/stories-omega/AlertTriangle.stories.tsx | 68 ------- src/stories-omega/ArrowDown.stories.tsx | 68 ------- src/stories-omega/ArrowLeft.stories.tsx | 68 ------- src/stories-omega/ArrowNarrowLeft.stories.tsx | 68 ------- .../ArrowNarrowRight.stories.tsx | 68 ------- src/stories-omega/ArrowRight.stories.tsx | 68 ------- src/stories-omega/ArrowSort2.stories.tsx | 68 ------- src/stories-omega/ArrowUp.stories.tsx | 68 ------- src/stories-omega/ArrowsDiagonal.stories.tsx | 68 ------- src/stories-omega/ArrowsSort.stories.tsx | 68 ------- src/stories-omega/Atom.stories.tsx | 68 ------- src/stories-omega/Ban.stories.tsx | 68 ------- src/stories-omega/Bell.stories.tsx | 68 ------- src/stories-omega/BellMinus.stories.tsx | 68 ------- src/stories-omega/BellOff.stories.tsx | 68 ------- src/stories-omega/BellPlus.stories.tsx | 68 ------- src/stories-omega/BellRinging.stories.tsx | 68 ------- src/stories-omega/BellRinging2.stories.tsx | 68 ------- src/stories-omega/BellX.stories.tsx | 68 ------- src/stories-omega/BrandFacebook.stories.tsx | 68 ------- src/stories-omega/BrandGithub.stories.tsx | 68 ------- src/stories-omega/BrandInstagram.stories.tsx | 68 ------- src/stories-omega/BrandTwitter.stories.tsx | 68 ------- src/stories-omega/BrandWhatsapp.stories.tsx | 68 ------- src/stories-omega/BrandYoutube.stories.tsx | 68 ------- src/stories-omega/Bulb.stories.tsx | 68 ------- src/stories-omega/BulbOff.stories.tsx | 68 ------- src/stories-omega/Check.stories.tsx | 68 ------- src/stories-omega/ChevronDown.stories.tsx | 68 ------- src/stories-omega/ChevronLeft.stories.tsx | 68 ------- src/stories-omega/ChevronRight.stories.tsx | 68 ------- src/stories-omega/ChevronUp.stories.tsx | 68 ------- src/stories-omega/ChevronsLeft.stories.tsx | 68 ------- src/stories-omega/ChevronsRight.stories.tsx | 68 ------- src/stories-omega/Circle.stories.tsx | 68 ------- src/stories-omega/CircleCheck.stories.tsx | 68 ------- src/stories-omega/CircleCheck2.stories.tsx | 68 ------- src/stories-omega/Clock.stories.tsx | 68 ------- src/stories-omega/CloudUpload.stories.tsx | 68 ------- src/stories-omega/ColorSwatch.stories.tsx | 68 ------- src/stories-omega/Confetti.stories.tsx | 68 ------- src/stories-omega/Copy.stories.tsx | 68 ------- src/stories-omega/Crown.stories.tsx | 68 ------- src/stories-omega/CurrencyDollar.stories.tsx | 68 ------- src/stories-omega/CurrentLocation.stories.tsx | 68 ------- src/stories-omega/DeviceDesktop.stories.tsx | 68 ------- .../DeviceDesktopAnalytics.stories.tsx | 68 ------- .../DeviceDesktopOff.stories.tsx | 68 ------- src/stories-omega/DeviceLaptop.stories.tsx | 68 ------- src/stories-omega/DeviceTv.stories.tsx | 68 ------- src/stories-omega/Diamond.stories.tsx | 68 ------- src/stories-omega/Discount.stories.tsx | 68 ------- src/stories-omega/Discount2.stories.tsx | 68 ------- src/stories-omega/Disk.stories.tsx | 68 ------- src/stories-omega/DotsVertical.stories.tsx | 68 ------- src/stories-omega/Download.stories.tsx | 68 ------- src/stories-omega/Edit.stories.tsx | 68 ------- src/stories-omega/ExternalLink.stories.tsx | 68 ------- src/stories-omega/Eye.stories.tsx | 68 ------- src/stories-omega/EyeCheck.stories.tsx | 68 ------- src/stories-omega/EyeOff.stories.tsx | 68 ------- src/stories-omega/FileDownload.stories.tsx | 68 ------- src/stories-omega/FileExport.stories.tsx | 68 ------- src/stories-omega/FileReport.stories.tsx | 68 ------- src/stories-omega/FileSearch.stories.tsx | 68 ------- src/stories-omega/Filter.stories.tsx | 68 ------- src/stories-omega/FilterOff.stories.tsx | 68 ------- src/stories-omega/Flag.stories.tsx | 68 ------- src/stories-omega/FlagOff.stories.tsx | 68 ------- src/stories-omega/Folder.stories.tsx | 68 ------- src/stories-omega/FolderDownload.stories.tsx | 68 ------- src/stories-omega/FolderEye.stories.tsx | 68 ------- src/stories-omega/FolderMinus.stories.tsx | 68 ------- src/stories-omega/FolderOff.stories.tsx | 68 ------- src/stories-omega/FolderPlus.stories.tsx | 68 ------- src/stories-omega/FolderUpload.stories.tsx | 68 ------- src/stories-omega/FolderX.stories.tsx | 68 ------- src/stories-omega/Folders.stories.tsx | 68 ------- src/stories-omega/GridDots.stories.tsx | 68 ------- src/stories-omega/Home2.stories.tsx | 68 ------- src/stories-omega/Import.stories.tsx | 68 ------- src/stories-omega/Info.stories.tsx | 68 ------- src/stories-omega/InfoCircle.stories.tsx | 68 ------- src/stories-omega/InfoCirlce2.stories.tsx | 68 ------- src/stories-omega/InfoSquare.stories.tsx | 68 ------- src/stories-omega/Key.stories.tsx | 68 ------- src/stories-omega/Key2.stories.tsx | 68 ------- src/stories-omega/KeyDuplicate.stories.tsx | 68 ------- src/stories-omega/Link.stories.tsx | 68 ------- src/stories-omega/Loader.stories.tsx | 68 ------- src/stories-omega/Lock.stories.tsx | 68 ------- src/stories-omega/Lock2.stories.tsx | 68 ------- src/stories-omega/LockOff.stories.tsx | 68 ------- src/stories-omega/LockOpen.stories.tsx | 68 ------- src/stories-omega/Mail.stories.tsx | 68 ------- src/stories-omega/Map2.stories.tsx | 68 ------- src/stories-omega/MapPin.stories.tsx | 68 ------- src/stories-omega/MapPinOff.stories.tsx | 68 ------- src/stories-omega/Minus.stories.tsx | 68 ------- src/stories-omega/MoodCrazyHappy.stories.tsx | 68 ------- src/stories-omega/MoodEmpty.stories.tsx | 68 ------- src/stories-omega/MoodSad.stories.tsx | 68 ------- src/stories-omega/MoodSmile.stories.tsx | 68 ------- src/stories-omega/MouseLeft.stories.tsx | 68 ------- src/stories-omega/MouseRight.stories.tsx | 68 ------- src/stories-omega/NoDuplicate.stories.tsx | 68 ------- src/stories-omega/Palette.stories.tsx | 68 ------- src/stories-omega/Photo.stories.tsx | 68 ------- src/stories-omega/PhotoOff.stories.tsx | 68 ------- src/stories-omega/PhotoOff2.stories.tsx | 68 ------- src/stories-omega/PhotoStack.stories.tsx | 68 ------- src/stories-omega/Pinned.stories.tsx | 68 ------- src/stories-omega/Plus.stories.tsx | 68 ------- src/stories-omega/QuestionMark.stories.tsx | 68 ------- src/stories-omega/Redeem.stories.tsx | 68 ------- src/stories-omega/Refresh.stories.tsx | 68 ------- src/stories-omega/Refresh2.stories.tsx | 68 ------- src/stories-omega/RefreshAlert.stories.tsx | 68 ------- src/stories-omega/ReloadAlert.stories.tsx | 68 ------- src/stories-omega/Rotate.stories.tsx | 68 ------- src/stories-omega/Rotate90.stories.tsx | 68 ------- src/stories-omega/RotateClockwise.stories.tsx | 68 ------- src/stories-omega/Search.stories.tsx | 68 ------- src/stories-omega/Share.stories.tsx | 68 ------- src/stories-omega/ShoppingCart.stories.tsx | 68 ------- .../ShoppingCartDiscount.stories.tsx | 68 ------- src/stories-omega/SortAscending.stories.tsx | 68 ------- src/stories-omega/SortAscending2.stories.tsx | 68 ------- .../SortAscendingLetters.stories.tsx | 68 ------- .../SortAscendingNumbers.stories.tsx | 68 ------- src/stories-omega/SortDescending.stories.tsx | 68 ------- src/stories-omega/SortDescending2.stories.tsx | 68 ------- .../SortDescendingLetters.stories.tsx | 68 ------- .../SortDescendingNumbers.stories.tsx | 68 ------- src/stories-omega/Spray.stories.tsx | 68 ------- src/stories-omega/Spray2.stories.tsx | 68 ------- src/stories-omega/Stack.stories.tsx | 68 ------- src/stories-omega/Stack2.stories.tsx | 68 ------- src/stories-omega/StackDouble.stories.tsx | 68 ------- src/stories-omega/StackTriple.stories.tsx | 68 ------- src/stories-omega/Star.stories.tsx | 68 ------- src/stories-omega/StarOff.stories.tsx | 68 ------- src/stories-omega/ThumbDown.stories.tsx | 68 ------- src/stories-omega/ThumbUp.stories.tsx | 68 ------- src/stories-omega/Trash.stories.tsx | 68 ------- src/stories-omega/TrashOff.stories.tsx | 68 ------- src/stories-omega/Unlink.stories.tsx | 68 ------- src/stories-omega/Upload.stories.tsx | 68 ------- src/stories-omega/Upload2.stories.tsx | 68 ------- src/stories-omega/User.stories.tsx | 68 ------- src/stories-omega/UserCheck.stories.tsx | 68 ------- src/stories-omega/UserExclamation.stories.tsx | 68 ------- src/stories-omega/UserMinus.stories.tsx | 68 ------- src/stories-omega/UserOff.stories.tsx | 68 ------- src/stories-omega/UserPlus.stories.tsx | 68 ------- src/stories-omega/UserX.stories.tsx | 68 ------- src/stories-omega/Users.stories.tsx | 68 ------- src/stories-omega/ViewAll.stories.tsx | 68 ------- src/stories-omega/Viewfinder.stories.tsx | 68 ------- src/stories-omega/Wifi.stories.tsx | 68 ------- src/stories-omega/Wifi1.stories.tsx | 68 ------- src/stories-omega/Wifi2.stories.tsx | 68 ------- src/stories-omega/WifiOff.stories.tsx | 68 ------- src/stories-omega/World.stories.tsx | 68 ------- src/stories-omega/Writing.stories.tsx | 68 ------- src/stories-omega/X.stories.tsx | 68 ------- src/stories-omega/ZoomIn.stories.tsx | 68 ------- src/stories-omega/ZoomOut.stories.tsx | 68 ------- src/stories-omega/ZoomQuestion.stories.tsx | 68 ------- src/stories/AdjustmentIcon.stories.tsx | 39 ---- src/stories/AfterShootLogoIcon.stories.tsx | 27 --- src/stories/AftershootEditIcon.stories.tsx | 38 ---- src/stories/AftershootLogo.stories.tsx | 70 +++++++ src/stories/AftershootWhiteIcon.stories.tsx | 39 ---- src/stories/AlertCircleIcon.stories.tsx | 38 ---- src/stories/AlertFillIcon.stories.tsx | 40 ---- src/stories/AlertFillTriangleIcon.stories.tsx | 45 ----- src/stories/AlertHexagonBgIcon.stories.tsx | 51 ----- src/stories/AlertHexagonIcon.stories.tsx | 38 ---- src/stories/AlertTriangleBgIcon.stories.tsx | 45 ----- src/stories/AlertTriangleIcon.stories.tsx | 39 ---- .../Apple.stories.tsx} | 22 +- src/stories/AppleIcon.stories.tsx | 39 ---- src/stories/ArrowCurveFill.stories.tsx | 70 +++++++ src/stories/ArrowCurveIcon.stories.tsx | 39 ---- src/stories/ArrowDownIcon.stories.tsx | 39 ---- src/stories/ArrowFillRightIcon.stories.tsx | 39 ---- src/stories/ArrowFillUpIcon.stories.tsx | 46 ----- src/stories/ArrowLeftIcon.stories.tsx | 39 ---- src/stories/ArrowRightIcon.stories.tsx | 39 ---- src/stories/ArrowUpIcon.stories.tsx | 39 ---- src/stories/BorderColorIcon.stories.tsx | 45 ----- src/stories/BulbIcon.stories.tsx | 38 ---- src/stories/C1UploadIcon.stories.tsx | 38 ---- src/stories/CaptureOneIcon.stories.tsx | 27 --- src/stories/CardBgIcon.stories.tsx | 46 ----- src/stories/CartIcon.stories.tsx | 39 ---- src/stories/CelebrateIcon.stories.tsx | 27 --- src/stories/CheckBoxEmptyIcon.stories.tsx | 38 ---- src/stories/CheckBoxIcon.stories.tsx | 53 ----- src/stories/CheckBoxPartialIcon.stories.tsx | 53 ----- src/stories/CheckCircleBgIcon.stories.tsx | 52 ----- src/stories/CheckCircleIcon.stories.tsx | 38 ---- src/stories/CheckFillCircleIcon.stories.tsx | 39 ---- src/stories/CheckFillIcon.stories.tsx | 46 ----- src/stories/CheckIcon.stories.tsx | 39 ---- src/stories/ChevronDownIcon.stories.tsx | 39 ---- src/stories/ChevronLeftIcon.stories.tsx | 39 ---- src/stories/ChevronRightIcon.stories.tsx | 39 ---- src/stories/ChevronUpIcon.stories.tsx | 39 ---- .../CircleFill.stories.tsx} | 22 +- src/stories/CircleFillIcon.stories.tsx | 40 ---- src/stories/CircleIcon.stories.tsx | 38 ---- src/stories/ClockIcon.stories.tsx | 39 ---- src/stories/CloseCircleIcon.stories.tsx | 38 ---- src/stories/CloseIcon.stories.tsx | 38 ---- src/stories/CollectionsIcon.stories.tsx | 38 ---- src/stories/ColorPaletteIcon.stories.tsx | 39 ---- src/stories/ComputerBgIcon.stories.tsx | 45 ----- src/stories/ComputerIcon.stories.tsx | 38 ---- src/stories/ConfettiIcon.stories.tsx | 38 ---- src/stories/ConfettiLeftScreen.stories.tsx | 27 --- src/stories/ConfettiRightScreen.stories.tsx | 27 --- src/stories/ConfettiSideScreen.stories.tsx | 27 --- src/stories/ContactSupportIcon.stories.tsx | 39 ---- src/stories/CopyContentIcon.stories.tsx | 38 ---- src/stories/CopyIcon.stories.tsx | 39 ---- src/stories/CouponIcon.stories.tsx | 39 ---- src/stories/CreateProfileIcon.stories.tsx | 39 ---- src/stories/CreditIcon.stories.tsx | 28 --- src/stories/CrossCircleIcon.stories.tsx | 38 ---- src/stories/CrossIcon.stories.tsx | 44 ---- src/stories/Crown2Fill.stories.tsx | 70 +++++++ src/stories/CrownBgIcon.stories.tsx | 39 ---- src/stories/CrownIcon.stories.tsx | 39 ---- src/stories/DecrementIcon.stories.tsx | 44 ---- src/stories/DeleteIcon.stories.tsx | 39 ---- src/stories/DeleteWhiteIcon.stories.tsx | 46 ----- src/stories/DiamondIcon.stories.tsx | 38 ---- src/stories/DollarIcon.stories.tsx | 38 ---- src/stories/DotsVerticalIcon.stories.tsx | 38 ---- src/stories/DownloadIcon.stories.tsx | 45 ----- src/stories/DragBridgeIcon.stories.tsx | 27 --- src/stories/DragCaptureOneIcon.stories.tsx | 27 --- src/stories/DragFolderIcon.stories.tsx | 27 --- src/stories/DragLrIcon.stories.tsx | 28 --- src/stories/DragLrcIcon.stories.tsx | 27 --- src/stories/DragPhotoshopIcon.stories.tsx | 27 --- src/stories/DrawerIcon.stories.tsx | 38 ---- src/stories/DublicateStackIcon.stories.tsx | 38 ---- src/stories/DuplicateFillIcon.stories.tsx | 38 ---- src/stories/DuplicateIcon.stories.tsx | 38 ---- src/stories/EditAlbumNameIcon.stories.tsx | 39 ---- src/stories/EditIcon.stories.tsx | 39 ---- src/stories/EditPhotoIcon.stories.tsx | 39 ---- src/stories/EditProgressIcon.stories.tsx | 45 ----- src/stories/EditsLogoTextIcon.stories.tsx | 27 --- src/stories/ExitAppBgIcon.stories.tsx | 46 ----- src/stories/ExpandIcon.stories.tsx | 38 ---- src/stories/ExportIcon.stories.tsx | 38 ---- src/stories/EyeCheckedIcon.stories.tsx | 39 ---- src/stories/EyeCrossedIcon.stories.tsx | 39 ---- src/stories/EyeIcon.stories.tsx | 39 ---- .../Facebook.stories.tsx} | 22 +- src/stories/FacebookBgIcon.stories.tsx | 40 ---- src/stories/FacebookIcon.stories.tsx | 33 --- src/stories/FacebookOutlineIcon.stories.tsx | 38 ---- src/stories/FacebookPeopleIcon.stories.tsx | 31 --- src/stories/FailFillBgIcon.stories.tsx | 52 ----- src/stories/FailFillIcon.stories.tsx | 45 ----- src/stories/FileSearchIcon.stories.tsx | 38 ---- src/stories/FilterCircleIcon.stories.tsx | 38 ---- src/stories/FilterIcon.stories.tsx | 38 ---- src/stories/FinderIcon.stories.tsx | 38 ---- src/stories/FiveStarBgIcon.stories.tsx | 53 ----- src/stories/FlagFillIcon.stories.tsx | 38 ---- .../FlagOutlineCrossedIcon.stories.tsx | 38 ---- src/stories/FlagOutlineIcon.stories.tsx | 39 ---- src/stories/FolderCrossedIcon.stories.tsx | 38 ---- src/stories/FolderFillIcon.stories.tsx | 39 ---- src/stories/FolderOutlineBgIcon.stories.tsx | 45 ----- src/stories/FullScreenIcon.stories.tsx | 38 ---- src/stories/GlobalIcon.stories.tsx | 38 ---- src/stories/GoogleColorIcon.stories.tsx | 27 --- src/stories/GridBgIcon.stories.tsx | 45 ----- src/stories/GridDotsIcon.stories.tsx | 39 ---- src/stories/GridIcon.stories.tsx | 38 ---- src/stories/GridThreeLitIcon.stories.tsx | 38 ---- src/stories/GridTwoLitIcon.stories.tsx | 38 ---- src/stories/GridView1.stories.tsx | 70 +++++++ src/stories/GridView2.stories.tsx | 70 +++++++ src/stories/GroupingLessIcon.stories.tsx | 27 --- src/stories/GroupingMoreIcon.stories.tsx | 27 --- src/stories/HomeIcon.stories.tsx | 39 ---- src/stories/ImageBorderCircleIcon.stories.tsx | 38 ---- src/stories/ImageBorderIcon.stories.tsx | 39 ---- src/stories/ImageCrossedBgIcon.stories.tsx | 45 ----- src/stories/ImageCrossedIcon.stories.tsx | 38 ---- src/stories/ImageIcon.stories.tsx | 38 ---- src/stories/ImageStackIcon.stories.tsx | 38 ---- src/stories/InfoBgIcon.stories.tsx | 46 ----- src/stories/InfoCircleIcon.stories.tsx | 39 ---- src/stories/InstagramIcon.stories.tsx | 38 ---- src/stories/KeyCircleIcon.stories.tsx | 39 ---- src/stories/KeyDuplicateFill.stories.tsx | 70 +++++++ src/stories/KeyIcon.stories.tsx | 39 ---- src/stories/LightroomClassicIcon.stories.tsx | 27 --- src/stories/LightroomIcon.stories.tsx | 27 --- src/stories/LinkIcon.stories.tsx | 38 ---- .../ListFill.stories.tsx} | 22 +- src/stories/ListNotSelectedIcon.stories.tsx | 39 ---- src/stories/ListSelectedIcon.stories.tsx | 39 ---- src/stories/LoaderIcon.stories.tsx | 39 ---- src/stories/LockIcon.stories.tsx | 39 ---- .../Loop.stories.tsx} | 22 +- src/stories/LoopIcon.stories.tsx | 39 ---- src/stories/LoupeFill.stories.tsx | 70 +++++++ src/stories/LoupeIcon.stories.tsx | 38 ---- src/stories/LrUploadIcon.stories.tsx | 38 ---- src/stories/MailBgIcon.stories.tsx | 38 ---- src/stories/MaximizeIcon.stories.tsx | 39 ---- src/stories/MenuIcon.stories.tsx | 39 ---- src/stories/MinimizeIcon.stories.tsx | 38 ---- src/stories/MoneyBagIcon.stories.tsx | 39 ---- src/stories/MoodIcon.stories.tsx | 45 ----- src/stories/MouseLeftClick.stories.tsx | 39 ---- .../MouseLeftClickCircleIcon.stories.tsx | 38 ---- src/stories/MouseRightClick.stories.tsx | 39 ---- src/stories/MoveBgIcon.stories.tsx | 45 ----- src/stories/NoDuplicateIcon.stories.tsx | 38 ---- src/stories/NoneIconIcon.stories.tsx | 39 ---- src/stories/NoneSelectedIcon.stories.tsx | 33 --- src/stories/NotAllowIcon.stories.tsx | 38 ---- src/stories/NotSelectedCircleIcon.stories.tsx | 39 ---- src/stories/OpenlinkIcon.stories.tsx | 39 ---- src/stories/PaletteFill.stories.tsx | 70 +++++++ src/stories/PauseBgIcon.stories.tsx | 38 ---- src/stories/PauseFill.stories.tsx | 70 +++++++ src/stories/PersonPlusIcon.stories.tsx | 38 ---- src/stories/PersonTwoIcon.stories.tsx | 39 ---- src/stories/PipeIcon.stories.tsx | 39 ---- src/stories/PlayBgIcon.stories.tsx | 39 ---- src/stories/PlayCircleIcon.stories.tsx | 38 ---- src/stories/PlayFill.stories.tsx | 70 +++++++ src/stories/PlusBgIcon.stories.tsx | 45 ----- src/stories/PowerHighIcon.stories.tsx | 33 --- src/stories/PowerLowIcon.stories.tsx | 33 --- src/stories/PowerMidIcon.stories.tsx | 33 --- .../QuestionMarkCircleIcon.stories.tsx | 38 ---- src/stories/QuestionMarkIcon.stories.tsx | 39 ---- src/stories/RecullIcon.stories.tsx | 39 ---- src/stories/RefreshIcon.stories.tsx | 38 ---- src/stories/ReloadWarningIcon.stories.tsx | 39 ---- src/stories/ReverticonIcon.stories.tsx | 38 ---- src/stories/RightSignIcon.stories.tsx | 46 ----- src/stories/RotateIcon.stories.tsx | 38 ---- src/stories/RotateLeftSquareIcon.stories.tsx | 38 ---- src/stories/RotateRightSquareIcon.stories.tsx | 38 ---- src/stories/ScissorsFill.stories.tsx | 70 +++++++ src/stories/ScissorsIcon.stories.tsx | 39 ---- src/stories/SearchIcon.stories.tsx | 38 ---- .../SelectedFillCircleIcon.stories.tsx | 45 ----- src/stories/ShareIcon.stories.tsx | 39 ---- src/stories/ShowDuplicateIcon.stories.tsx | 38 ---- src/stories/SmileyHappyIcon.stories.tsx | 38 ---- src/stories/SmileySadIcon.stories.tsx | 39 ---- src/stories/SortCircleIcon.stories.tsx | 38 ---- .../SortDuplicateCircleIcon.stories.tsx | 38 ---- src/stories/SortDuplicatesIcon.stories.tsx | 39 ---- src/stories/SortIcon.stories.tsx | 39 ---- src/stories/SortOptionAlphaIcon.stories.tsx | 45 ----- src/stories/SortOptionNumIcon.stories.tsx | 50 ----- src/stories/SparkleIcon.stories.tsx | 38 ---- src/stories/SprayBgIcon.stories.tsx | 45 ----- src/stories/SprayCanIcon.stories.tsx | 39 ---- src/stories/SprayCircleIcon.stories.tsx | 38 ---- src/stories/StackThreeIcon.stories.tsx | 39 ---- src/stories/StackTwoIcon.stories.tsx | 39 ---- src/stories/StarCrossedIcon.stories.tsx | 39 ---- src/stories/StarIcon.stories.tsx | 39 ---- src/stories/StorageCrossedIcon.stories.tsx | 39 ---- src/stories/SuccessIcon.stories.tsx | 52 ----- src/stories/SurveyModeIcon.stories.tsx | 38 ---- src/stories/ThumbDownBgIcon.stories.tsx | 45 ----- src/stories/ThumbUpBgIcon.stories.tsx | 45 ----- src/stories/ThunderBgIcon.stories.tsx | 39 ---- src/stories/TrainBgIcon.stories.tsx | 51 ----- src/stories/TrophyColorIcon.stories.tsx | 27 --- src/stories/TwitterIcon.stories.tsx | 38 ---- src/stories/TwitterOutlineIcon.stories.tsx | 38 ---- src/stories/UploadBgIcon.stories.tsx | 51 ----- src/stories/UploadCloudIcon.stories.tsx | 38 ---- src/stories/UploadFolder.stories.tsx | 39 ---- src/stories/UploadIcon.stories.tsx | 39 ---- src/stories/UploadIconIcon.stories.tsx | 52 ----- src/stories/ViewAllIcon.stories.tsx | 38 ---- src/stories/WhatsappIcon.stories.tsx | 38 ---- src/stories/WifiCrossedBgIcon.stories.tsx | 46 ----- src/stories/WifiCrossedIcon.stories.tsx | 38 ---- src/stories/XIcon.stories.tsx | 38 ---- src/stories/ZoomCircleIcon.stories.tsx | 38 ---- src/stories/ZoomIcon.stories.tsx | 39 ---- src/styles/tailwind.css | 56 ++---- unicons.config.json | 25 ++- 940 files changed, 3345 insertions(+), 22491 deletions(-) delete mode 100644 icons-optimized/Import.svg delete mode 100644 icons-optimized/adjustments-horizontal.svg delete mode 100644 icons-optimized/adjustments.svg create mode 100644 icons-optimized/aftershoot-logo.json create mode 100644 icons-optimized/aftershoot-logo.svg delete mode 100644 icons-optimized/alarm.svg delete mode 100644 icons-optimized/alert-circle.svg delete mode 100644 icons-optimized/alert-octagon.svg delete mode 100644 icons-optimized/alert-triangle.svg create mode 100644 icons-optimized/apple.json create mode 100644 icons-optimized/apple.svg create mode 100644 icons-optimized/arrow-curve-fill.json create mode 100644 icons-optimized/arrow-curve-fill.svg delete mode 100644 icons-optimized/arrow-down.svg delete mode 100644 icons-optimized/arrow-left.svg delete mode 100644 icons-optimized/arrow-narrow-left.svg delete mode 100644 icons-optimized/arrow-narrow-right.svg delete mode 100644 icons-optimized/arrow-right.svg delete mode 100644 icons-optimized/arrow-sort-2.svg delete mode 100644 icons-optimized/arrow-up.svg delete mode 100644 icons-optimized/arrows-diagonal.svg delete mode 100644 icons-optimized/arrows-sort.svg delete mode 100644 icons-optimized/atom.svg delete mode 100644 icons-optimized/ban.svg delete mode 100644 icons-optimized/bell-minus.svg delete mode 100644 icons-optimized/bell-off.svg delete mode 100644 icons-optimized/bell-plus.svg delete mode 100644 icons-optimized/bell-ringing-2.svg delete mode 100644 icons-optimized/bell-ringing.svg delete mode 100644 icons-optimized/bell-x.svg delete mode 100644 icons-optimized/bell.svg delete mode 100644 icons-optimized/brand-facebook.svg delete mode 100644 icons-optimized/brand-github.svg delete mode 100644 icons-optimized/brand-instagram.svg delete mode 100644 icons-optimized/brand-twitter.svg delete mode 100644 icons-optimized/brand-whatsapp.svg delete mode 100644 icons-optimized/brand-youtube.svg delete mode 100644 icons-optimized/bulb-off.svg delete mode 100644 icons-optimized/bulb.svg delete mode 100644 icons-optimized/check.svg delete mode 100644 icons-optimized/chevron-down.svg delete mode 100644 icons-optimized/chevron-left.svg delete mode 100644 icons-optimized/chevron-right.svg delete mode 100644 icons-optimized/chevron-up.svg delete mode 100644 icons-optimized/chevrons-left.svg delete mode 100644 icons-optimized/chevrons-right.svg delete mode 100644 icons-optimized/circle-check-2.svg delete mode 100644 icons-optimized/circle-check.svg create mode 100644 icons-optimized/circle-fill.json create mode 100644 icons-optimized/circle-fill.svg delete mode 100644 icons-optimized/circle.svg delete mode 100644 icons-optimized/clock.svg delete mode 100644 icons-optimized/cloud-upload.svg delete mode 100644 icons-optimized/color-swatch.svg delete mode 100644 icons-optimized/confetti.svg delete mode 100644 icons-optimized/copy.svg create mode 100644 icons-optimized/crown-2-fill.json create mode 100644 icons-optimized/crown-2-fill.svg delete mode 100644 icons-optimized/crown.svg delete mode 100644 icons-optimized/currency-dollar.svg delete mode 100644 icons-optimized/current-location.svg delete mode 100644 icons-optimized/device-desktop-analytics.svg delete mode 100644 icons-optimized/device-desktop-off.svg delete mode 100644 icons-optimized/device-desktop.svg delete mode 100644 icons-optimized/device-laptop.svg delete mode 100644 icons-optimized/device-tv.svg delete mode 100644 icons-optimized/diamond.svg delete mode 100644 icons-optimized/discount-2.svg delete mode 100644 icons-optimized/discount.svg delete mode 100644 icons-optimized/disk.svg delete mode 100644 icons-optimized/dots-vertical.svg delete mode 100644 icons-optimized/download.svg delete mode 100644 icons-optimized/edit.svg delete mode 100644 icons-optimized/external-link.svg delete mode 100644 icons-optimized/eye-check.svg delete mode 100644 icons-optimized/eye-off.svg delete mode 100644 icons-optimized/eye.svg create mode 100644 icons-optimized/facebook.json create mode 100644 icons-optimized/facebook.svg delete mode 100644 icons-optimized/file-download.svg delete mode 100644 icons-optimized/file-export.svg delete mode 100644 icons-optimized/file-report.svg delete mode 100644 icons-optimized/file-search.svg delete mode 100644 icons-optimized/filter-off.svg delete mode 100644 icons-optimized/filter.svg delete mode 100644 icons-optimized/flag-off.svg delete mode 100644 icons-optimized/flag.svg delete mode 100644 icons-optimized/folder-download.svg delete mode 100644 icons-optimized/folder-eye.svg delete mode 100644 icons-optimized/folder-minus.svg delete mode 100644 icons-optimized/folder-off.svg delete mode 100644 icons-optimized/folder-plus.svg delete mode 100644 icons-optimized/folder-upload.svg delete mode 100644 icons-optimized/folder-x.svg delete mode 100644 icons-optimized/folder.svg delete mode 100644 icons-optimized/folders.svg delete mode 100644 icons-optimized/grid-dots.svg create mode 100644 icons-optimized/grid-view-1.json create mode 100644 icons-optimized/grid-view-1.svg create mode 100644 icons-optimized/grid-view-2.json create mode 100644 icons-optimized/grid-view-2.svg delete mode 100644 icons-optimized/home-2.svg delete mode 100644 icons-optimized/info-circle.svg delete mode 100644 icons-optimized/info-cirlce-2.svg delete mode 100644 icons-optimized/info-square.svg delete mode 100644 icons-optimized/info.svg delete mode 100644 icons-optimized/key-2.svg create mode 100644 icons-optimized/key-duplicate-fill.json create mode 100644 icons-optimized/key-duplicate-fill.svg delete mode 100644 icons-optimized/key-duplicate.svg delete mode 100644 icons-optimized/key.svg delete mode 100644 icons-optimized/link.svg create mode 100644 icons-optimized/list-fill.json create mode 100644 icons-optimized/list-fill.svg delete mode 100644 icons-optimized/loader.svg delete mode 100644 icons-optimized/lock-2.svg delete mode 100644 icons-optimized/lock-off.svg delete mode 100644 icons-optimized/lock-open.svg delete mode 100644 icons-optimized/lock.svg create mode 100644 icons-optimized/loop.json create mode 100644 icons-optimized/loop.svg create mode 100644 icons-optimized/loupe-fill.json create mode 100644 icons-optimized/loupe-fill.svg delete mode 100644 icons-optimized/mail.svg delete mode 100644 icons-optimized/map-2.svg delete mode 100644 icons-optimized/map-pin-off.svg delete mode 100644 icons-optimized/map-pin.svg delete mode 100644 icons-optimized/minus.svg delete mode 100644 icons-optimized/mood-crazy-happy.svg delete mode 100644 icons-optimized/mood-empty.svg delete mode 100644 icons-optimized/mood-sad.svg delete mode 100644 icons-optimized/mood-smile.svg delete mode 100644 icons-optimized/mouse-left.svg delete mode 100644 icons-optimized/mouse-right.svg delete mode 100644 icons-optimized/no-duplicate.svg create mode 100644 icons-optimized/palette-fill.json create mode 100644 icons-optimized/palette-fill.svg delete mode 100644 icons-optimized/palette.svg create mode 100644 icons-optimized/pause-fill.json create mode 100644 icons-optimized/pause-fill.svg delete mode 100644 icons-optimized/photo-off-2.svg delete mode 100644 icons-optimized/photo-off.svg delete mode 100644 icons-optimized/photo-stack.svg delete mode 100644 icons-optimized/photo.svg delete mode 100644 icons-optimized/pinned.svg create mode 100644 icons-optimized/play-fill.json create mode 100644 icons-optimized/play-fill.svg delete mode 100644 icons-optimized/plus.svg delete mode 100644 icons-optimized/question-mark.svg delete mode 100644 icons-optimized/redeem.svg delete mode 100644 icons-optimized/refresh-2.svg delete mode 100644 icons-optimized/refresh-alert.svg delete mode 100644 icons-optimized/refresh.svg delete mode 100644 icons-optimized/reload-alert.svg delete mode 100644 icons-optimized/rotate-90.svg delete mode 100644 icons-optimized/rotate-clockwise.svg delete mode 100644 icons-optimized/rotate.svg create mode 100644 icons-optimized/scissors-fill.json create mode 100644 icons-optimized/scissors-fill.svg delete mode 100644 icons-optimized/search.svg delete mode 100644 icons-optimized/share.svg delete mode 100644 icons-optimized/shopping-cart-discount.svg delete mode 100644 icons-optimized/shopping-cart.svg delete mode 100644 icons-optimized/sort-ascending-2.svg delete mode 100644 icons-optimized/sort-ascending-letters.svg delete mode 100644 icons-optimized/sort-ascending-numbers.svg delete mode 100644 icons-optimized/sort-ascending.svg delete mode 100644 icons-optimized/sort-descending-2.svg delete mode 100644 icons-optimized/sort-descending-letters.svg delete mode 100644 icons-optimized/sort-descending-numbers.svg delete mode 100644 icons-optimized/sort-descending.svg delete mode 100644 icons-optimized/spray.svg delete mode 100644 icons-optimized/spray_2.svg delete mode 100644 icons-optimized/stack-2.svg delete mode 100644 icons-optimized/stack-double.svg delete mode 100644 icons-optimized/stack-triple.svg delete mode 100644 icons-optimized/stack.svg delete mode 100644 icons-optimized/star-off.svg delete mode 100644 icons-optimized/star.svg delete mode 100644 icons-optimized/thumb-down.svg delete mode 100644 icons-optimized/thumb-up.svg delete mode 100644 icons-optimized/trash-off.svg delete mode 100644 icons-optimized/trash.svg delete mode 100644 icons-optimized/unlink.svg delete mode 100644 icons-optimized/upload-2.svg delete mode 100644 icons-optimized/upload.svg delete mode 100644 icons-optimized/user-check.svg delete mode 100644 icons-optimized/user-exclamation.svg delete mode 100644 icons-optimized/user-minus.svg delete mode 100644 icons-optimized/user-off.svg delete mode 100644 icons-optimized/user-plus.svg delete mode 100644 icons-optimized/user-x.svg delete mode 100644 icons-optimized/user.svg delete mode 100644 icons-optimized/users.svg delete mode 100644 icons-optimized/view-all.svg delete mode 100644 icons-optimized/viewfinder.svg delete mode 100644 icons-optimized/wifi-1.svg delete mode 100644 icons-optimized/wifi-2.svg delete mode 100644 icons-optimized/wifi-off.svg delete mode 100644 icons-optimized/wifi.svg delete mode 100644 icons-optimized/world.svg delete mode 100644 icons-optimized/writing.svg delete mode 100644 icons-optimized/x.svg delete mode 100644 icons-optimized/zoom-in.svg delete mode 100644 icons-optimized/zoom-out.svg delete mode 100644 icons-optimized/zoom-question.svg rename icons-original/{accent => _accent}/check_box.svg (100%) rename icons-original/{accent => _accent}/cloud-upload-accent.svg (100%) rename icons-original/{accent => _accent}/download-accent.svg (100%) rename icons-original/{accent => _accent}/mood.svg (100%) rename icons-original/{accent => _accent}/mood_gray.svg (100%) rename icons-original/{accent => _accent}/partially_checked.svg (100%) rename icons-original/{accent => _accent}/upload-accent.svg (100%) rename icons-original/{color => _color}/edits_logo_text.svg (100%) rename icons-original/{img => _img}/adobe_camera_raw.svg (100%) rename icons-original/{img => _img}/bridge.svg (100%) rename icons-original/{img => _img}/capture_one.svg (100%) rename icons-original/{img => _img}/drag_capture_one.svg (100%) rename icons-original/{img => _img}/drag_folder.svg (100%) rename icons-original/{img => _img}/drag_lr copy.svg (100%) rename icons-original/{img => _img}/drag_lr.svg (100%) rename icons-original/{img => _img}/drag_lrc.svg (100%) rename icons-original/{img => _img}/drag_photoshop.svg (100%) rename icons-original/{img => _img}/facebook_people.svg (100%) rename icons-original/{img => _img}/lessGrouping1.svg (100%) rename icons-original/{img => _img}/lessGrouping2.svg (100%) rename icons-original/{img => _img}/lightroom.svg (100%) rename icons-original/{img => _img}/lightroom_classic.svg (100%) rename icons-original/{img => _img}/moreGrouping1.svg (100%) rename icons-original/{img => _img}/moreGrouping2.svg (100%) rename icons-original/{mix => _mix}/Crown Play.svg (100%) rename icons-original/{mix => _mix}/check_box_empty.svg (100%) rename icons-original/{mix => _mix}/collection.svg (100%) rename icons-original/{mix => _mix}/flag-fill.svg (100%) rename icons-original/{mix => _mix}/folder-fill.svg (100%) rename icons-original/{mix => _mix}/home-mix.svg (100%) rename icons-original/{mix => _mix}/image-border.svg (100%) rename icons-original/{mix => _mix}/layout-sidebar-right-mix.svg (100%) rename icons-original/{mix => _mix}/mouse-left-2.svg (100%) rename icons-original/{mix => _mix}/no-duplicate.svg (100%) rename icons-original/{mix => _mix}/none-selected.svg (100%) rename icons-original/{mix => _mix}/recull.svg (100%) rename icons-original/{mix => _mix}/sparkle.svg (100%) rename icons-original/{mix => _mix}/star - 0.svg (100%) rename icons-original/{mix => _mix}/star - 1.svg (100%) rename icons-original/{mix => _mix}/star - 2.svg (100%) rename icons-original/{mix => _mix}/star - 3.svg (100%) rename icons-original/{mix => _mix}/star - 4.svg (100%) rename icons-original/{mix => _mix}/star - 5.svg (100%) rename icons-original/{mix => _mix}/star-fill.svg (100%) rename icons-original/{mix => _mix}/star-off-fill.svg (100%) rename icons-original/{mix => _mix}/upload-c1-cat.svg (100%) rename icons-original/{mix => _mix}/upload-lr-cat.svg (100%) rename icons-original/{not-include => _not-include}/add_folder.svg (100%) rename icons-original/{not-include => _not-include}/adobe_camera_raw.svg (100%) rename icons-original/{not-include => _not-include}/arrow_right.svg (100%) rename icons-original/{not-include => _not-include}/bridge.svg (100%) rename icons-original/{not-include => _not-include}/bulb.svg (100%) rename icons-original/{not-include => _not-include}/capture_one.svg (100%) rename icons-original/{not-include => _not-include}/checkIcon.svg (100%) rename icons-original/{not-include => _not-include}/circle-check_2.svg (100%) rename icons-original/{not-include => _not-include}/circleCheckFilled.svg (100%) rename icons-original/{not-include => _not-include}/circle_check.svg (100%) rename icons-original/{not-include => _not-include}/redirect.svg (100%) rename icons-original/{outline => _outline}/Import.svg (100%) rename icons-original/{outline => _outline}/adjustments-horizontal.svg (100%) rename icons-original/{outline => _outline}/adjustments.svg (100%) rename icons-original/{outline => _outline}/alarm.svg (100%) rename icons-original/{outline => _outline}/alert-circle.svg (100%) rename icons-original/{outline => _outline}/alert-octagon.svg (100%) rename icons-original/{outline => _outline}/alert-triangle.svg (100%) rename icons-original/{outline => _outline}/arrow-down.svg (100%) rename icons-original/{outline => _outline}/arrow-left.svg (100%) rename icons-original/{outline => _outline}/arrow-narrow-left.svg (100%) rename icons-original/{outline => _outline}/arrow-narrow-right.svg (100%) rename icons-original/{outline => _outline}/arrow-right.svg (100%) rename icons-original/{outline => _outline}/arrow-sort-2.svg (100%) rename icons-original/{outline => _outline}/arrow-up.svg (100%) rename icons-original/{outline => _outline}/arrows-diagonal.svg (100%) rename icons-original/{outline => _outline}/arrows-sort.svg (100%) rename icons-original/{outline => _outline}/atom.svg (100%) rename icons-original/{outline => _outline}/ban.svg (100%) rename icons-original/{outline => _outline}/bell-minus.svg (100%) rename icons-original/{outline => _outline}/bell-off.svg (100%) rename icons-original/{outline => _outline}/bell-plus.svg (100%) rename icons-original/{outline => _outline}/bell-ringing-2.svg (100%) rename icons-original/{outline => _outline}/bell-ringing.svg (100%) rename icons-original/{outline => _outline}/bell-x.svg (100%) rename icons-original/{outline => _outline}/bell.svg (100%) rename icons-original/{outline => _outline}/brand-facebook.svg (100%) rename icons-original/{outline => _outline}/brand-github.svg (100%) rename icons-original/{outline => _outline}/brand-instagram.svg (100%) rename icons-original/{outline => _outline}/brand-twitter.svg (100%) rename icons-original/{outline => _outline}/brand-whatsapp.svg (100%) rename icons-original/{outline => _outline}/brand-youtube.svg (100%) rename icons-original/{outline => _outline}/bulb-off.svg (100%) rename icons-original/{outline => _outline}/bulb.svg (100%) rename icons-original/{outline => _outline}/check.svg (100%) rename icons-original/{outline => _outline}/chevron-down.svg (100%) rename icons-original/{outline => _outline}/chevron-left.svg (100%) rename icons-original/{outline => _outline}/chevron-right.svg (100%) rename icons-original/{outline => _outline}/chevron-up.svg (100%) rename icons-original/{outline => _outline}/chevrons-left.svg (100%) rename icons-original/{outline => _outline}/chevrons-right.svg (100%) rename icons-original/{outline => _outline}/circle-check-2.svg (100%) rename icons-original/{outline => _outline}/circle-check.svg (100%) rename icons-original/{outline => _outline}/circle.svg (100%) rename icons-original/{outline => _outline}/clock.svg (100%) rename icons-original/{outline => _outline}/cloud-upload.svg (100%) rename icons-original/{outline => _outline}/color-swatch.svg (100%) rename icons-original/{outline => _outline}/confetti.svg (100%) rename icons-original/{outline => _outline}/copy.svg (100%) rename icons-original/{outline => _outline}/crown.svg (100%) rename icons-original/{outline => _outline}/currency-dollar.svg (100%) rename icons-original/{outline => _outline}/current-location.svg (100%) rename icons-original/{outline => _outline}/device-desktop-analytics.svg (100%) rename icons-original/{outline => _outline}/device-desktop-off.svg (100%) rename icons-original/{outline => _outline}/device-desktop.svg (100%) rename icons-original/{outline => _outline}/device-laptop.svg (100%) rename icons-original/{outline => _outline}/device-tv.svg (100%) rename icons-original/{outline => _outline}/diamond.svg (100%) rename icons-original/{outline => _outline}/discount-2.svg (100%) rename icons-original/{outline => _outline}/discount.svg (100%) rename icons-original/{outline => _outline}/disk.svg (100%) rename icons-original/{outline => _outline}/dots-vertical.svg (100%) rename icons-original/{outline => _outline}/download.svg (100%) rename icons-original/{outline => _outline}/edit.svg (100%) rename icons-original/{outline => _outline}/external-link.svg (100%) rename icons-original/{outline => _outline}/eye-check.svg (100%) rename icons-original/{outline => _outline}/eye-off.svg (100%) rename icons-original/{outline => _outline}/eye.svg (100%) rename icons-original/{outline => _outline}/file-download.svg (100%) rename icons-original/{outline => _outline}/file-export.svg (100%) rename icons-original/{outline => _outline}/file-report.svg (100%) rename icons-original/{outline => _outline}/file-search.svg (100%) rename icons-original/{outline => _outline}/filter-off.svg (100%) rename icons-original/{outline => _outline}/filter.svg (100%) rename icons-original/{outline => _outline}/flag-off.svg (100%) rename icons-original/{outline => _outline}/flag.svg (100%) rename icons-original/{outline => _outline}/folder-download.svg (100%) rename icons-original/{outline => _outline}/folder-eye.svg (100%) rename icons-original/{outline => _outline}/folder-minus.svg (100%) rename icons-original/{outline => _outline}/folder-off.svg (100%) rename icons-original/{outline => _outline}/folder-plus.svg (100%) rename icons-original/{outline => _outline}/folder-upload.svg (100%) rename icons-original/{outline => _outline}/folder-x.svg (100%) rename icons-original/{outline => _outline}/folder.svg (100%) rename icons-original/{outline => _outline}/folders.svg (100%) rename icons-original/{outline => _outline}/grid-dots.svg (100%) rename icons-original/{outline => _outline}/home-2.svg (100%) rename icons-original/{outline => _outline}/info-circle.svg (100%) rename icons-original/{outline => _outline}/info-cirlce-2.svg (100%) rename icons-original/{outline => _outline}/info-square.svg (100%) rename icons-original/{outline => _outline}/info.svg (100%) rename icons-original/{outline => _outline}/key-2.svg (100%) rename icons-original/{outline => _outline}/key-duplicate.svg (100%) rename icons-original/{outline => _outline}/key.svg (100%) rename icons-original/{outline => _outline}/link.svg (100%) rename icons-original/{outline => _outline}/loader.svg (100%) rename icons-original/{outline => _outline}/lock-2.svg (100%) rename icons-original/{outline => _outline}/lock-off.svg (100%) rename icons-original/{outline => _outline}/lock-open.svg (100%) rename icons-original/{outline => _outline}/lock.svg (100%) rename icons-original/{outline => _outline}/mail.svg (100%) rename icons-original/{outline => _outline}/map-2.svg (100%) rename icons-original/{outline => _outline}/map-pin-off.svg (100%) rename icons-original/{outline => _outline}/map-pin.svg (100%) rename icons-original/{outline => _outline}/minus.svg (100%) rename icons-original/{outline => _outline}/mood-crazy-happy.svg (100%) rename icons-original/{outline => _outline}/mood-empty.svg (100%) rename icons-original/{outline => _outline}/mood-sad.svg (100%) rename icons-original/{outline => _outline}/mood-smile.svg (100%) rename icons-original/{outline => _outline}/mouse-left.svg (100%) rename icons-original/{outline => _outline}/mouse-right.svg (100%) rename icons-original/{outline => _outline}/no-duplicate.svg (100%) rename icons-original/{outline => _outline}/palette.svg (100%) rename icons-original/{outline => _outline}/photo-off-2.svg (100%) rename icons-original/{outline => _outline}/photo-off.svg (100%) rename icons-original/{outline => _outline}/photo-stack.svg (100%) rename icons-original/{outline => _outline}/photo.svg (100%) rename icons-original/{outline => _outline}/pinned.svg (100%) rename icons-original/{outline => _outline}/plus.svg (100%) rename icons-original/{outline => _outline}/question-mark.svg (100%) rename icons-original/{outline => _outline}/redeem.svg (100%) rename icons-original/{outline => _outline}/refresh-2.svg (100%) rename icons-original/{outline => _outline}/refresh-alert.svg (100%) rename icons-original/{outline => _outline}/refresh.svg (100%) rename icons-original/{outline => _outline}/reload-alert.svg (100%) rename icons-original/{outline => _outline}/rotate-clockwise.svg (100%) rename icons-original/{outline => _outline}/rotate.svg (100%) rename icons-original/{outline => _outline}/search.svg (100%) rename icons-original/{outline => _outline}/share.svg (100%) rename icons-original/{outline => _outline}/shopping-cart-discount.svg (100%) rename icons-original/{outline => _outline}/shopping-cart.svg (100%) rename icons-original/{outline => _outline}/sort-ascending-2.svg (100%) rename icons-original/{outline => _outline}/sort-ascending-letters.svg (100%) rename icons-original/{outline => _outline}/sort-ascending-numbers.svg (100%) rename icons-original/{outline => _outline}/sort-ascending.svg (100%) rename icons-original/{outline => _outline}/sort-descending-2.svg (100%) rename icons-original/{outline => _outline}/sort-descending-letters.svg (100%) rename icons-original/{outline => _outline}/sort-descending-numbers.svg (100%) rename icons-original/{outline => _outline}/sort-descending.svg (100%) rename icons-original/{outline => _outline}/spray.svg (100%) rename icons-original/{outline => _outline}/spray_2.svg (100%) rename icons-original/{outline => _outline}/stack-double.svg (100%) rename icons-original/{outline => _outline}/stack-triple.svg (100%) rename icons-original/{outline => _outline}/star-off.svg (100%) rename icons-original/{outline => _outline}/star.svg (100%) rename icons-original/{outline => _outline}/thumb-down.svg (100%) rename icons-original/{outline => _outline}/thumb-up.svg (100%) rename icons-original/{outline => _outline}/trash-off.svg (100%) rename icons-original/{outline => _outline}/trash.svg (100%) rename icons-original/{outline => _outline}/unlink.svg (100%) rename icons-original/{outline => _outline}/upload-2.svg (100%) rename icons-original/{outline => _outline}/upload.svg (100%) rename icons-original/{outline => _outline}/user-check.svg (100%) rename icons-original/{outline => _outline}/user-exclamation.svg (100%) rename icons-original/{outline => _outline}/user-minus.svg (100%) rename icons-original/{outline => _outline}/user-off.svg (100%) rename icons-original/{outline => _outline}/user-plus.svg (100%) rename icons-original/{outline => _outline}/user-x.svg (100%) rename icons-original/{outline => _outline}/user.svg (100%) rename icons-original/{outline => _outline}/users.svg (100%) rename icons-original/{outline => _outline}/view-all.svg (100%) rename icons-original/{outline => _outline}/viewfinder.svg (100%) rename icons-original/{outline => _outline}/wifi-1.svg (100%) rename icons-original/{outline => _outline}/wifi-2.svg (100%) rename icons-original/{outline => _outline}/wifi-off.svg (100%) rename icons-original/{outline => _outline}/wifi.svg (100%) rename icons-original/{outline => _outline}/world.svg (100%) rename icons-original/{outline => _outline}/writing.svg (100%) rename icons-original/{outline => _outline}/x.svg (100%) rename icons-original/{outline => _outline}/zoom-in.svg (100%) rename icons-original/{outline => _outline}/zoom-out.svg (100%) rename icons-original/{outline => _outline}/zoom-question.svg (100%) rename icons-original/{weird => _weird}/aftershoot-credit.svg (100%) rename icons-original/{weird => _weird}/aftershoot_edit.svg (100%) rename icons-original/{weird => _weird}/check_box.svg (100%) rename icons-original/{weird => _weird}/cup.svg (100%) rename icons-original/{weird => _weird}/facebook.svg (100%) rename icons-original/{weird => _weird}/facebook_color.svg (100%) rename icons-original/{weird => _weird}/goodies.svg (100%) rename icons-original/{weird => _weird}/google-color.svg (100%) rename icons-original/{weird => _weird}/grab-hand.svg (100%) rename icons-original/{weird => _weird}/logo.svg (100%) rename icons-original/{weird => _weird}/thunder.svg (100%) rename icons-original/{weird => _weird}/twitter_color.svg (100%) delete mode 100644 icons-original/fill/apple-all.svg create mode 100644 icons-original/fill/apple.svg delete mode 100644 icons-original/fill/checkBlue.svg rename icons-original/fill/{ => di}/alert-circle-fill.svg (100%) rename icons-original/fill/{ => di}/alert-triangle-fill.svg (100%) delete mode 100644 scripts/default-attrsxxx.json create mode 100644 scripts/renderMetadataObj.mjs create mode 100644 scripts/writeSvgMetadata.mjs create mode 100644 src/icons-omega/Crown Play.tsx create mode 100644 src/icons-omega/aftershoot-logo.tsx create mode 100644 src/icons-omega/alert-circle-fill.tsx create mode 100644 src/icons-omega/alert-triangle-fill.tsx create mode 100644 src/icons-omega/apple-all.tsx create mode 100644 src/icons-omega/arrow-curve-fill.tsx create mode 100644 src/icons-omega/checkBlue.tsx create mode 100644 src/icons-omega/check_box.tsx create mode 100644 src/icons-omega/check_box_empty.tsx create mode 100644 src/icons-omega/circle-fill.tsx create mode 100644 src/icons-omega/cloud-upload-accent.tsx create mode 100644 src/icons-omega/collection.tsx create mode 100644 src/icons-omega/crown-2-fill.tsx create mode 100644 src/icons-omega/download-accent.tsx create mode 100644 src/icons-omega/facebook.tsx create mode 100644 src/icons-omega/flag-fill.tsx create mode 100644 src/icons-omega/folder-fill.tsx create mode 100644 src/icons-omega/grid-view-1.tsx create mode 100644 src/icons-omega/grid-view-2.tsx create mode 100644 src/icons-omega/home-mix.tsx create mode 100644 src/icons-omega/image-border.tsx create mode 100644 src/icons-omega/key-duplicate-fill.tsx create mode 100644 src/icons-omega/layout-sidebar-right-mix.tsx create mode 100644 src/icons-omega/list-fill.tsx create mode 100644 src/icons-omega/loop.tsx create mode 100644 src/icons-omega/loupe-fill.tsx create mode 100644 src/icons-omega/mood.tsx create mode 100644 src/icons-omega/mood_gray.tsx create mode 100644 src/icons-omega/mouse-left-2.tsx create mode 100644 src/icons-omega/none-selected.tsx create mode 100644 src/icons-omega/palette-fill.tsx create mode 100644 src/icons-omega/partially_checked.tsx create mode 100644 src/icons-omega/pause-fill.tsx create mode 100644 src/icons-omega/play-fill.tsx create mode 100644 src/icons-omega/recull.tsx create mode 100644 src/icons-omega/scissors-fill.tsx create mode 100644 src/icons-omega/sparkle.tsx create mode 100644 src/icons-omega/star - 0.tsx create mode 100644 src/icons-omega/star - 1.tsx create mode 100644 src/icons-omega/star - 2.tsx create mode 100644 src/icons-omega/star - 3.tsx create mode 100644 src/icons-omega/star - 4.tsx create mode 100644 src/icons-omega/star - 5.tsx create mode 100644 src/icons-omega/star-fill.tsx create mode 100644 src/icons-omega/star-off-fill.tsx create mode 100644 src/icons-omega/upload-accent.tsx create mode 100644 src/icons-omega/upload-c1-cat.tsx create mode 100644 src/icons-omega/upload-lr-cat.tsx create mode 100644 src/icons-test/aftershoot-logo.tsx create mode 100644 src/icons-test/apple.tsx create mode 100644 src/icons-test/arrow-curve-fill.tsx create mode 100644 src/icons-test/circle-fill.tsx create mode 100644 src/icons-test/crown-2-fill.tsx create mode 100644 src/icons-test/facebook.tsx create mode 100644 src/icons-test/grid-view-1.tsx create mode 100644 src/icons-test/grid-view-2.tsx create mode 100644 src/icons-test/index.ts create mode 100644 src/icons-test/key-duplicate-fill.tsx create mode 100644 src/icons-test/list-fill.tsx create mode 100644 src/icons-test/loop.tsx create mode 100644 src/icons-test/loupe-fill.tsx create mode 100644 src/icons-test/palette-fill.tsx create mode 100644 src/icons-test/pause-fill.tsx create mode 100644 src/icons-test/play-fill.tsx create mode 100644 src/icons-test/scissors-fill.tsx delete mode 100644 src/stories-omega/AlertTriangle.stories.tsx delete mode 100644 src/stories-omega/ArrowDown.stories.tsx delete mode 100644 src/stories-omega/ArrowLeft.stories.tsx delete mode 100644 src/stories-omega/ArrowNarrowLeft.stories.tsx delete mode 100644 src/stories-omega/ArrowNarrowRight.stories.tsx delete mode 100644 src/stories-omega/ArrowRight.stories.tsx delete mode 100644 src/stories-omega/ArrowSort2.stories.tsx delete mode 100644 src/stories-omega/ArrowUp.stories.tsx delete mode 100644 src/stories-omega/ArrowsDiagonal.stories.tsx delete mode 100644 src/stories-omega/ArrowsSort.stories.tsx delete mode 100644 src/stories-omega/Atom.stories.tsx delete mode 100644 src/stories-omega/Ban.stories.tsx delete mode 100644 src/stories-omega/Bell.stories.tsx delete mode 100644 src/stories-omega/BellMinus.stories.tsx delete mode 100644 src/stories-omega/BellOff.stories.tsx delete mode 100644 src/stories-omega/BellPlus.stories.tsx delete mode 100644 src/stories-omega/BellRinging.stories.tsx delete mode 100644 src/stories-omega/BellRinging2.stories.tsx delete mode 100644 src/stories-omega/BellX.stories.tsx delete mode 100644 src/stories-omega/BrandFacebook.stories.tsx delete mode 100644 src/stories-omega/BrandGithub.stories.tsx delete mode 100644 src/stories-omega/BrandInstagram.stories.tsx delete mode 100644 src/stories-omega/BrandTwitter.stories.tsx delete mode 100644 src/stories-omega/BrandWhatsapp.stories.tsx delete mode 100644 src/stories-omega/BrandYoutube.stories.tsx delete mode 100644 src/stories-omega/Bulb.stories.tsx delete mode 100644 src/stories-omega/BulbOff.stories.tsx delete mode 100644 src/stories-omega/Check.stories.tsx delete mode 100644 src/stories-omega/ChevronDown.stories.tsx delete mode 100644 src/stories-omega/ChevronLeft.stories.tsx delete mode 100644 src/stories-omega/ChevronRight.stories.tsx delete mode 100644 src/stories-omega/ChevronUp.stories.tsx delete mode 100644 src/stories-omega/ChevronsLeft.stories.tsx delete mode 100644 src/stories-omega/ChevronsRight.stories.tsx delete mode 100644 src/stories-omega/Circle.stories.tsx delete mode 100644 src/stories-omega/CircleCheck.stories.tsx delete mode 100644 src/stories-omega/CircleCheck2.stories.tsx delete mode 100644 src/stories-omega/Clock.stories.tsx delete mode 100644 src/stories-omega/CloudUpload.stories.tsx delete mode 100644 src/stories-omega/ColorSwatch.stories.tsx delete mode 100644 src/stories-omega/Confetti.stories.tsx delete mode 100644 src/stories-omega/Copy.stories.tsx delete mode 100644 src/stories-omega/Crown.stories.tsx delete mode 100644 src/stories-omega/CurrencyDollar.stories.tsx delete mode 100644 src/stories-omega/CurrentLocation.stories.tsx delete mode 100644 src/stories-omega/DeviceDesktop.stories.tsx delete mode 100644 src/stories-omega/DeviceDesktopAnalytics.stories.tsx delete mode 100644 src/stories-omega/DeviceDesktopOff.stories.tsx delete mode 100644 src/stories-omega/DeviceLaptop.stories.tsx delete mode 100644 src/stories-omega/DeviceTv.stories.tsx delete mode 100644 src/stories-omega/Diamond.stories.tsx delete mode 100644 src/stories-omega/Discount.stories.tsx delete mode 100644 src/stories-omega/Discount2.stories.tsx delete mode 100644 src/stories-omega/Disk.stories.tsx delete mode 100644 src/stories-omega/DotsVertical.stories.tsx delete mode 100644 src/stories-omega/Download.stories.tsx delete mode 100644 src/stories-omega/Edit.stories.tsx delete mode 100644 src/stories-omega/ExternalLink.stories.tsx delete mode 100644 src/stories-omega/Eye.stories.tsx delete mode 100644 src/stories-omega/EyeCheck.stories.tsx delete mode 100644 src/stories-omega/EyeOff.stories.tsx delete mode 100644 src/stories-omega/FileDownload.stories.tsx delete mode 100644 src/stories-omega/FileExport.stories.tsx delete mode 100644 src/stories-omega/FileReport.stories.tsx delete mode 100644 src/stories-omega/FileSearch.stories.tsx delete mode 100644 src/stories-omega/Filter.stories.tsx delete mode 100644 src/stories-omega/FilterOff.stories.tsx delete mode 100644 src/stories-omega/Flag.stories.tsx delete mode 100644 src/stories-omega/FlagOff.stories.tsx delete mode 100644 src/stories-omega/Folder.stories.tsx delete mode 100644 src/stories-omega/FolderDownload.stories.tsx delete mode 100644 src/stories-omega/FolderEye.stories.tsx delete mode 100644 src/stories-omega/FolderMinus.stories.tsx delete mode 100644 src/stories-omega/FolderOff.stories.tsx delete mode 100644 src/stories-omega/FolderPlus.stories.tsx delete mode 100644 src/stories-omega/FolderUpload.stories.tsx delete mode 100644 src/stories-omega/FolderX.stories.tsx delete mode 100644 src/stories-omega/Folders.stories.tsx delete mode 100644 src/stories-omega/GridDots.stories.tsx delete mode 100644 src/stories-omega/Home2.stories.tsx delete mode 100644 src/stories-omega/Import.stories.tsx delete mode 100644 src/stories-omega/Info.stories.tsx delete mode 100644 src/stories-omega/InfoCircle.stories.tsx delete mode 100644 src/stories-omega/InfoCirlce2.stories.tsx delete mode 100644 src/stories-omega/InfoSquare.stories.tsx delete mode 100644 src/stories-omega/Key.stories.tsx delete mode 100644 src/stories-omega/Key2.stories.tsx delete mode 100644 src/stories-omega/KeyDuplicate.stories.tsx delete mode 100644 src/stories-omega/Link.stories.tsx delete mode 100644 src/stories-omega/Loader.stories.tsx delete mode 100644 src/stories-omega/Lock.stories.tsx delete mode 100644 src/stories-omega/Lock2.stories.tsx delete mode 100644 src/stories-omega/LockOff.stories.tsx delete mode 100644 src/stories-omega/LockOpen.stories.tsx delete mode 100644 src/stories-omega/Mail.stories.tsx delete mode 100644 src/stories-omega/Map2.stories.tsx delete mode 100644 src/stories-omega/MapPin.stories.tsx delete mode 100644 src/stories-omega/MapPinOff.stories.tsx delete mode 100644 src/stories-omega/Minus.stories.tsx delete mode 100644 src/stories-omega/MoodCrazyHappy.stories.tsx delete mode 100644 src/stories-omega/MoodEmpty.stories.tsx delete mode 100644 src/stories-omega/MoodSad.stories.tsx delete mode 100644 src/stories-omega/MoodSmile.stories.tsx delete mode 100644 src/stories-omega/MouseLeft.stories.tsx delete mode 100644 src/stories-omega/MouseRight.stories.tsx delete mode 100644 src/stories-omega/NoDuplicate.stories.tsx delete mode 100644 src/stories-omega/Palette.stories.tsx delete mode 100644 src/stories-omega/Photo.stories.tsx delete mode 100644 src/stories-omega/PhotoOff.stories.tsx delete mode 100644 src/stories-omega/PhotoOff2.stories.tsx delete mode 100644 src/stories-omega/PhotoStack.stories.tsx delete mode 100644 src/stories-omega/Pinned.stories.tsx delete mode 100644 src/stories-omega/Plus.stories.tsx delete mode 100644 src/stories-omega/QuestionMark.stories.tsx delete mode 100644 src/stories-omega/Redeem.stories.tsx delete mode 100644 src/stories-omega/Refresh.stories.tsx delete mode 100644 src/stories-omega/Refresh2.stories.tsx delete mode 100644 src/stories-omega/RefreshAlert.stories.tsx delete mode 100644 src/stories-omega/ReloadAlert.stories.tsx delete mode 100644 src/stories-omega/Rotate.stories.tsx delete mode 100644 src/stories-omega/Rotate90.stories.tsx delete mode 100644 src/stories-omega/RotateClockwise.stories.tsx delete mode 100644 src/stories-omega/Search.stories.tsx delete mode 100644 src/stories-omega/Share.stories.tsx delete mode 100644 src/stories-omega/ShoppingCart.stories.tsx delete mode 100644 src/stories-omega/ShoppingCartDiscount.stories.tsx delete mode 100644 src/stories-omega/SortAscending.stories.tsx delete mode 100644 src/stories-omega/SortAscending2.stories.tsx delete mode 100644 src/stories-omega/SortAscendingLetters.stories.tsx delete mode 100644 src/stories-omega/SortAscendingNumbers.stories.tsx delete mode 100644 src/stories-omega/SortDescending.stories.tsx delete mode 100644 src/stories-omega/SortDescending2.stories.tsx delete mode 100644 src/stories-omega/SortDescendingLetters.stories.tsx delete mode 100644 src/stories-omega/SortDescendingNumbers.stories.tsx delete mode 100644 src/stories-omega/Spray.stories.tsx delete mode 100644 src/stories-omega/Spray2.stories.tsx delete mode 100644 src/stories-omega/Stack.stories.tsx delete mode 100644 src/stories-omega/Stack2.stories.tsx delete mode 100644 src/stories-omega/StackDouble.stories.tsx delete mode 100644 src/stories-omega/StackTriple.stories.tsx delete mode 100644 src/stories-omega/Star.stories.tsx delete mode 100644 src/stories-omega/StarOff.stories.tsx delete mode 100644 src/stories-omega/ThumbDown.stories.tsx delete mode 100644 src/stories-omega/ThumbUp.stories.tsx delete mode 100644 src/stories-omega/Trash.stories.tsx delete mode 100644 src/stories-omega/TrashOff.stories.tsx delete mode 100644 src/stories-omega/Unlink.stories.tsx delete mode 100644 src/stories-omega/Upload.stories.tsx delete mode 100644 src/stories-omega/Upload2.stories.tsx delete mode 100644 src/stories-omega/User.stories.tsx delete mode 100644 src/stories-omega/UserCheck.stories.tsx delete mode 100644 src/stories-omega/UserExclamation.stories.tsx delete mode 100644 src/stories-omega/UserMinus.stories.tsx delete mode 100644 src/stories-omega/UserOff.stories.tsx delete mode 100644 src/stories-omega/UserPlus.stories.tsx delete mode 100644 src/stories-omega/UserX.stories.tsx delete mode 100644 src/stories-omega/Users.stories.tsx delete mode 100644 src/stories-omega/ViewAll.stories.tsx delete mode 100644 src/stories-omega/Viewfinder.stories.tsx delete mode 100644 src/stories-omega/Wifi.stories.tsx delete mode 100644 src/stories-omega/Wifi1.stories.tsx delete mode 100644 src/stories-omega/Wifi2.stories.tsx delete mode 100644 src/stories-omega/WifiOff.stories.tsx delete mode 100644 src/stories-omega/World.stories.tsx delete mode 100644 src/stories-omega/Writing.stories.tsx delete mode 100644 src/stories-omega/X.stories.tsx delete mode 100644 src/stories-omega/ZoomIn.stories.tsx delete mode 100644 src/stories-omega/ZoomOut.stories.tsx delete mode 100644 src/stories-omega/ZoomQuestion.stories.tsx delete mode 100644 src/stories/AdjustmentIcon.stories.tsx delete mode 100644 src/stories/AfterShootLogoIcon.stories.tsx delete mode 100644 src/stories/AftershootEditIcon.stories.tsx create mode 100644 src/stories/AftershootLogo.stories.tsx delete mode 100644 src/stories/AftershootWhiteIcon.stories.tsx delete mode 100644 src/stories/AlertCircleIcon.stories.tsx delete mode 100644 src/stories/AlertFillIcon.stories.tsx delete mode 100644 src/stories/AlertFillTriangleIcon.stories.tsx delete mode 100644 src/stories/AlertHexagonBgIcon.stories.tsx delete mode 100644 src/stories/AlertHexagonIcon.stories.tsx delete mode 100644 src/stories/AlertTriangleBgIcon.stories.tsx delete mode 100644 src/stories/AlertTriangleIcon.stories.tsx rename src/{stories-omega/AlertOctagon.stories.tsx => stories/Apple.stories.tsx} (81%) delete mode 100644 src/stories/AppleIcon.stories.tsx create mode 100644 src/stories/ArrowCurveFill.stories.tsx delete mode 100644 src/stories/ArrowCurveIcon.stories.tsx delete mode 100644 src/stories/ArrowDownIcon.stories.tsx delete mode 100644 src/stories/ArrowFillRightIcon.stories.tsx delete mode 100644 src/stories/ArrowFillUpIcon.stories.tsx delete mode 100644 src/stories/ArrowLeftIcon.stories.tsx delete mode 100644 src/stories/ArrowRightIcon.stories.tsx delete mode 100644 src/stories/ArrowUpIcon.stories.tsx delete mode 100644 src/stories/BorderColorIcon.stories.tsx delete mode 100644 src/stories/BulbIcon.stories.tsx delete mode 100644 src/stories/C1UploadIcon.stories.tsx delete mode 100644 src/stories/CaptureOneIcon.stories.tsx delete mode 100644 src/stories/CardBgIcon.stories.tsx delete mode 100644 src/stories/CartIcon.stories.tsx delete mode 100644 src/stories/CelebrateIcon.stories.tsx delete mode 100644 src/stories/CheckBoxEmptyIcon.stories.tsx delete mode 100644 src/stories/CheckBoxIcon.stories.tsx delete mode 100644 src/stories/CheckBoxPartialIcon.stories.tsx delete mode 100644 src/stories/CheckCircleBgIcon.stories.tsx delete mode 100644 src/stories/CheckCircleIcon.stories.tsx delete mode 100644 src/stories/CheckFillCircleIcon.stories.tsx delete mode 100644 src/stories/CheckFillIcon.stories.tsx delete mode 100644 src/stories/CheckIcon.stories.tsx delete mode 100644 src/stories/ChevronDownIcon.stories.tsx delete mode 100644 src/stories/ChevronLeftIcon.stories.tsx delete mode 100644 src/stories/ChevronRightIcon.stories.tsx delete mode 100644 src/stories/ChevronUpIcon.stories.tsx rename src/{stories-omega/AdjustmentsHorizontal.stories.tsx => stories/CircleFill.stories.tsx} (80%) delete mode 100644 src/stories/CircleFillIcon.stories.tsx delete mode 100644 src/stories/CircleIcon.stories.tsx delete mode 100644 src/stories/ClockIcon.stories.tsx delete mode 100644 src/stories/CloseCircleIcon.stories.tsx delete mode 100644 src/stories/CloseIcon.stories.tsx delete mode 100644 src/stories/CollectionsIcon.stories.tsx delete mode 100644 src/stories/ColorPaletteIcon.stories.tsx delete mode 100644 src/stories/ComputerBgIcon.stories.tsx delete mode 100644 src/stories/ComputerIcon.stories.tsx delete mode 100644 src/stories/ConfettiIcon.stories.tsx delete mode 100644 src/stories/ConfettiLeftScreen.stories.tsx delete mode 100644 src/stories/ConfettiRightScreen.stories.tsx delete mode 100644 src/stories/ConfettiSideScreen.stories.tsx delete mode 100644 src/stories/ContactSupportIcon.stories.tsx delete mode 100644 src/stories/CopyContentIcon.stories.tsx delete mode 100644 src/stories/CopyIcon.stories.tsx delete mode 100644 src/stories/CouponIcon.stories.tsx delete mode 100644 src/stories/CreateProfileIcon.stories.tsx delete mode 100644 src/stories/CreditIcon.stories.tsx delete mode 100644 src/stories/CrossCircleIcon.stories.tsx delete mode 100644 src/stories/CrossIcon.stories.tsx create mode 100644 src/stories/Crown2Fill.stories.tsx delete mode 100644 src/stories/CrownBgIcon.stories.tsx delete mode 100644 src/stories/CrownIcon.stories.tsx delete mode 100644 src/stories/DecrementIcon.stories.tsx delete mode 100644 src/stories/DeleteIcon.stories.tsx delete mode 100644 src/stories/DeleteWhiteIcon.stories.tsx delete mode 100644 src/stories/DiamondIcon.stories.tsx delete mode 100644 src/stories/DollarIcon.stories.tsx delete mode 100644 src/stories/DotsVerticalIcon.stories.tsx delete mode 100644 src/stories/DownloadIcon.stories.tsx delete mode 100644 src/stories/DragBridgeIcon.stories.tsx delete mode 100644 src/stories/DragCaptureOneIcon.stories.tsx delete mode 100644 src/stories/DragFolderIcon.stories.tsx delete mode 100644 src/stories/DragLrIcon.stories.tsx delete mode 100644 src/stories/DragLrcIcon.stories.tsx delete mode 100644 src/stories/DragPhotoshopIcon.stories.tsx delete mode 100644 src/stories/DrawerIcon.stories.tsx delete mode 100644 src/stories/DublicateStackIcon.stories.tsx delete mode 100644 src/stories/DuplicateFillIcon.stories.tsx delete mode 100644 src/stories/DuplicateIcon.stories.tsx delete mode 100644 src/stories/EditAlbumNameIcon.stories.tsx delete mode 100644 src/stories/EditIcon.stories.tsx delete mode 100644 src/stories/EditPhotoIcon.stories.tsx delete mode 100644 src/stories/EditProgressIcon.stories.tsx delete mode 100644 src/stories/EditsLogoTextIcon.stories.tsx delete mode 100644 src/stories/ExitAppBgIcon.stories.tsx delete mode 100644 src/stories/ExpandIcon.stories.tsx delete mode 100644 src/stories/ExportIcon.stories.tsx delete mode 100644 src/stories/EyeCheckedIcon.stories.tsx delete mode 100644 src/stories/EyeCrossedIcon.stories.tsx delete mode 100644 src/stories/EyeIcon.stories.tsx rename src/{stories-omega/Alarm.stories.tsx => stories/Facebook.stories.tsx} (80%) delete mode 100644 src/stories/FacebookBgIcon.stories.tsx delete mode 100644 src/stories/FacebookIcon.stories.tsx delete mode 100644 src/stories/FacebookOutlineIcon.stories.tsx delete mode 100644 src/stories/FacebookPeopleIcon.stories.tsx delete mode 100644 src/stories/FailFillBgIcon.stories.tsx delete mode 100644 src/stories/FailFillIcon.stories.tsx delete mode 100644 src/stories/FileSearchIcon.stories.tsx delete mode 100644 src/stories/FilterCircleIcon.stories.tsx delete mode 100644 src/stories/FilterIcon.stories.tsx delete mode 100644 src/stories/FinderIcon.stories.tsx delete mode 100644 src/stories/FiveStarBgIcon.stories.tsx delete mode 100644 src/stories/FlagFillIcon.stories.tsx delete mode 100644 src/stories/FlagOutlineCrossedIcon.stories.tsx delete mode 100644 src/stories/FlagOutlineIcon.stories.tsx delete mode 100644 src/stories/FolderCrossedIcon.stories.tsx delete mode 100644 src/stories/FolderFillIcon.stories.tsx delete mode 100644 src/stories/FolderOutlineBgIcon.stories.tsx delete mode 100644 src/stories/FullScreenIcon.stories.tsx delete mode 100644 src/stories/GlobalIcon.stories.tsx delete mode 100644 src/stories/GoogleColorIcon.stories.tsx delete mode 100644 src/stories/GridBgIcon.stories.tsx delete mode 100644 src/stories/GridDotsIcon.stories.tsx delete mode 100644 src/stories/GridIcon.stories.tsx delete mode 100644 src/stories/GridThreeLitIcon.stories.tsx delete mode 100644 src/stories/GridTwoLitIcon.stories.tsx create mode 100644 src/stories/GridView1.stories.tsx create mode 100644 src/stories/GridView2.stories.tsx delete mode 100644 src/stories/GroupingLessIcon.stories.tsx delete mode 100644 src/stories/GroupingMoreIcon.stories.tsx delete mode 100644 src/stories/HomeIcon.stories.tsx delete mode 100644 src/stories/ImageBorderCircleIcon.stories.tsx delete mode 100644 src/stories/ImageBorderIcon.stories.tsx delete mode 100644 src/stories/ImageCrossedBgIcon.stories.tsx delete mode 100644 src/stories/ImageCrossedIcon.stories.tsx delete mode 100644 src/stories/ImageIcon.stories.tsx delete mode 100644 src/stories/ImageStackIcon.stories.tsx delete mode 100644 src/stories/InfoBgIcon.stories.tsx delete mode 100644 src/stories/InfoCircleIcon.stories.tsx delete mode 100644 src/stories/InstagramIcon.stories.tsx delete mode 100644 src/stories/KeyCircleIcon.stories.tsx create mode 100644 src/stories/KeyDuplicateFill.stories.tsx delete mode 100644 src/stories/KeyIcon.stories.tsx delete mode 100644 src/stories/LightroomClassicIcon.stories.tsx delete mode 100644 src/stories/LightroomIcon.stories.tsx delete mode 100644 src/stories/LinkIcon.stories.tsx rename src/{stories-omega/AlertCircle.stories.tsx => stories/ListFill.stories.tsx} (80%) delete mode 100644 src/stories/ListNotSelectedIcon.stories.tsx delete mode 100644 src/stories/ListSelectedIcon.stories.tsx delete mode 100644 src/stories/LoaderIcon.stories.tsx delete mode 100644 src/stories/LockIcon.stories.tsx rename src/{stories-omega/Adjustments.stories.tsx => stories/Loop.stories.tsx} (81%) delete mode 100644 src/stories/LoopIcon.stories.tsx create mode 100644 src/stories/LoupeFill.stories.tsx delete mode 100644 src/stories/LoupeIcon.stories.tsx delete mode 100644 src/stories/LrUploadIcon.stories.tsx delete mode 100644 src/stories/MailBgIcon.stories.tsx delete mode 100644 src/stories/MaximizeIcon.stories.tsx delete mode 100644 src/stories/MenuIcon.stories.tsx delete mode 100644 src/stories/MinimizeIcon.stories.tsx delete mode 100644 src/stories/MoneyBagIcon.stories.tsx delete mode 100644 src/stories/MoodIcon.stories.tsx delete mode 100644 src/stories/MouseLeftClick.stories.tsx delete mode 100644 src/stories/MouseLeftClickCircleIcon.stories.tsx delete mode 100644 src/stories/MouseRightClick.stories.tsx delete mode 100644 src/stories/MoveBgIcon.stories.tsx delete mode 100644 src/stories/NoDuplicateIcon.stories.tsx delete mode 100644 src/stories/NoneIconIcon.stories.tsx delete mode 100644 src/stories/NoneSelectedIcon.stories.tsx delete mode 100644 src/stories/NotAllowIcon.stories.tsx delete mode 100644 src/stories/NotSelectedCircleIcon.stories.tsx delete mode 100644 src/stories/OpenlinkIcon.stories.tsx create mode 100644 src/stories/PaletteFill.stories.tsx delete mode 100644 src/stories/PauseBgIcon.stories.tsx create mode 100644 src/stories/PauseFill.stories.tsx delete mode 100644 src/stories/PersonPlusIcon.stories.tsx delete mode 100644 src/stories/PersonTwoIcon.stories.tsx delete mode 100644 src/stories/PipeIcon.stories.tsx delete mode 100644 src/stories/PlayBgIcon.stories.tsx delete mode 100644 src/stories/PlayCircleIcon.stories.tsx create mode 100644 src/stories/PlayFill.stories.tsx delete mode 100644 src/stories/PlusBgIcon.stories.tsx delete mode 100644 src/stories/PowerHighIcon.stories.tsx delete mode 100644 src/stories/PowerLowIcon.stories.tsx delete mode 100644 src/stories/PowerMidIcon.stories.tsx delete mode 100644 src/stories/QuestionMarkCircleIcon.stories.tsx delete mode 100644 src/stories/QuestionMarkIcon.stories.tsx delete mode 100644 src/stories/RecullIcon.stories.tsx delete mode 100644 src/stories/RefreshIcon.stories.tsx delete mode 100644 src/stories/ReloadWarningIcon.stories.tsx delete mode 100644 src/stories/ReverticonIcon.stories.tsx delete mode 100644 src/stories/RightSignIcon.stories.tsx delete mode 100644 src/stories/RotateIcon.stories.tsx delete mode 100644 src/stories/RotateLeftSquareIcon.stories.tsx delete mode 100644 src/stories/RotateRightSquareIcon.stories.tsx create mode 100644 src/stories/ScissorsFill.stories.tsx delete mode 100644 src/stories/ScissorsIcon.stories.tsx delete mode 100644 src/stories/SearchIcon.stories.tsx delete mode 100644 src/stories/SelectedFillCircleIcon.stories.tsx delete mode 100644 src/stories/ShareIcon.stories.tsx delete mode 100644 src/stories/ShowDuplicateIcon.stories.tsx delete mode 100644 src/stories/SmileyHappyIcon.stories.tsx delete mode 100644 src/stories/SmileySadIcon.stories.tsx delete mode 100644 src/stories/SortCircleIcon.stories.tsx delete mode 100644 src/stories/SortDuplicateCircleIcon.stories.tsx delete mode 100644 src/stories/SortDuplicatesIcon.stories.tsx delete mode 100644 src/stories/SortIcon.stories.tsx delete mode 100644 src/stories/SortOptionAlphaIcon.stories.tsx delete mode 100644 src/stories/SortOptionNumIcon.stories.tsx delete mode 100644 src/stories/SparkleIcon.stories.tsx delete mode 100644 src/stories/SprayBgIcon.stories.tsx delete mode 100644 src/stories/SprayCanIcon.stories.tsx delete mode 100644 src/stories/SprayCircleIcon.stories.tsx delete mode 100644 src/stories/StackThreeIcon.stories.tsx delete mode 100644 src/stories/StackTwoIcon.stories.tsx delete mode 100644 src/stories/StarCrossedIcon.stories.tsx delete mode 100644 src/stories/StarIcon.stories.tsx delete mode 100644 src/stories/StorageCrossedIcon.stories.tsx delete mode 100644 src/stories/SuccessIcon.stories.tsx delete mode 100644 src/stories/SurveyModeIcon.stories.tsx delete mode 100644 src/stories/ThumbDownBgIcon.stories.tsx delete mode 100644 src/stories/ThumbUpBgIcon.stories.tsx delete mode 100644 src/stories/ThunderBgIcon.stories.tsx delete mode 100644 src/stories/TrainBgIcon.stories.tsx delete mode 100644 src/stories/TrophyColorIcon.stories.tsx delete mode 100644 src/stories/TwitterIcon.stories.tsx delete mode 100644 src/stories/TwitterOutlineIcon.stories.tsx delete mode 100644 src/stories/UploadBgIcon.stories.tsx delete mode 100644 src/stories/UploadCloudIcon.stories.tsx delete mode 100644 src/stories/UploadFolder.stories.tsx delete mode 100644 src/stories/UploadIcon.stories.tsx delete mode 100644 src/stories/UploadIconIcon.stories.tsx delete mode 100644 src/stories/ViewAllIcon.stories.tsx delete mode 100644 src/stories/WhatsappIcon.stories.tsx delete mode 100644 src/stories/WifiCrossedBgIcon.stories.tsx delete mode 100644 src/stories/WifiCrossedIcon.stories.tsx delete mode 100644 src/stories/XIcon.stories.tsx delete mode 100644 src/stories/ZoomCircleIcon.stories.tsx delete mode 100644 src/stories/ZoomIcon.stories.tsx diff --git a/icons-optimized/Import.svg b/icons-optimized/Import.svg deleted file mode 100644 index a42b451f..00000000 --- a/icons-optimized/Import.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg deleted file mode 100644 index 30179e00..00000000 --- a/icons-optimized/adjustments-horizontal.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/adjustments.svg b/icons-optimized/adjustments.svg deleted file mode 100644 index 0023446f..00000000 --- a/icons-optimized/adjustments.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/aftershoot-logo.json b/icons-optimized/aftershoot-logo.json new file mode 100644 index 00000000..68b44467 --- /dev/null +++ b/icons-optimized/aftershoot-logo.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "aftershoot-logo", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/aftershoot-logo.svg b/icons-optimized/aftershoot-logo.svg new file mode 100644 index 00000000..5d8f1cab --- /dev/null +++ b/icons-optimized/aftershoot-logo.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/alarm.svg b/icons-optimized/alarm.svg deleted file mode 100644 index bbd24741..00000000 --- a/icons-optimized/alarm.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle.svg deleted file mode 100644 index 5ba0b704..00000000 --- a/icons-optimized/alert-circle.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/alert-octagon.svg b/icons-optimized/alert-octagon.svg deleted file mode 100644 index 64e4bc5f..00000000 --- a/icons-optimized/alert-octagon.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg deleted file mode 100644 index 80fb824f..00000000 --- a/icons-optimized/alert-triangle.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/apple.json b/icons-optimized/apple.json new file mode 100644 index 00000000..5e114c61 --- /dev/null +++ b/icons-optimized/apple.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "apple", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/apple.svg b/icons-optimized/apple.svg new file mode 100644 index 00000000..682cce85 --- /dev/null +++ b/icons-optimized/apple.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/arrow-curve-fill.json b/icons-optimized/arrow-curve-fill.json new file mode 100644 index 00000000..a1f17314 --- /dev/null +++ b/icons-optimized/arrow-curve-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "arrow-curve-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/arrow-curve-fill.svg b/icons-optimized/arrow-curve-fill.svg new file mode 100644 index 00000000..c277b8f9 --- /dev/null +++ b/icons-optimized/arrow-curve-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down.svg deleted file mode 100644 index 69983d0c..00000000 --- a/icons-optimized/arrow-down.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left.svg deleted file mode 100644 index a3650ecb..00000000 --- a/icons-optimized/arrow-left.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left.svg deleted file mode 100644 index d27b1429..00000000 --- a/icons-optimized/arrow-narrow-left.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right.svg deleted file mode 100644 index 03f095fd..00000000 --- a/icons-optimized/arrow-narrow-right.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right.svg deleted file mode 100644 index 554569ae..00000000 --- a/icons-optimized/arrow-right.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrow-sort-2.svg b/icons-optimized/arrow-sort-2.svg deleted file mode 100644 index d4b7cef6..00000000 --- a/icons-optimized/arrow-sort-2.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up.svg deleted file mode 100644 index e2b3e66c..00000000 --- a/icons-optimized/arrow-up.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/arrows-diagonal.svg b/icons-optimized/arrows-diagonal.svg deleted file mode 100644 index 2b05b5b0..00000000 --- a/icons-optimized/arrows-diagonal.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/arrows-sort.svg b/icons-optimized/arrows-sort.svg deleted file mode 100644 index 5659ab8c..00000000 --- a/icons-optimized/arrows-sort.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/atom.svg b/icons-optimized/atom.svg deleted file mode 100644 index 811184f1..00000000 --- a/icons-optimized/atom.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/ban.svg b/icons-optimized/ban.svg deleted file mode 100644 index 4c4dfcd8..00000000 --- a/icons-optimized/ban.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/bell-minus.svg b/icons-optimized/bell-minus.svg deleted file mode 100644 index 03c63293..00000000 --- a/icons-optimized/bell-minus.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/bell-off.svg b/icons-optimized/bell-off.svg deleted file mode 100644 index 18fd7870..00000000 --- a/icons-optimized/bell-off.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/bell-plus.svg b/icons-optimized/bell-plus.svg deleted file mode 100644 index b66b9c37..00000000 --- a/icons-optimized/bell-plus.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/bell-ringing-2.svg b/icons-optimized/bell-ringing-2.svg deleted file mode 100644 index 5adf2461..00000000 --- a/icons-optimized/bell-ringing-2.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/bell-ringing.svg b/icons-optimized/bell-ringing.svg deleted file mode 100644 index 750c2289..00000000 --- a/icons-optimized/bell-ringing.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/bell-x.svg b/icons-optimized/bell-x.svg deleted file mode 100644 index 9eb04ec6..00000000 --- a/icons-optimized/bell-x.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/bell.svg b/icons-optimized/bell.svg deleted file mode 100644 index 48a4352f..00000000 --- a/icons-optimized/bell.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/brand-facebook.svg b/icons-optimized/brand-facebook.svg deleted file mode 100644 index 62ddc064..00000000 --- a/icons-optimized/brand-facebook.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/brand-github.svg b/icons-optimized/brand-github.svg deleted file mode 100644 index c0da6b60..00000000 --- a/icons-optimized/brand-github.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/brand-instagram.svg b/icons-optimized/brand-instagram.svg deleted file mode 100644 index d25e2c01..00000000 --- a/icons-optimized/brand-instagram.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/brand-twitter.svg b/icons-optimized/brand-twitter.svg deleted file mode 100644 index 929a2468..00000000 --- a/icons-optimized/brand-twitter.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/brand-whatsapp.svg b/icons-optimized/brand-whatsapp.svg deleted file mode 100644 index 590e4b1d..00000000 --- a/icons-optimized/brand-whatsapp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/brand-youtube.svg b/icons-optimized/brand-youtube.svg deleted file mode 100644 index f738e62c..00000000 --- a/icons-optimized/brand-youtube.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off.svg deleted file mode 100644 index 1a634c7d..00000000 --- a/icons-optimized/bulb-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb.svg deleted file mode 100644 index 5b6fbf75..00000000 --- a/icons-optimized/bulb.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/check.svg b/icons-optimized/check.svg deleted file mode 100644 index c3e4cc88..00000000 --- a/icons-optimized/check.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg deleted file mode 100644 index 89cdd4b6..00000000 --- a/icons-optimized/chevron-down.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg deleted file mode 100644 index e65a1eaa..00000000 --- a/icons-optimized/chevron-left.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg deleted file mode 100644 index 5a7d150e..00000000 --- a/icons-optimized/chevron-right.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg deleted file mode 100644 index 88a2b1ae..00000000 --- a/icons-optimized/chevron-up.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/chevrons-left.svg b/icons-optimized/chevrons-left.svg deleted file mode 100644 index 5d149ef0..00000000 --- a/icons-optimized/chevrons-left.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/chevrons-right.svg b/icons-optimized/chevrons-right.svg deleted file mode 100644 index 557139e1..00000000 --- a/icons-optimized/chevrons-right.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/circle-check-2.svg b/icons-optimized/circle-check-2.svg deleted file mode 100644 index 88bc31fa..00000000 --- a/icons-optimized/circle-check-2.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check.svg deleted file mode 100644 index b79835c6..00000000 --- a/icons-optimized/circle-check.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/circle-fill.json b/icons-optimized/circle-fill.json new file mode 100644 index 00000000..30109372 --- /dev/null +++ b/icons-optimized/circle-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "circle-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/circle-fill.svg b/icons-optimized/circle-fill.svg new file mode 100644 index 00000000..c1ad7a36 --- /dev/null +++ b/icons-optimized/circle-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/circle.svg b/icons-optimized/circle.svg deleted file mode 100644 index 18ee1886..00000000 --- a/icons-optimized/circle.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/clock.svg b/icons-optimized/clock.svg deleted file mode 100644 index d75b8eb9..00000000 --- a/icons-optimized/clock.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/cloud-upload.svg b/icons-optimized/cloud-upload.svg deleted file mode 100644 index 0e0a9c6b..00000000 --- a/icons-optimized/cloud-upload.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/color-swatch.svg b/icons-optimized/color-swatch.svg deleted file mode 100644 index ceb1affb..00000000 --- a/icons-optimized/color-swatch.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/confetti.svg b/icons-optimized/confetti.svg deleted file mode 100644 index f70cb1cc..00000000 --- a/icons-optimized/confetti.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/copy.svg b/icons-optimized/copy.svg deleted file mode 100644 index d2687d00..00000000 --- a/icons-optimized/copy.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/crown-2-fill.json b/icons-optimized/crown-2-fill.json new file mode 100644 index 00000000..6aec2724 --- /dev/null +++ b/icons-optimized/crown-2-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "crown-2-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/crown-2-fill.svg b/icons-optimized/crown-2-fill.svg new file mode 100644 index 00000000..d2e5a0e0 --- /dev/null +++ b/icons-optimized/crown-2-fill.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/crown.svg b/icons-optimized/crown.svg deleted file mode 100644 index b3072580..00000000 --- a/icons-optimized/crown.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/currency-dollar.svg b/icons-optimized/currency-dollar.svg deleted file mode 100644 index 025ce096..00000000 --- a/icons-optimized/currency-dollar.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/current-location.svg b/icons-optimized/current-location.svg deleted file mode 100644 index c996f126..00000000 --- a/icons-optimized/current-location.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons-optimized/device-desktop-analytics.svg b/icons-optimized/device-desktop-analytics.svg deleted file mode 100644 index 7ee4df16..00000000 --- a/icons-optimized/device-desktop-analytics.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/device-desktop-off.svg b/icons-optimized/device-desktop-off.svg deleted file mode 100644 index 77badf3a..00000000 --- a/icons-optimized/device-desktop-off.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/device-desktop.svg b/icons-optimized/device-desktop.svg deleted file mode 100644 index ce57ae55..00000000 --- a/icons-optimized/device-desktop.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/device-laptop.svg b/icons-optimized/device-laptop.svg deleted file mode 100644 index 55aeecd5..00000000 --- a/icons-optimized/device-laptop.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/device-tv.svg b/icons-optimized/device-tv.svg deleted file mode 100644 index c355ab64..00000000 --- a/icons-optimized/device-tv.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/diamond.svg b/icons-optimized/diamond.svg deleted file mode 100644 index 5dffd4f6..00000000 --- a/icons-optimized/diamond.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/discount-2.svg b/icons-optimized/discount-2.svg deleted file mode 100644 index 6a81c637..00000000 --- a/icons-optimized/discount-2.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/discount.svg b/icons-optimized/discount.svg deleted file mode 100644 index c202ceff..00000000 --- a/icons-optimized/discount.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/disk.svg b/icons-optimized/disk.svg deleted file mode 100644 index 1cc0faec..00000000 --- a/icons-optimized/disk.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - diff --git a/icons-optimized/dots-vertical.svg b/icons-optimized/dots-vertical.svg deleted file mode 100644 index b1c0cbb0..00000000 --- a/icons-optimized/dots-vertical.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/download.svg b/icons-optimized/download.svg deleted file mode 100644 index a42b451f..00000000 --- a/icons-optimized/download.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/edit.svg b/icons-optimized/edit.svg deleted file mode 100644 index f5fa609b..00000000 --- a/icons-optimized/edit.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/external-link.svg b/icons-optimized/external-link.svg deleted file mode 100644 index 118dc490..00000000 --- a/icons-optimized/external-link.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/eye-check.svg b/icons-optimized/eye-check.svg deleted file mode 100644 index a80dabd7..00000000 --- a/icons-optimized/eye-check.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/eye-off.svg b/icons-optimized/eye-off.svg deleted file mode 100644 index 3ed8ad28..00000000 --- a/icons-optimized/eye-off.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/eye.svg b/icons-optimized/eye.svg deleted file mode 100644 index 791be93e..00000000 --- a/icons-optimized/eye.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/facebook.json b/icons-optimized/facebook.json new file mode 100644 index 00000000..34bea1d6 --- /dev/null +++ b/icons-optimized/facebook.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "facebook", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/facebook.svg b/icons-optimized/facebook.svg new file mode 100644 index 00000000..c0b2c111 --- /dev/null +++ b/icons-optimized/facebook.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/file-download.svg b/icons-optimized/file-download.svg deleted file mode 100644 index 9a233458..00000000 --- a/icons-optimized/file-download.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/file-export.svg b/icons-optimized/file-export.svg deleted file mode 100644 index f3c3ee4c..00000000 --- a/icons-optimized/file-export.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/file-report.svg b/icons-optimized/file-report.svg deleted file mode 100644 index 62f8576e..00000000 --- a/icons-optimized/file-report.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/file-search.svg b/icons-optimized/file-search.svg deleted file mode 100644 index 3855de56..00000000 --- a/icons-optimized/file-search.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/filter-off.svg b/icons-optimized/filter-off.svg deleted file mode 100644 index 40dad92f..00000000 --- a/icons-optimized/filter-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/filter.svg b/icons-optimized/filter.svg deleted file mode 100644 index 2373a415..00000000 --- a/icons-optimized/filter.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/flag-off.svg b/icons-optimized/flag-off.svg deleted file mode 100644 index 9572c1f3..00000000 --- a/icons-optimized/flag-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/flag.svg b/icons-optimized/flag.svg deleted file mode 100644 index ced11160..00000000 --- a/icons-optimized/flag.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/folder-download.svg b/icons-optimized/folder-download.svg deleted file mode 100644 index a8e429dd..00000000 --- a/icons-optimized/folder-download.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/folder-eye.svg b/icons-optimized/folder-eye.svg deleted file mode 100644 index 997243bf..00000000 --- a/icons-optimized/folder-eye.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/folder-minus.svg b/icons-optimized/folder-minus.svg deleted file mode 100644 index 9c72671b..00000000 --- a/icons-optimized/folder-minus.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/folder-off.svg b/icons-optimized/folder-off.svg deleted file mode 100644 index 735f439f..00000000 --- a/icons-optimized/folder-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/folder-plus.svg b/icons-optimized/folder-plus.svg deleted file mode 100644 index 71470b7a..00000000 --- a/icons-optimized/folder-plus.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/folder-upload.svg b/icons-optimized/folder-upload.svg deleted file mode 100644 index 88cb4431..00000000 --- a/icons-optimized/folder-upload.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/folder-x.svg b/icons-optimized/folder-x.svg deleted file mode 100644 index 12aaade6..00000000 --- a/icons-optimized/folder-x.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/folder.svg b/icons-optimized/folder.svg deleted file mode 100644 index 61b6221a..00000000 --- a/icons-optimized/folder.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/folders.svg b/icons-optimized/folders.svg deleted file mode 100644 index 60909b13..00000000 --- a/icons-optimized/folders.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/grid-dots.svg b/icons-optimized/grid-dots.svg deleted file mode 100644 index 71157b8b..00000000 --- a/icons-optimized/grid-dots.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/grid-view-1.json b/icons-optimized/grid-view-1.json new file mode 100644 index 00000000..7b7c1e5c --- /dev/null +++ b/icons-optimized/grid-view-1.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-1", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/grid-view-1.svg b/icons-optimized/grid-view-1.svg new file mode 100644 index 00000000..f9e1a0cc --- /dev/null +++ b/icons-optimized/grid-view-1.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/icons-optimized/grid-view-2.json b/icons-optimized/grid-view-2.json new file mode 100644 index 00000000..ca919d7e --- /dev/null +++ b/icons-optimized/grid-view-2.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-2", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/grid-view-2.svg b/icons-optimized/grid-view-2.svg new file mode 100644 index 00000000..f9e1a0cc --- /dev/null +++ b/icons-optimized/grid-view-2.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/icons-optimized/home-2.svg b/icons-optimized/home-2.svg deleted file mode 100644 index 742b5e3c..00000000 --- a/icons-optimized/home-2.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/info-circle.svg b/icons-optimized/info-circle.svg deleted file mode 100644 index cfc66a57..00000000 --- a/icons-optimized/info-circle.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/info-cirlce-2.svg b/icons-optimized/info-cirlce-2.svg deleted file mode 100644 index f70a894a..00000000 --- a/icons-optimized/info-cirlce-2.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - diff --git a/icons-optimized/info-square.svg b/icons-optimized/info-square.svg deleted file mode 100644 index d7a416cf..00000000 --- a/icons-optimized/info-square.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/info.svg b/icons-optimized/info.svg deleted file mode 100644 index bef17674..00000000 --- a/icons-optimized/info.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons-optimized/key-2.svg b/icons-optimized/key-2.svg deleted file mode 100644 index c3ba64dc..00000000 --- a/icons-optimized/key-2.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/icons-optimized/key-duplicate-fill.json b/icons-optimized/key-duplicate-fill.json new file mode 100644 index 00000000..c9c741a4 --- /dev/null +++ b/icons-optimized/key-duplicate-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "key-duplicate-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/key-duplicate-fill.svg b/icons-optimized/key-duplicate-fill.svg new file mode 100644 index 00000000..7ab7ee7d --- /dev/null +++ b/icons-optimized/key-duplicate-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/key-duplicate.svg b/icons-optimized/key-duplicate.svg deleted file mode 100644 index 0590abe2..00000000 --- a/icons-optimized/key-duplicate.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - diff --git a/icons-optimized/key.svg b/icons-optimized/key.svg deleted file mode 100644 index 782642e5..00000000 --- a/icons-optimized/key.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/link.svg b/icons-optimized/link.svg deleted file mode 100644 index 42f77dea..00000000 --- a/icons-optimized/link.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/list-fill.json b/icons-optimized/list-fill.json new file mode 100644 index 00000000..b0b779a7 --- /dev/null +++ b/icons-optimized/list-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "list-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/list-fill.svg b/icons-optimized/list-fill.svg new file mode 100644 index 00000000..b09e4a26 --- /dev/null +++ b/icons-optimized/list-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/loader.svg b/icons-optimized/loader.svg deleted file mode 100644 index 07ac63ff..00000000 --- a/icons-optimized/loader.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/lock-2.svg b/icons-optimized/lock-2.svg deleted file mode 100644 index 77ae6d65..00000000 --- a/icons-optimized/lock-2.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/lock-off.svg b/icons-optimized/lock-off.svg deleted file mode 100644 index 9891100f..00000000 --- a/icons-optimized/lock-off.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/lock-open.svg b/icons-optimized/lock-open.svg deleted file mode 100644 index 4b9cd286..00000000 --- a/icons-optimized/lock-open.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/lock.svg b/icons-optimized/lock.svg deleted file mode 100644 index c729229a..00000000 --- a/icons-optimized/lock.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/loop.json b/icons-optimized/loop.json new file mode 100644 index 00000000..30f47c44 --- /dev/null +++ b/icons-optimized/loop.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "loop", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/loop.svg b/icons-optimized/loop.svg new file mode 100644 index 00000000..5d7c0ff3 --- /dev/null +++ b/icons-optimized/loop.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/icons-optimized/loupe-fill.json b/icons-optimized/loupe-fill.json new file mode 100644 index 00000000..ee4cc769 --- /dev/null +++ b/icons-optimized/loupe-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "loupe-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/loupe-fill.svg b/icons-optimized/loupe-fill.svg new file mode 100644 index 00000000..326af617 --- /dev/null +++ b/icons-optimized/loupe-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/mail.svg b/icons-optimized/mail.svg deleted file mode 100644 index fe9e14ca..00000000 --- a/icons-optimized/mail.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/map-2.svg b/icons-optimized/map-2.svg deleted file mode 100644 index cfe48a0f..00000000 --- a/icons-optimized/map-2.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/map-pin-off.svg b/icons-optimized/map-pin-off.svg deleted file mode 100644 index 189a37f3..00000000 --- a/icons-optimized/map-pin-off.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/map-pin.svg b/icons-optimized/map-pin.svg deleted file mode 100644 index 4a0ef91c..00000000 --- a/icons-optimized/map-pin.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/minus.svg b/icons-optimized/minus.svg deleted file mode 100644 index 653783c0..00000000 --- a/icons-optimized/minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/icons-optimized/mood-crazy-happy.svg b/icons-optimized/mood-crazy-happy.svg deleted file mode 100644 index d399ee81..00000000 --- a/icons-optimized/mood-crazy-happy.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons-optimized/mood-empty.svg b/icons-optimized/mood-empty.svg deleted file mode 100644 index c204bfb7..00000000 --- a/icons-optimized/mood-empty.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/mood-sad.svg b/icons-optimized/mood-sad.svg deleted file mode 100644 index dd4156ef..00000000 --- a/icons-optimized/mood-sad.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/mood-smile.svg b/icons-optimized/mood-smile.svg deleted file mode 100644 index 363f0cd6..00000000 --- a/icons-optimized/mood-smile.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/mouse-left.svg b/icons-optimized/mouse-left.svg deleted file mode 100644 index 662f586b..00000000 --- a/icons-optimized/mouse-left.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/icons-optimized/mouse-right.svg b/icons-optimized/mouse-right.svg deleted file mode 100644 index cf682b98..00000000 --- a/icons-optimized/mouse-right.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/icons-optimized/no-duplicate.svg b/icons-optimized/no-duplicate.svg deleted file mode 100644 index 2825df05..00000000 --- a/icons-optimized/no-duplicate.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - diff --git a/icons-optimized/palette-fill.json b/icons-optimized/palette-fill.json new file mode 100644 index 00000000..d065c897 --- /dev/null +++ b/icons-optimized/palette-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "palette-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/palette-fill.svg b/icons-optimized/palette-fill.svg new file mode 100644 index 00000000..50d1a44c --- /dev/null +++ b/icons-optimized/palette-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/palette.svg b/icons-optimized/palette.svg deleted file mode 100644 index ca1f9843..00000000 --- a/icons-optimized/palette.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/pause-fill.json b/icons-optimized/pause-fill.json new file mode 100644 index 00000000..88c48558 --- /dev/null +++ b/icons-optimized/pause-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "pause-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/pause-fill.svg b/icons-optimized/pause-fill.svg new file mode 100644 index 00000000..e9b1c7b8 --- /dev/null +++ b/icons-optimized/pause-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/photo-off-2.svg b/icons-optimized/photo-off-2.svg deleted file mode 100644 index 2126ff29..00000000 --- a/icons-optimized/photo-off-2.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/icons-optimized/photo-off.svg b/icons-optimized/photo-off.svg deleted file mode 100644 index 42400f57..00000000 --- a/icons-optimized/photo-off.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/photo-stack.svg b/icons-optimized/photo-stack.svg deleted file mode 100644 index be965096..00000000 --- a/icons-optimized/photo-stack.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/photo.svg b/icons-optimized/photo.svg deleted file mode 100644 index 8c00ca2b..00000000 --- a/icons-optimized/photo.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/pinned.svg b/icons-optimized/pinned.svg deleted file mode 100644 index 99a1ab43..00000000 --- a/icons-optimized/pinned.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/play-fill.json b/icons-optimized/play-fill.json new file mode 100644 index 00000000..ba8969ca --- /dev/null +++ b/icons-optimized/play-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "play-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/play-fill.svg b/icons-optimized/play-fill.svg new file mode 100644 index 00000000..555d2cee --- /dev/null +++ b/icons-optimized/play-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/plus.svg b/icons-optimized/plus.svg deleted file mode 100644 index ecaf6766..00000000 --- a/icons-optimized/plus.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/question-mark.svg b/icons-optimized/question-mark.svg deleted file mode 100644 index 5a7748db..00000000 --- a/icons-optimized/question-mark.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/redeem.svg b/icons-optimized/redeem.svg deleted file mode 100644 index 35bccc20..00000000 --- a/icons-optimized/redeem.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - diff --git a/icons-optimized/refresh-2.svg b/icons-optimized/refresh-2.svg deleted file mode 100644 index 5dce3593..00000000 --- a/icons-optimized/refresh-2.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/icons-optimized/refresh-alert.svg b/icons-optimized/refresh-alert.svg deleted file mode 100644 index bbf51548..00000000 --- a/icons-optimized/refresh-alert.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/refresh.svg b/icons-optimized/refresh.svg deleted file mode 100644 index 7a1d96b0..00000000 --- a/icons-optimized/refresh.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/reload-alert.svg b/icons-optimized/reload-alert.svg deleted file mode 100644 index 96d4a686..00000000 --- a/icons-optimized/reload-alert.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/icons-optimized/rotate-90.svg b/icons-optimized/rotate-90.svg deleted file mode 100644 index 7596f3d9..00000000 --- a/icons-optimized/rotate-90.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/rotate-clockwise.svg b/icons-optimized/rotate-clockwise.svg deleted file mode 100644 index 991cb1c8..00000000 --- a/icons-optimized/rotate-clockwise.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/rotate.svg b/icons-optimized/rotate.svg deleted file mode 100644 index 06e198cd..00000000 --- a/icons-optimized/rotate.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/scissors-fill.json b/icons-optimized/scissors-fill.json new file mode 100644 index 00000000..10d4cab5 --- /dev/null +++ b/icons-optimized/scissors-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "scissors-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/scissors-fill.svg b/icons-optimized/scissors-fill.svg new file mode 100644 index 00000000..494deaa8 --- /dev/null +++ b/icons-optimized/scissors-fill.svg @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/icons-optimized/search.svg b/icons-optimized/search.svg deleted file mode 100644 index 25596cd2..00000000 --- a/icons-optimized/search.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/share.svg b/icons-optimized/share.svg deleted file mode 100644 index 5b8bf102..00000000 --- a/icons-optimized/share.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount.svg deleted file mode 100644 index fd3842fd..00000000 --- a/icons-optimized/shopping-cart-discount.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart.svg deleted file mode 100644 index fc7e4890..00000000 --- a/icons-optimized/shopping-cart.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/sort-ascending-2.svg b/icons-optimized/sort-ascending-2.svg deleted file mode 100644 index b6988b71..00000000 --- a/icons-optimized/sort-ascending-2.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/sort-ascending-letters.svg b/icons-optimized/sort-ascending-letters.svg deleted file mode 100644 index eed23080..00000000 --- a/icons-optimized/sort-ascending-letters.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/sort-ascending-numbers.svg b/icons-optimized/sort-ascending-numbers.svg deleted file mode 100644 index bcfb64fc..00000000 --- a/icons-optimized/sort-ascending-numbers.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/sort-ascending.svg b/icons-optimized/sort-ascending.svg deleted file mode 100644 index 2b93ccf3..00000000 --- a/icons-optimized/sort-ascending.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/sort-descending-2.svg b/icons-optimized/sort-descending-2.svg deleted file mode 100644 index 4d4eaca0..00000000 --- a/icons-optimized/sort-descending-2.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/sort-descending-letters.svg b/icons-optimized/sort-descending-letters.svg deleted file mode 100644 index bbf616f2..00000000 --- a/icons-optimized/sort-descending-letters.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/sort-descending-numbers.svg b/icons-optimized/sort-descending-numbers.svg deleted file mode 100644 index 63e48601..00000000 --- a/icons-optimized/sort-descending-numbers.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/sort-descending.svg b/icons-optimized/sort-descending.svg deleted file mode 100644 index 7d822b40..00000000 --- a/icons-optimized/sort-descending.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/spray.svg b/icons-optimized/spray.svg deleted file mode 100644 index 980bd0f9..00000000 --- a/icons-optimized/spray.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/icons-optimized/spray_2.svg b/icons-optimized/spray_2.svg deleted file mode 100644 index be53fd1f..00000000 --- a/icons-optimized/spray_2.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons-optimized/stack-2.svg b/icons-optimized/stack-2.svg deleted file mode 100644 index 6a6f72b9..00000000 --- a/icons-optimized/stack-2.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/stack-double.svg b/icons-optimized/stack-double.svg deleted file mode 100644 index e46ddf54..00000000 --- a/icons-optimized/stack-double.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/stack-triple.svg b/icons-optimized/stack-triple.svg deleted file mode 100644 index b22d6c8c..00000000 --- a/icons-optimized/stack-triple.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/stack.svg b/icons-optimized/stack.svg deleted file mode 100644 index 0bf5b83a..00000000 --- a/icons-optimized/stack.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/star-off.svg b/icons-optimized/star-off.svg deleted file mode 100644 index 62720bae..00000000 --- a/icons-optimized/star-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/star.svg b/icons-optimized/star.svg deleted file mode 100644 index 3866280f..00000000 --- a/icons-optimized/star.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/thumb-down.svg b/icons-optimized/thumb-down.svg deleted file mode 100644 index a87e4480..00000000 --- a/icons-optimized/thumb-down.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/thumb-up.svg b/icons-optimized/thumb-up.svg deleted file mode 100644 index d4f6bce7..00000000 --- a/icons-optimized/thumb-up.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/icons-optimized/trash-off.svg b/icons-optimized/trash-off.svg deleted file mode 100644 index 42c05e36..00000000 --- a/icons-optimized/trash-off.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/icons-optimized/trash.svg b/icons-optimized/trash.svg deleted file mode 100644 index e88b5435..00000000 --- a/icons-optimized/trash.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/unlink.svg b/icons-optimized/unlink.svg deleted file mode 100644 index 135760cd..00000000 --- a/icons-optimized/unlink.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons-optimized/upload-2.svg b/icons-optimized/upload-2.svg deleted file mode 100644 index 05aed219..00000000 --- a/icons-optimized/upload-2.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/icons-optimized/upload.svg b/icons-optimized/upload.svg deleted file mode 100644 index 7658c84c..00000000 --- a/icons-optimized/upload.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user-check.svg b/icons-optimized/user-check.svg deleted file mode 100644 index b8d72b65..00000000 --- a/icons-optimized/user-check.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user-exclamation.svg b/icons-optimized/user-exclamation.svg deleted file mode 100644 index 3949c55f..00000000 --- a/icons-optimized/user-exclamation.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/user-minus.svg b/icons-optimized/user-minus.svg deleted file mode 100644 index fae6c674..00000000 --- a/icons-optimized/user-minus.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user-off.svg b/icons-optimized/user-off.svg deleted file mode 100644 index c5a16d94..00000000 --- a/icons-optimized/user-off.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user-plus.svg b/icons-optimized/user-plus.svg deleted file mode 100644 index 8d6ff522..00000000 --- a/icons-optimized/user-plus.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user-x.svg b/icons-optimized/user-x.svg deleted file mode 100644 index 80994dbf..00000000 --- a/icons-optimized/user-x.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/user.svg b/icons-optimized/user.svg deleted file mode 100644 index f3da9fb0..00000000 --- a/icons-optimized/user.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/users.svg b/icons-optimized/users.svg deleted file mode 100644 index 00f85d1f..00000000 --- a/icons-optimized/users.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/view-all.svg b/icons-optimized/view-all.svg deleted file mode 100644 index c4873a29..00000000 --- a/icons-optimized/view-all.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/viewfinder.svg b/icons-optimized/viewfinder.svg deleted file mode 100644 index 2459e667..00000000 --- a/icons-optimized/viewfinder.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons-optimized/wifi-1.svg b/icons-optimized/wifi-1.svg deleted file mode 100644 index e09da0f4..00000000 --- a/icons-optimized/wifi-1.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/wifi-2.svg b/icons-optimized/wifi-2.svg deleted file mode 100644 index 7caa4a8f..00000000 --- a/icons-optimized/wifi-2.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/wifi-off.svg b/icons-optimized/wifi-off.svg deleted file mode 100644 index fcc0ac59..00000000 --- a/icons-optimized/wifi-off.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - diff --git a/icons-optimized/wifi.svg b/icons-optimized/wifi.svg deleted file mode 100644 index 4fa21a89..00000000 --- a/icons-optimized/wifi.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/world.svg b/icons-optimized/world.svg deleted file mode 100644 index 8e5becc3..00000000 --- a/icons-optimized/world.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/writing.svg b/icons-optimized/writing.svg deleted file mode 100644 index 3d67f965..00000000 --- a/icons-optimized/writing.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/icons-optimized/x.svg b/icons-optimized/x.svg deleted file mode 100644 index 8b6572a1..00000000 --- a/icons-optimized/x.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/zoom-in.svg b/icons-optimized/zoom-in.svg deleted file mode 100644 index 0d9e39af..00000000 --- a/icons-optimized/zoom-in.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-optimized/zoom-out.svg b/icons-optimized/zoom-out.svg deleted file mode 100644 index 2abc5109..00000000 --- a/icons-optimized/zoom-out.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/zoom-question.svg b/icons-optimized/zoom-question.svg deleted file mode 100644 index 5374139d..00000000 --- a/icons-optimized/zoom-question.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons-original/accent/check_box.svg b/icons-original/_accent/check_box.svg similarity index 100% rename from icons-original/accent/check_box.svg rename to icons-original/_accent/check_box.svg diff --git a/icons-original/accent/cloud-upload-accent.svg b/icons-original/_accent/cloud-upload-accent.svg similarity index 100% rename from icons-original/accent/cloud-upload-accent.svg rename to icons-original/_accent/cloud-upload-accent.svg diff --git a/icons-original/accent/download-accent.svg b/icons-original/_accent/download-accent.svg similarity index 100% rename from icons-original/accent/download-accent.svg rename to icons-original/_accent/download-accent.svg diff --git a/icons-original/accent/mood.svg b/icons-original/_accent/mood.svg similarity index 100% rename from icons-original/accent/mood.svg rename to icons-original/_accent/mood.svg diff --git a/icons-original/accent/mood_gray.svg b/icons-original/_accent/mood_gray.svg similarity index 100% rename from icons-original/accent/mood_gray.svg rename to icons-original/_accent/mood_gray.svg diff --git a/icons-original/accent/partially_checked.svg b/icons-original/_accent/partially_checked.svg similarity index 100% rename from icons-original/accent/partially_checked.svg rename to icons-original/_accent/partially_checked.svg diff --git a/icons-original/accent/upload-accent.svg b/icons-original/_accent/upload-accent.svg similarity index 100% rename from icons-original/accent/upload-accent.svg rename to icons-original/_accent/upload-accent.svg diff --git a/icons-original/color/edits_logo_text.svg b/icons-original/_color/edits_logo_text.svg similarity index 100% rename from icons-original/color/edits_logo_text.svg rename to icons-original/_color/edits_logo_text.svg diff --git a/icons-original/img/adobe_camera_raw.svg b/icons-original/_img/adobe_camera_raw.svg similarity index 100% rename from icons-original/img/adobe_camera_raw.svg rename to icons-original/_img/adobe_camera_raw.svg diff --git a/icons-original/img/bridge.svg b/icons-original/_img/bridge.svg similarity index 100% rename from icons-original/img/bridge.svg rename to icons-original/_img/bridge.svg diff --git a/icons-original/img/capture_one.svg b/icons-original/_img/capture_one.svg similarity index 100% rename from icons-original/img/capture_one.svg rename to icons-original/_img/capture_one.svg diff --git a/icons-original/img/drag_capture_one.svg b/icons-original/_img/drag_capture_one.svg similarity index 100% rename from icons-original/img/drag_capture_one.svg rename to icons-original/_img/drag_capture_one.svg diff --git a/icons-original/img/drag_folder.svg b/icons-original/_img/drag_folder.svg similarity index 100% rename from icons-original/img/drag_folder.svg rename to icons-original/_img/drag_folder.svg diff --git a/icons-original/img/drag_lr copy.svg b/icons-original/_img/drag_lr copy.svg similarity index 100% rename from icons-original/img/drag_lr copy.svg rename to icons-original/_img/drag_lr copy.svg diff --git a/icons-original/img/drag_lr.svg b/icons-original/_img/drag_lr.svg similarity index 100% rename from icons-original/img/drag_lr.svg rename to icons-original/_img/drag_lr.svg diff --git a/icons-original/img/drag_lrc.svg b/icons-original/_img/drag_lrc.svg similarity index 100% rename from icons-original/img/drag_lrc.svg rename to icons-original/_img/drag_lrc.svg diff --git a/icons-original/img/drag_photoshop.svg b/icons-original/_img/drag_photoshop.svg similarity index 100% rename from icons-original/img/drag_photoshop.svg rename to icons-original/_img/drag_photoshop.svg diff --git a/icons-original/img/facebook_people.svg b/icons-original/_img/facebook_people.svg similarity index 100% rename from icons-original/img/facebook_people.svg rename to icons-original/_img/facebook_people.svg diff --git a/icons-original/img/lessGrouping1.svg b/icons-original/_img/lessGrouping1.svg similarity index 100% rename from icons-original/img/lessGrouping1.svg rename to icons-original/_img/lessGrouping1.svg diff --git a/icons-original/img/lessGrouping2.svg b/icons-original/_img/lessGrouping2.svg similarity index 100% rename from icons-original/img/lessGrouping2.svg rename to icons-original/_img/lessGrouping2.svg diff --git a/icons-original/img/lightroom.svg b/icons-original/_img/lightroom.svg similarity index 100% rename from icons-original/img/lightroom.svg rename to icons-original/_img/lightroom.svg diff --git a/icons-original/img/lightroom_classic.svg b/icons-original/_img/lightroom_classic.svg similarity index 100% rename from icons-original/img/lightroom_classic.svg rename to icons-original/_img/lightroom_classic.svg diff --git a/icons-original/img/moreGrouping1.svg b/icons-original/_img/moreGrouping1.svg similarity index 100% rename from icons-original/img/moreGrouping1.svg rename to icons-original/_img/moreGrouping1.svg diff --git a/icons-original/img/moreGrouping2.svg b/icons-original/_img/moreGrouping2.svg similarity index 100% rename from icons-original/img/moreGrouping2.svg rename to icons-original/_img/moreGrouping2.svg diff --git a/icons-original/mix/Crown Play.svg b/icons-original/_mix/Crown Play.svg similarity index 100% rename from icons-original/mix/Crown Play.svg rename to icons-original/_mix/Crown Play.svg diff --git a/icons-original/mix/check_box_empty.svg b/icons-original/_mix/check_box_empty.svg similarity index 100% rename from icons-original/mix/check_box_empty.svg rename to icons-original/_mix/check_box_empty.svg diff --git a/icons-original/mix/collection.svg b/icons-original/_mix/collection.svg similarity index 100% rename from icons-original/mix/collection.svg rename to icons-original/_mix/collection.svg diff --git a/icons-original/mix/flag-fill.svg b/icons-original/_mix/flag-fill.svg similarity index 100% rename from icons-original/mix/flag-fill.svg rename to icons-original/_mix/flag-fill.svg diff --git a/icons-original/mix/folder-fill.svg b/icons-original/_mix/folder-fill.svg similarity index 100% rename from icons-original/mix/folder-fill.svg rename to icons-original/_mix/folder-fill.svg diff --git a/icons-original/mix/home-mix.svg b/icons-original/_mix/home-mix.svg similarity index 100% rename from icons-original/mix/home-mix.svg rename to icons-original/_mix/home-mix.svg diff --git a/icons-original/mix/image-border.svg b/icons-original/_mix/image-border.svg similarity index 100% rename from icons-original/mix/image-border.svg rename to icons-original/_mix/image-border.svg diff --git a/icons-original/mix/layout-sidebar-right-mix.svg b/icons-original/_mix/layout-sidebar-right-mix.svg similarity index 100% rename from icons-original/mix/layout-sidebar-right-mix.svg rename to icons-original/_mix/layout-sidebar-right-mix.svg diff --git a/icons-original/mix/mouse-left-2.svg b/icons-original/_mix/mouse-left-2.svg similarity index 100% rename from icons-original/mix/mouse-left-2.svg rename to icons-original/_mix/mouse-left-2.svg diff --git a/icons-original/mix/no-duplicate.svg b/icons-original/_mix/no-duplicate.svg similarity index 100% rename from icons-original/mix/no-duplicate.svg rename to icons-original/_mix/no-duplicate.svg diff --git a/icons-original/mix/none-selected.svg b/icons-original/_mix/none-selected.svg similarity index 100% rename from icons-original/mix/none-selected.svg rename to icons-original/_mix/none-selected.svg diff --git a/icons-original/mix/recull.svg b/icons-original/_mix/recull.svg similarity index 100% rename from icons-original/mix/recull.svg rename to icons-original/_mix/recull.svg diff --git a/icons-original/mix/sparkle.svg b/icons-original/_mix/sparkle.svg similarity index 100% rename from icons-original/mix/sparkle.svg rename to icons-original/_mix/sparkle.svg diff --git a/icons-original/mix/star - 0.svg b/icons-original/_mix/star - 0.svg similarity index 100% rename from icons-original/mix/star - 0.svg rename to icons-original/_mix/star - 0.svg diff --git a/icons-original/mix/star - 1.svg b/icons-original/_mix/star - 1.svg similarity index 100% rename from icons-original/mix/star - 1.svg rename to icons-original/_mix/star - 1.svg diff --git a/icons-original/mix/star - 2.svg b/icons-original/_mix/star - 2.svg similarity index 100% rename from icons-original/mix/star - 2.svg rename to icons-original/_mix/star - 2.svg diff --git a/icons-original/mix/star - 3.svg b/icons-original/_mix/star - 3.svg similarity index 100% rename from icons-original/mix/star - 3.svg rename to icons-original/_mix/star - 3.svg diff --git a/icons-original/mix/star - 4.svg b/icons-original/_mix/star - 4.svg similarity index 100% rename from icons-original/mix/star - 4.svg rename to icons-original/_mix/star - 4.svg diff --git a/icons-original/mix/star - 5.svg b/icons-original/_mix/star - 5.svg similarity index 100% rename from icons-original/mix/star - 5.svg rename to icons-original/_mix/star - 5.svg diff --git a/icons-original/mix/star-fill.svg b/icons-original/_mix/star-fill.svg similarity index 100% rename from icons-original/mix/star-fill.svg rename to icons-original/_mix/star-fill.svg diff --git a/icons-original/mix/star-off-fill.svg b/icons-original/_mix/star-off-fill.svg similarity index 100% rename from icons-original/mix/star-off-fill.svg rename to icons-original/_mix/star-off-fill.svg diff --git a/icons-original/mix/upload-c1-cat.svg b/icons-original/_mix/upload-c1-cat.svg similarity index 100% rename from icons-original/mix/upload-c1-cat.svg rename to icons-original/_mix/upload-c1-cat.svg diff --git a/icons-original/mix/upload-lr-cat.svg b/icons-original/_mix/upload-lr-cat.svg similarity index 100% rename from icons-original/mix/upload-lr-cat.svg rename to icons-original/_mix/upload-lr-cat.svg diff --git a/icons-original/not-include/add_folder.svg b/icons-original/_not-include/add_folder.svg similarity index 100% rename from icons-original/not-include/add_folder.svg rename to icons-original/_not-include/add_folder.svg diff --git a/icons-original/not-include/adobe_camera_raw.svg b/icons-original/_not-include/adobe_camera_raw.svg similarity index 100% rename from icons-original/not-include/adobe_camera_raw.svg rename to icons-original/_not-include/adobe_camera_raw.svg diff --git a/icons-original/not-include/arrow_right.svg b/icons-original/_not-include/arrow_right.svg similarity index 100% rename from icons-original/not-include/arrow_right.svg rename to icons-original/_not-include/arrow_right.svg diff --git a/icons-original/not-include/bridge.svg b/icons-original/_not-include/bridge.svg similarity index 100% rename from icons-original/not-include/bridge.svg rename to icons-original/_not-include/bridge.svg diff --git a/icons-original/not-include/bulb.svg b/icons-original/_not-include/bulb.svg similarity index 100% rename from icons-original/not-include/bulb.svg rename to icons-original/_not-include/bulb.svg diff --git a/icons-original/not-include/capture_one.svg b/icons-original/_not-include/capture_one.svg similarity index 100% rename from icons-original/not-include/capture_one.svg rename to icons-original/_not-include/capture_one.svg diff --git a/icons-original/not-include/checkIcon.svg b/icons-original/_not-include/checkIcon.svg similarity index 100% rename from icons-original/not-include/checkIcon.svg rename to icons-original/_not-include/checkIcon.svg diff --git a/icons-original/not-include/circle-check_2.svg b/icons-original/_not-include/circle-check_2.svg similarity index 100% rename from icons-original/not-include/circle-check_2.svg rename to icons-original/_not-include/circle-check_2.svg diff --git a/icons-original/not-include/circleCheckFilled.svg b/icons-original/_not-include/circleCheckFilled.svg similarity index 100% rename from icons-original/not-include/circleCheckFilled.svg rename to icons-original/_not-include/circleCheckFilled.svg diff --git a/icons-original/not-include/circle_check.svg b/icons-original/_not-include/circle_check.svg similarity index 100% rename from icons-original/not-include/circle_check.svg rename to icons-original/_not-include/circle_check.svg diff --git a/icons-original/not-include/redirect.svg b/icons-original/_not-include/redirect.svg similarity index 100% rename from icons-original/not-include/redirect.svg rename to icons-original/_not-include/redirect.svg diff --git a/icons-original/outline/Import.svg b/icons-original/_outline/Import.svg similarity index 100% rename from icons-original/outline/Import.svg rename to icons-original/_outline/Import.svg diff --git a/icons-original/outline/adjustments-horizontal.svg b/icons-original/_outline/adjustments-horizontal.svg similarity index 100% rename from icons-original/outline/adjustments-horizontal.svg rename to icons-original/_outline/adjustments-horizontal.svg diff --git a/icons-original/outline/adjustments.svg b/icons-original/_outline/adjustments.svg similarity index 100% rename from icons-original/outline/adjustments.svg rename to icons-original/_outline/adjustments.svg diff --git a/icons-original/outline/alarm.svg b/icons-original/_outline/alarm.svg similarity index 100% rename from icons-original/outline/alarm.svg rename to icons-original/_outline/alarm.svg diff --git a/icons-original/outline/alert-circle.svg b/icons-original/_outline/alert-circle.svg similarity index 100% rename from icons-original/outline/alert-circle.svg rename to icons-original/_outline/alert-circle.svg diff --git a/icons-original/outline/alert-octagon.svg b/icons-original/_outline/alert-octagon.svg similarity index 100% rename from icons-original/outline/alert-octagon.svg rename to icons-original/_outline/alert-octagon.svg diff --git a/icons-original/outline/alert-triangle.svg b/icons-original/_outline/alert-triangle.svg similarity index 100% rename from icons-original/outline/alert-triangle.svg rename to icons-original/_outline/alert-triangle.svg diff --git a/icons-original/outline/arrow-down.svg b/icons-original/_outline/arrow-down.svg similarity index 100% rename from icons-original/outline/arrow-down.svg rename to icons-original/_outline/arrow-down.svg diff --git a/icons-original/outline/arrow-left.svg b/icons-original/_outline/arrow-left.svg similarity index 100% rename from icons-original/outline/arrow-left.svg rename to icons-original/_outline/arrow-left.svg diff --git a/icons-original/outline/arrow-narrow-left.svg b/icons-original/_outline/arrow-narrow-left.svg similarity index 100% rename from icons-original/outline/arrow-narrow-left.svg rename to icons-original/_outline/arrow-narrow-left.svg diff --git a/icons-original/outline/arrow-narrow-right.svg b/icons-original/_outline/arrow-narrow-right.svg similarity index 100% rename from icons-original/outline/arrow-narrow-right.svg rename to icons-original/_outline/arrow-narrow-right.svg diff --git a/icons-original/outline/arrow-right.svg b/icons-original/_outline/arrow-right.svg similarity index 100% rename from icons-original/outline/arrow-right.svg rename to icons-original/_outline/arrow-right.svg diff --git a/icons-original/outline/arrow-sort-2.svg b/icons-original/_outline/arrow-sort-2.svg similarity index 100% rename from icons-original/outline/arrow-sort-2.svg rename to icons-original/_outline/arrow-sort-2.svg diff --git a/icons-original/outline/arrow-up.svg b/icons-original/_outline/arrow-up.svg similarity index 100% rename from icons-original/outline/arrow-up.svg rename to icons-original/_outline/arrow-up.svg diff --git a/icons-original/outline/arrows-diagonal.svg b/icons-original/_outline/arrows-diagonal.svg similarity index 100% rename from icons-original/outline/arrows-diagonal.svg rename to icons-original/_outline/arrows-diagonal.svg diff --git a/icons-original/outline/arrows-sort.svg b/icons-original/_outline/arrows-sort.svg similarity index 100% rename from icons-original/outline/arrows-sort.svg rename to icons-original/_outline/arrows-sort.svg diff --git a/icons-original/outline/atom.svg b/icons-original/_outline/atom.svg similarity index 100% rename from icons-original/outline/atom.svg rename to icons-original/_outline/atom.svg diff --git a/icons-original/outline/ban.svg b/icons-original/_outline/ban.svg similarity index 100% rename from icons-original/outline/ban.svg rename to icons-original/_outline/ban.svg diff --git a/icons-original/outline/bell-minus.svg b/icons-original/_outline/bell-minus.svg similarity index 100% rename from icons-original/outline/bell-minus.svg rename to icons-original/_outline/bell-minus.svg diff --git a/icons-original/outline/bell-off.svg b/icons-original/_outline/bell-off.svg similarity index 100% rename from icons-original/outline/bell-off.svg rename to icons-original/_outline/bell-off.svg diff --git a/icons-original/outline/bell-plus.svg b/icons-original/_outline/bell-plus.svg similarity index 100% rename from icons-original/outline/bell-plus.svg rename to icons-original/_outline/bell-plus.svg diff --git a/icons-original/outline/bell-ringing-2.svg b/icons-original/_outline/bell-ringing-2.svg similarity index 100% rename from icons-original/outline/bell-ringing-2.svg rename to icons-original/_outline/bell-ringing-2.svg diff --git a/icons-original/outline/bell-ringing.svg b/icons-original/_outline/bell-ringing.svg similarity index 100% rename from icons-original/outline/bell-ringing.svg rename to icons-original/_outline/bell-ringing.svg diff --git a/icons-original/outline/bell-x.svg b/icons-original/_outline/bell-x.svg similarity index 100% rename from icons-original/outline/bell-x.svg rename to icons-original/_outline/bell-x.svg diff --git a/icons-original/outline/bell.svg b/icons-original/_outline/bell.svg similarity index 100% rename from icons-original/outline/bell.svg rename to icons-original/_outline/bell.svg diff --git a/icons-original/outline/brand-facebook.svg b/icons-original/_outline/brand-facebook.svg similarity index 100% rename from icons-original/outline/brand-facebook.svg rename to icons-original/_outline/brand-facebook.svg diff --git a/icons-original/outline/brand-github.svg b/icons-original/_outline/brand-github.svg similarity index 100% rename from icons-original/outline/brand-github.svg rename to icons-original/_outline/brand-github.svg diff --git a/icons-original/outline/brand-instagram.svg b/icons-original/_outline/brand-instagram.svg similarity index 100% rename from icons-original/outline/brand-instagram.svg rename to icons-original/_outline/brand-instagram.svg diff --git a/icons-original/outline/brand-twitter.svg b/icons-original/_outline/brand-twitter.svg similarity index 100% rename from icons-original/outline/brand-twitter.svg rename to icons-original/_outline/brand-twitter.svg diff --git a/icons-original/outline/brand-whatsapp.svg b/icons-original/_outline/brand-whatsapp.svg similarity index 100% rename from icons-original/outline/brand-whatsapp.svg rename to icons-original/_outline/brand-whatsapp.svg diff --git a/icons-original/outline/brand-youtube.svg b/icons-original/_outline/brand-youtube.svg similarity index 100% rename from icons-original/outline/brand-youtube.svg rename to icons-original/_outline/brand-youtube.svg diff --git a/icons-original/outline/bulb-off.svg b/icons-original/_outline/bulb-off.svg similarity index 100% rename from icons-original/outline/bulb-off.svg rename to icons-original/_outline/bulb-off.svg diff --git a/icons-original/outline/bulb.svg b/icons-original/_outline/bulb.svg similarity index 100% rename from icons-original/outline/bulb.svg rename to icons-original/_outline/bulb.svg diff --git a/icons-original/outline/check.svg b/icons-original/_outline/check.svg similarity index 100% rename from icons-original/outline/check.svg rename to icons-original/_outline/check.svg diff --git a/icons-original/outline/chevron-down.svg b/icons-original/_outline/chevron-down.svg similarity index 100% rename from icons-original/outline/chevron-down.svg rename to icons-original/_outline/chevron-down.svg diff --git a/icons-original/outline/chevron-left.svg b/icons-original/_outline/chevron-left.svg similarity index 100% rename from icons-original/outline/chevron-left.svg rename to icons-original/_outline/chevron-left.svg diff --git a/icons-original/outline/chevron-right.svg b/icons-original/_outline/chevron-right.svg similarity index 100% rename from icons-original/outline/chevron-right.svg rename to icons-original/_outline/chevron-right.svg diff --git a/icons-original/outline/chevron-up.svg b/icons-original/_outline/chevron-up.svg similarity index 100% rename from icons-original/outline/chevron-up.svg rename to icons-original/_outline/chevron-up.svg diff --git a/icons-original/outline/chevrons-left.svg b/icons-original/_outline/chevrons-left.svg similarity index 100% rename from icons-original/outline/chevrons-left.svg rename to icons-original/_outline/chevrons-left.svg diff --git a/icons-original/outline/chevrons-right.svg b/icons-original/_outline/chevrons-right.svg similarity index 100% rename from icons-original/outline/chevrons-right.svg rename to icons-original/_outline/chevrons-right.svg diff --git a/icons-original/outline/circle-check-2.svg b/icons-original/_outline/circle-check-2.svg similarity index 100% rename from icons-original/outline/circle-check-2.svg rename to icons-original/_outline/circle-check-2.svg diff --git a/icons-original/outline/circle-check.svg b/icons-original/_outline/circle-check.svg similarity index 100% rename from icons-original/outline/circle-check.svg rename to icons-original/_outline/circle-check.svg diff --git a/icons-original/outline/circle.svg b/icons-original/_outline/circle.svg similarity index 100% rename from icons-original/outline/circle.svg rename to icons-original/_outline/circle.svg diff --git a/icons-original/outline/clock.svg b/icons-original/_outline/clock.svg similarity index 100% rename from icons-original/outline/clock.svg rename to icons-original/_outline/clock.svg diff --git a/icons-original/outline/cloud-upload.svg b/icons-original/_outline/cloud-upload.svg similarity index 100% rename from icons-original/outline/cloud-upload.svg rename to icons-original/_outline/cloud-upload.svg diff --git a/icons-original/outline/color-swatch.svg b/icons-original/_outline/color-swatch.svg similarity index 100% rename from icons-original/outline/color-swatch.svg rename to icons-original/_outline/color-swatch.svg diff --git a/icons-original/outline/confetti.svg b/icons-original/_outline/confetti.svg similarity index 100% rename from icons-original/outline/confetti.svg rename to icons-original/_outline/confetti.svg diff --git a/icons-original/outline/copy.svg b/icons-original/_outline/copy.svg similarity index 100% rename from icons-original/outline/copy.svg rename to icons-original/_outline/copy.svg diff --git a/icons-original/outline/crown.svg b/icons-original/_outline/crown.svg similarity index 100% rename from icons-original/outline/crown.svg rename to icons-original/_outline/crown.svg diff --git a/icons-original/outline/currency-dollar.svg b/icons-original/_outline/currency-dollar.svg similarity index 100% rename from icons-original/outline/currency-dollar.svg rename to icons-original/_outline/currency-dollar.svg diff --git a/icons-original/outline/current-location.svg b/icons-original/_outline/current-location.svg similarity index 100% rename from icons-original/outline/current-location.svg rename to icons-original/_outline/current-location.svg diff --git a/icons-original/outline/device-desktop-analytics.svg b/icons-original/_outline/device-desktop-analytics.svg similarity index 100% rename from icons-original/outline/device-desktop-analytics.svg rename to icons-original/_outline/device-desktop-analytics.svg diff --git a/icons-original/outline/device-desktop-off.svg b/icons-original/_outline/device-desktop-off.svg similarity index 100% rename from icons-original/outline/device-desktop-off.svg rename to icons-original/_outline/device-desktop-off.svg diff --git a/icons-original/outline/device-desktop.svg b/icons-original/_outline/device-desktop.svg similarity index 100% rename from icons-original/outline/device-desktop.svg rename to icons-original/_outline/device-desktop.svg diff --git a/icons-original/outline/device-laptop.svg b/icons-original/_outline/device-laptop.svg similarity index 100% rename from icons-original/outline/device-laptop.svg rename to icons-original/_outline/device-laptop.svg diff --git a/icons-original/outline/device-tv.svg b/icons-original/_outline/device-tv.svg similarity index 100% rename from icons-original/outline/device-tv.svg rename to icons-original/_outline/device-tv.svg diff --git a/icons-original/outline/diamond.svg b/icons-original/_outline/diamond.svg similarity index 100% rename from icons-original/outline/diamond.svg rename to icons-original/_outline/diamond.svg diff --git a/icons-original/outline/discount-2.svg b/icons-original/_outline/discount-2.svg similarity index 100% rename from icons-original/outline/discount-2.svg rename to icons-original/_outline/discount-2.svg diff --git a/icons-original/outline/discount.svg b/icons-original/_outline/discount.svg similarity index 100% rename from icons-original/outline/discount.svg rename to icons-original/_outline/discount.svg diff --git a/icons-original/outline/disk.svg b/icons-original/_outline/disk.svg similarity index 100% rename from icons-original/outline/disk.svg rename to icons-original/_outline/disk.svg diff --git a/icons-original/outline/dots-vertical.svg b/icons-original/_outline/dots-vertical.svg similarity index 100% rename from icons-original/outline/dots-vertical.svg rename to icons-original/_outline/dots-vertical.svg diff --git a/icons-original/outline/download.svg b/icons-original/_outline/download.svg similarity index 100% rename from icons-original/outline/download.svg rename to icons-original/_outline/download.svg diff --git a/icons-original/outline/edit.svg b/icons-original/_outline/edit.svg similarity index 100% rename from icons-original/outline/edit.svg rename to icons-original/_outline/edit.svg diff --git a/icons-original/outline/external-link.svg b/icons-original/_outline/external-link.svg similarity index 100% rename from icons-original/outline/external-link.svg rename to icons-original/_outline/external-link.svg diff --git a/icons-original/outline/eye-check.svg b/icons-original/_outline/eye-check.svg similarity index 100% rename from icons-original/outline/eye-check.svg rename to icons-original/_outline/eye-check.svg diff --git a/icons-original/outline/eye-off.svg b/icons-original/_outline/eye-off.svg similarity index 100% rename from icons-original/outline/eye-off.svg rename to icons-original/_outline/eye-off.svg diff --git a/icons-original/outline/eye.svg b/icons-original/_outline/eye.svg similarity index 100% rename from icons-original/outline/eye.svg rename to icons-original/_outline/eye.svg diff --git a/icons-original/outline/file-download.svg b/icons-original/_outline/file-download.svg similarity index 100% rename from icons-original/outline/file-download.svg rename to icons-original/_outline/file-download.svg diff --git a/icons-original/outline/file-export.svg b/icons-original/_outline/file-export.svg similarity index 100% rename from icons-original/outline/file-export.svg rename to icons-original/_outline/file-export.svg diff --git a/icons-original/outline/file-report.svg b/icons-original/_outline/file-report.svg similarity index 100% rename from icons-original/outline/file-report.svg rename to icons-original/_outline/file-report.svg diff --git a/icons-original/outline/file-search.svg b/icons-original/_outline/file-search.svg similarity index 100% rename from icons-original/outline/file-search.svg rename to icons-original/_outline/file-search.svg diff --git a/icons-original/outline/filter-off.svg b/icons-original/_outline/filter-off.svg similarity index 100% rename from icons-original/outline/filter-off.svg rename to icons-original/_outline/filter-off.svg diff --git a/icons-original/outline/filter.svg b/icons-original/_outline/filter.svg similarity index 100% rename from icons-original/outline/filter.svg rename to icons-original/_outline/filter.svg diff --git a/icons-original/outline/flag-off.svg b/icons-original/_outline/flag-off.svg similarity index 100% rename from icons-original/outline/flag-off.svg rename to icons-original/_outline/flag-off.svg diff --git a/icons-original/outline/flag.svg b/icons-original/_outline/flag.svg similarity index 100% rename from icons-original/outline/flag.svg rename to icons-original/_outline/flag.svg diff --git a/icons-original/outline/folder-download.svg b/icons-original/_outline/folder-download.svg similarity index 100% rename from icons-original/outline/folder-download.svg rename to icons-original/_outline/folder-download.svg diff --git a/icons-original/outline/folder-eye.svg b/icons-original/_outline/folder-eye.svg similarity index 100% rename from icons-original/outline/folder-eye.svg rename to icons-original/_outline/folder-eye.svg diff --git a/icons-original/outline/folder-minus.svg b/icons-original/_outline/folder-minus.svg similarity index 100% rename from icons-original/outline/folder-minus.svg rename to icons-original/_outline/folder-minus.svg diff --git a/icons-original/outline/folder-off.svg b/icons-original/_outline/folder-off.svg similarity index 100% rename from icons-original/outline/folder-off.svg rename to icons-original/_outline/folder-off.svg diff --git a/icons-original/outline/folder-plus.svg b/icons-original/_outline/folder-plus.svg similarity index 100% rename from icons-original/outline/folder-plus.svg rename to icons-original/_outline/folder-plus.svg diff --git a/icons-original/outline/folder-upload.svg b/icons-original/_outline/folder-upload.svg similarity index 100% rename from icons-original/outline/folder-upload.svg rename to icons-original/_outline/folder-upload.svg diff --git a/icons-original/outline/folder-x.svg b/icons-original/_outline/folder-x.svg similarity index 100% rename from icons-original/outline/folder-x.svg rename to icons-original/_outline/folder-x.svg diff --git a/icons-original/outline/folder.svg b/icons-original/_outline/folder.svg similarity index 100% rename from icons-original/outline/folder.svg rename to icons-original/_outline/folder.svg diff --git a/icons-original/outline/folders.svg b/icons-original/_outline/folders.svg similarity index 100% rename from icons-original/outline/folders.svg rename to icons-original/_outline/folders.svg diff --git a/icons-original/outline/grid-dots.svg b/icons-original/_outline/grid-dots.svg similarity index 100% rename from icons-original/outline/grid-dots.svg rename to icons-original/_outline/grid-dots.svg diff --git a/icons-original/outline/home-2.svg b/icons-original/_outline/home-2.svg similarity index 100% rename from icons-original/outline/home-2.svg rename to icons-original/_outline/home-2.svg diff --git a/icons-original/outline/info-circle.svg b/icons-original/_outline/info-circle.svg similarity index 100% rename from icons-original/outline/info-circle.svg rename to icons-original/_outline/info-circle.svg diff --git a/icons-original/outline/info-cirlce-2.svg b/icons-original/_outline/info-cirlce-2.svg similarity index 100% rename from icons-original/outline/info-cirlce-2.svg rename to icons-original/_outline/info-cirlce-2.svg diff --git a/icons-original/outline/info-square.svg b/icons-original/_outline/info-square.svg similarity index 100% rename from icons-original/outline/info-square.svg rename to icons-original/_outline/info-square.svg diff --git a/icons-original/outline/info.svg b/icons-original/_outline/info.svg similarity index 100% rename from icons-original/outline/info.svg rename to icons-original/_outline/info.svg diff --git a/icons-original/outline/key-2.svg b/icons-original/_outline/key-2.svg similarity index 100% rename from icons-original/outline/key-2.svg rename to icons-original/_outline/key-2.svg diff --git a/icons-original/outline/key-duplicate.svg b/icons-original/_outline/key-duplicate.svg similarity index 100% rename from icons-original/outline/key-duplicate.svg rename to icons-original/_outline/key-duplicate.svg diff --git a/icons-original/outline/key.svg b/icons-original/_outline/key.svg similarity index 100% rename from icons-original/outline/key.svg rename to icons-original/_outline/key.svg diff --git a/icons-original/outline/link.svg b/icons-original/_outline/link.svg similarity index 100% rename from icons-original/outline/link.svg rename to icons-original/_outline/link.svg diff --git a/icons-original/outline/loader.svg b/icons-original/_outline/loader.svg similarity index 100% rename from icons-original/outline/loader.svg rename to icons-original/_outline/loader.svg diff --git a/icons-original/outline/lock-2.svg b/icons-original/_outline/lock-2.svg similarity index 100% rename from icons-original/outline/lock-2.svg rename to icons-original/_outline/lock-2.svg diff --git a/icons-original/outline/lock-off.svg b/icons-original/_outline/lock-off.svg similarity index 100% rename from icons-original/outline/lock-off.svg rename to icons-original/_outline/lock-off.svg diff --git a/icons-original/outline/lock-open.svg b/icons-original/_outline/lock-open.svg similarity index 100% rename from icons-original/outline/lock-open.svg rename to icons-original/_outline/lock-open.svg diff --git a/icons-original/outline/lock.svg b/icons-original/_outline/lock.svg similarity index 100% rename from icons-original/outline/lock.svg rename to icons-original/_outline/lock.svg diff --git a/icons-original/outline/mail.svg b/icons-original/_outline/mail.svg similarity index 100% rename from icons-original/outline/mail.svg rename to icons-original/_outline/mail.svg diff --git a/icons-original/outline/map-2.svg b/icons-original/_outline/map-2.svg similarity index 100% rename from icons-original/outline/map-2.svg rename to icons-original/_outline/map-2.svg diff --git a/icons-original/outline/map-pin-off.svg b/icons-original/_outline/map-pin-off.svg similarity index 100% rename from icons-original/outline/map-pin-off.svg rename to icons-original/_outline/map-pin-off.svg diff --git a/icons-original/outline/map-pin.svg b/icons-original/_outline/map-pin.svg similarity index 100% rename from icons-original/outline/map-pin.svg rename to icons-original/_outline/map-pin.svg diff --git a/icons-original/outline/minus.svg b/icons-original/_outline/minus.svg similarity index 100% rename from icons-original/outline/minus.svg rename to icons-original/_outline/minus.svg diff --git a/icons-original/outline/mood-crazy-happy.svg b/icons-original/_outline/mood-crazy-happy.svg similarity index 100% rename from icons-original/outline/mood-crazy-happy.svg rename to icons-original/_outline/mood-crazy-happy.svg diff --git a/icons-original/outline/mood-empty.svg b/icons-original/_outline/mood-empty.svg similarity index 100% rename from icons-original/outline/mood-empty.svg rename to icons-original/_outline/mood-empty.svg diff --git a/icons-original/outline/mood-sad.svg b/icons-original/_outline/mood-sad.svg similarity index 100% rename from icons-original/outline/mood-sad.svg rename to icons-original/_outline/mood-sad.svg diff --git a/icons-original/outline/mood-smile.svg b/icons-original/_outline/mood-smile.svg similarity index 100% rename from icons-original/outline/mood-smile.svg rename to icons-original/_outline/mood-smile.svg diff --git a/icons-original/outline/mouse-left.svg b/icons-original/_outline/mouse-left.svg similarity index 100% rename from icons-original/outline/mouse-left.svg rename to icons-original/_outline/mouse-left.svg diff --git a/icons-original/outline/mouse-right.svg b/icons-original/_outline/mouse-right.svg similarity index 100% rename from icons-original/outline/mouse-right.svg rename to icons-original/_outline/mouse-right.svg diff --git a/icons-original/outline/no-duplicate.svg b/icons-original/_outline/no-duplicate.svg similarity index 100% rename from icons-original/outline/no-duplicate.svg rename to icons-original/_outline/no-duplicate.svg diff --git a/icons-original/outline/palette.svg b/icons-original/_outline/palette.svg similarity index 100% rename from icons-original/outline/palette.svg rename to icons-original/_outline/palette.svg diff --git a/icons-original/outline/photo-off-2.svg b/icons-original/_outline/photo-off-2.svg similarity index 100% rename from icons-original/outline/photo-off-2.svg rename to icons-original/_outline/photo-off-2.svg diff --git a/icons-original/outline/photo-off.svg b/icons-original/_outline/photo-off.svg similarity index 100% rename from icons-original/outline/photo-off.svg rename to icons-original/_outline/photo-off.svg diff --git a/icons-original/outline/photo-stack.svg b/icons-original/_outline/photo-stack.svg similarity index 100% rename from icons-original/outline/photo-stack.svg rename to icons-original/_outline/photo-stack.svg diff --git a/icons-original/outline/photo.svg b/icons-original/_outline/photo.svg similarity index 100% rename from icons-original/outline/photo.svg rename to icons-original/_outline/photo.svg diff --git a/icons-original/outline/pinned.svg b/icons-original/_outline/pinned.svg similarity index 100% rename from icons-original/outline/pinned.svg rename to icons-original/_outline/pinned.svg diff --git a/icons-original/outline/plus.svg b/icons-original/_outline/plus.svg similarity index 100% rename from icons-original/outline/plus.svg rename to icons-original/_outline/plus.svg diff --git a/icons-original/outline/question-mark.svg b/icons-original/_outline/question-mark.svg similarity index 100% rename from icons-original/outline/question-mark.svg rename to icons-original/_outline/question-mark.svg diff --git a/icons-original/outline/redeem.svg b/icons-original/_outline/redeem.svg similarity index 100% rename from icons-original/outline/redeem.svg rename to icons-original/_outline/redeem.svg diff --git a/icons-original/outline/refresh-2.svg b/icons-original/_outline/refresh-2.svg similarity index 100% rename from icons-original/outline/refresh-2.svg rename to icons-original/_outline/refresh-2.svg diff --git a/icons-original/outline/refresh-alert.svg b/icons-original/_outline/refresh-alert.svg similarity index 100% rename from icons-original/outline/refresh-alert.svg rename to icons-original/_outline/refresh-alert.svg diff --git a/icons-original/outline/refresh.svg b/icons-original/_outline/refresh.svg similarity index 100% rename from icons-original/outline/refresh.svg rename to icons-original/_outline/refresh.svg diff --git a/icons-original/outline/reload-alert.svg b/icons-original/_outline/reload-alert.svg similarity index 100% rename from icons-original/outline/reload-alert.svg rename to icons-original/_outline/reload-alert.svg diff --git a/icons-original/outline/rotate-clockwise.svg b/icons-original/_outline/rotate-clockwise.svg similarity index 100% rename from icons-original/outline/rotate-clockwise.svg rename to icons-original/_outline/rotate-clockwise.svg diff --git a/icons-original/outline/rotate.svg b/icons-original/_outline/rotate.svg similarity index 100% rename from icons-original/outline/rotate.svg rename to icons-original/_outline/rotate.svg diff --git a/icons-original/outline/search.svg b/icons-original/_outline/search.svg similarity index 100% rename from icons-original/outline/search.svg rename to icons-original/_outline/search.svg diff --git a/icons-original/outline/share.svg b/icons-original/_outline/share.svg similarity index 100% rename from icons-original/outline/share.svg rename to icons-original/_outline/share.svg diff --git a/icons-original/outline/shopping-cart-discount.svg b/icons-original/_outline/shopping-cart-discount.svg similarity index 100% rename from icons-original/outline/shopping-cart-discount.svg rename to icons-original/_outline/shopping-cart-discount.svg diff --git a/icons-original/outline/shopping-cart.svg b/icons-original/_outline/shopping-cart.svg similarity index 100% rename from icons-original/outline/shopping-cart.svg rename to icons-original/_outline/shopping-cart.svg diff --git a/icons-original/outline/sort-ascending-2.svg b/icons-original/_outline/sort-ascending-2.svg similarity index 100% rename from icons-original/outline/sort-ascending-2.svg rename to icons-original/_outline/sort-ascending-2.svg diff --git a/icons-original/outline/sort-ascending-letters.svg b/icons-original/_outline/sort-ascending-letters.svg similarity index 100% rename from icons-original/outline/sort-ascending-letters.svg rename to icons-original/_outline/sort-ascending-letters.svg diff --git a/icons-original/outline/sort-ascending-numbers.svg b/icons-original/_outline/sort-ascending-numbers.svg similarity index 100% rename from icons-original/outline/sort-ascending-numbers.svg rename to icons-original/_outline/sort-ascending-numbers.svg diff --git a/icons-original/outline/sort-ascending.svg b/icons-original/_outline/sort-ascending.svg similarity index 100% rename from icons-original/outline/sort-ascending.svg rename to icons-original/_outline/sort-ascending.svg diff --git a/icons-original/outline/sort-descending-2.svg b/icons-original/_outline/sort-descending-2.svg similarity index 100% rename from icons-original/outline/sort-descending-2.svg rename to icons-original/_outline/sort-descending-2.svg diff --git a/icons-original/outline/sort-descending-letters.svg b/icons-original/_outline/sort-descending-letters.svg similarity index 100% rename from icons-original/outline/sort-descending-letters.svg rename to icons-original/_outline/sort-descending-letters.svg diff --git a/icons-original/outline/sort-descending-numbers.svg b/icons-original/_outline/sort-descending-numbers.svg similarity index 100% rename from icons-original/outline/sort-descending-numbers.svg rename to icons-original/_outline/sort-descending-numbers.svg diff --git a/icons-original/outline/sort-descending.svg b/icons-original/_outline/sort-descending.svg similarity index 100% rename from icons-original/outline/sort-descending.svg rename to icons-original/_outline/sort-descending.svg diff --git a/icons-original/outline/spray.svg b/icons-original/_outline/spray.svg similarity index 100% rename from icons-original/outline/spray.svg rename to icons-original/_outline/spray.svg diff --git a/icons-original/outline/spray_2.svg b/icons-original/_outline/spray_2.svg similarity index 100% rename from icons-original/outline/spray_2.svg rename to icons-original/_outline/spray_2.svg diff --git a/icons-original/outline/stack-double.svg b/icons-original/_outline/stack-double.svg similarity index 100% rename from icons-original/outline/stack-double.svg rename to icons-original/_outline/stack-double.svg diff --git a/icons-original/outline/stack-triple.svg b/icons-original/_outline/stack-triple.svg similarity index 100% rename from icons-original/outline/stack-triple.svg rename to icons-original/_outline/stack-triple.svg diff --git a/icons-original/outline/star-off.svg b/icons-original/_outline/star-off.svg similarity index 100% rename from icons-original/outline/star-off.svg rename to icons-original/_outline/star-off.svg diff --git a/icons-original/outline/star.svg b/icons-original/_outline/star.svg similarity index 100% rename from icons-original/outline/star.svg rename to icons-original/_outline/star.svg diff --git a/icons-original/outline/thumb-down.svg b/icons-original/_outline/thumb-down.svg similarity index 100% rename from icons-original/outline/thumb-down.svg rename to icons-original/_outline/thumb-down.svg diff --git a/icons-original/outline/thumb-up.svg b/icons-original/_outline/thumb-up.svg similarity index 100% rename from icons-original/outline/thumb-up.svg rename to icons-original/_outline/thumb-up.svg diff --git a/icons-original/outline/trash-off.svg b/icons-original/_outline/trash-off.svg similarity index 100% rename from icons-original/outline/trash-off.svg rename to icons-original/_outline/trash-off.svg diff --git a/icons-original/outline/trash.svg b/icons-original/_outline/trash.svg similarity index 100% rename from icons-original/outline/trash.svg rename to icons-original/_outline/trash.svg diff --git a/icons-original/outline/unlink.svg b/icons-original/_outline/unlink.svg similarity index 100% rename from icons-original/outline/unlink.svg rename to icons-original/_outline/unlink.svg diff --git a/icons-original/outline/upload-2.svg b/icons-original/_outline/upload-2.svg similarity index 100% rename from icons-original/outline/upload-2.svg rename to icons-original/_outline/upload-2.svg diff --git a/icons-original/outline/upload.svg b/icons-original/_outline/upload.svg similarity index 100% rename from icons-original/outline/upload.svg rename to icons-original/_outline/upload.svg diff --git a/icons-original/outline/user-check.svg b/icons-original/_outline/user-check.svg similarity index 100% rename from icons-original/outline/user-check.svg rename to icons-original/_outline/user-check.svg diff --git a/icons-original/outline/user-exclamation.svg b/icons-original/_outline/user-exclamation.svg similarity index 100% rename from icons-original/outline/user-exclamation.svg rename to icons-original/_outline/user-exclamation.svg diff --git a/icons-original/outline/user-minus.svg b/icons-original/_outline/user-minus.svg similarity index 100% rename from icons-original/outline/user-minus.svg rename to icons-original/_outline/user-minus.svg diff --git a/icons-original/outline/user-off.svg b/icons-original/_outline/user-off.svg similarity index 100% rename from icons-original/outline/user-off.svg rename to icons-original/_outline/user-off.svg diff --git a/icons-original/outline/user-plus.svg b/icons-original/_outline/user-plus.svg similarity index 100% rename from icons-original/outline/user-plus.svg rename to icons-original/_outline/user-plus.svg diff --git a/icons-original/outline/user-x.svg b/icons-original/_outline/user-x.svg similarity index 100% rename from icons-original/outline/user-x.svg rename to icons-original/_outline/user-x.svg diff --git a/icons-original/outline/user.svg b/icons-original/_outline/user.svg similarity index 100% rename from icons-original/outline/user.svg rename to icons-original/_outline/user.svg diff --git a/icons-original/outline/users.svg b/icons-original/_outline/users.svg similarity index 100% rename from icons-original/outline/users.svg rename to icons-original/_outline/users.svg diff --git a/icons-original/outline/view-all.svg b/icons-original/_outline/view-all.svg similarity index 100% rename from icons-original/outline/view-all.svg rename to icons-original/_outline/view-all.svg diff --git a/icons-original/outline/viewfinder.svg b/icons-original/_outline/viewfinder.svg similarity index 100% rename from icons-original/outline/viewfinder.svg rename to icons-original/_outline/viewfinder.svg diff --git a/icons-original/outline/wifi-1.svg b/icons-original/_outline/wifi-1.svg similarity index 100% rename from icons-original/outline/wifi-1.svg rename to icons-original/_outline/wifi-1.svg diff --git a/icons-original/outline/wifi-2.svg b/icons-original/_outline/wifi-2.svg similarity index 100% rename from icons-original/outline/wifi-2.svg rename to icons-original/_outline/wifi-2.svg diff --git a/icons-original/outline/wifi-off.svg b/icons-original/_outline/wifi-off.svg similarity index 100% rename from icons-original/outline/wifi-off.svg rename to icons-original/_outline/wifi-off.svg diff --git a/icons-original/outline/wifi.svg b/icons-original/_outline/wifi.svg similarity index 100% rename from icons-original/outline/wifi.svg rename to icons-original/_outline/wifi.svg diff --git a/icons-original/outline/world.svg b/icons-original/_outline/world.svg similarity index 100% rename from icons-original/outline/world.svg rename to icons-original/_outline/world.svg diff --git a/icons-original/outline/writing.svg b/icons-original/_outline/writing.svg similarity index 100% rename from icons-original/outline/writing.svg rename to icons-original/_outline/writing.svg diff --git a/icons-original/outline/x.svg b/icons-original/_outline/x.svg similarity index 100% rename from icons-original/outline/x.svg rename to icons-original/_outline/x.svg diff --git a/icons-original/outline/zoom-in.svg b/icons-original/_outline/zoom-in.svg similarity index 100% rename from icons-original/outline/zoom-in.svg rename to icons-original/_outline/zoom-in.svg diff --git a/icons-original/outline/zoom-out.svg b/icons-original/_outline/zoom-out.svg similarity index 100% rename from icons-original/outline/zoom-out.svg rename to icons-original/_outline/zoom-out.svg diff --git a/icons-original/outline/zoom-question.svg b/icons-original/_outline/zoom-question.svg similarity index 100% rename from icons-original/outline/zoom-question.svg rename to icons-original/_outline/zoom-question.svg diff --git a/icons-original/weird/aftershoot-credit.svg b/icons-original/_weird/aftershoot-credit.svg similarity index 100% rename from icons-original/weird/aftershoot-credit.svg rename to icons-original/_weird/aftershoot-credit.svg diff --git a/icons-original/weird/aftershoot_edit.svg b/icons-original/_weird/aftershoot_edit.svg similarity index 100% rename from icons-original/weird/aftershoot_edit.svg rename to icons-original/_weird/aftershoot_edit.svg diff --git a/icons-original/weird/check_box.svg b/icons-original/_weird/check_box.svg similarity index 100% rename from icons-original/weird/check_box.svg rename to icons-original/_weird/check_box.svg diff --git a/icons-original/weird/cup.svg b/icons-original/_weird/cup.svg similarity index 100% rename from icons-original/weird/cup.svg rename to icons-original/_weird/cup.svg diff --git a/icons-original/weird/facebook.svg b/icons-original/_weird/facebook.svg similarity index 100% rename from icons-original/weird/facebook.svg rename to icons-original/_weird/facebook.svg diff --git a/icons-original/weird/facebook_color.svg b/icons-original/_weird/facebook_color.svg similarity index 100% rename from icons-original/weird/facebook_color.svg rename to icons-original/_weird/facebook_color.svg diff --git a/icons-original/weird/goodies.svg b/icons-original/_weird/goodies.svg similarity index 100% rename from icons-original/weird/goodies.svg rename to icons-original/_weird/goodies.svg diff --git a/icons-original/weird/google-color.svg b/icons-original/_weird/google-color.svg similarity index 100% rename from icons-original/weird/google-color.svg rename to icons-original/_weird/google-color.svg diff --git a/icons-original/weird/grab-hand.svg b/icons-original/_weird/grab-hand.svg similarity index 100% rename from icons-original/weird/grab-hand.svg rename to icons-original/_weird/grab-hand.svg diff --git a/icons-original/weird/logo.svg b/icons-original/_weird/logo.svg similarity index 100% rename from icons-original/weird/logo.svg rename to icons-original/_weird/logo.svg diff --git a/icons-original/weird/thunder.svg b/icons-original/_weird/thunder.svg similarity index 100% rename from icons-original/weird/thunder.svg rename to icons-original/_weird/thunder.svg diff --git a/icons-original/weird/twitter_color.svg b/icons-original/_weird/twitter_color.svg similarity index 100% rename from icons-original/weird/twitter_color.svg rename to icons-original/_weird/twitter_color.svg diff --git a/icons-original/fill/apple-all.svg b/icons-original/fill/apple-all.svg deleted file mode 100644 index 90a0e20b..00000000 --- a/icons-original/fill/apple-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icons-original/fill/apple.svg b/icons-original/fill/apple.svg new file mode 100644 index 00000000..00c20292 --- /dev/null +++ b/icons-original/fill/apple.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/icons-original/fill/checkBlue.svg b/icons-original/fill/checkBlue.svg deleted file mode 100644 index 6aab7c55..00000000 --- a/icons-original/fill/checkBlue.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons-original/fill/alert-circle-fill.svg b/icons-original/fill/di/alert-circle-fill.svg similarity index 100% rename from icons-original/fill/alert-circle-fill.svg rename to icons-original/fill/di/alert-circle-fill.svg diff --git a/icons-original/fill/alert-triangle-fill.svg b/icons-original/fill/di/alert-triangle-fill.svg similarity index 100% rename from icons-original/fill/alert-triangle-fill.svg rename to icons-original/fill/di/alert-triangle-fill.svg diff --git a/icons-original/fill/scissors-fill.svg b/icons-original/fill/scissors-fill.svg index a3ed51b4..3fb70ba2 100644 --- a/icons-original/fill/scissors-fill.svg +++ b/icons-original/fill/scissors-fill.svg @@ -1,8 +1,8 @@ - - + + - + diff --git a/package.json b/package.json index bfc01bcc..5ef7e8be 100644 --- a/package.json +++ b/package.json @@ -16,14 +16,11 @@ "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "o:svgs": "node ./scripts/optimizeSvgs.mjs", - "o:svgs@fill": "node ./scripts/optimizeSvgs.mjs --iconType fill", - "o:svgs@mix": "node ./scripts/optimizeSvgs.mjs --iconType mix", + "gen:metadata": "node ./scripts/writeSvgMetadata.mjs", "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", - "gen:unicons": "npm-run-all -s o:svgs gen:childsvgs build:icons remove:dir", - "gen:unicons@fill": "npm-run-all -s o:svgs@fill gen:childsvgs build:icons remove:dir", - "gen:unicons@mix": "npm-run-all -s o:svgs@mix gen:childsvgs build:icons remove:dir", + "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons remove:dir", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index bd37332b..edead97e 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -6,8 +6,9 @@ import exportIconTemplate from './exportIconTemplate.mjs' import generateExportsFile from './generateExportsFile.mjs' import generateIconFiles from './generateIconFiles.mjs' import generateStories from './generateStories.mjs' -import { getCurrentDirPath, readSvgDirectory } from './helpers.mjs' +import { getCurrentDirPath, readSvgDirectory, readSvgMetadata } from './helpers.mjs' import renderIconsObject from './renderIconsObject.mjs' +import renderMetadataObj from './renderMetadataObj.mjs' const cliArguments = getArgumentOptions(process.argv.slice(2)) @@ -27,8 +28,10 @@ const { renderUniqueKey = false, iconFileExtension = '.tsx', exportFileName = 'i async function buildIcons() { const svgFiles = readSvgDirectory(ICONS_DIR) + const svgMetada = readSvgMetadata(ICONS_DIR) const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) + const svgMetadata = renderMetadataObj(svgMetada, ICONS_DIR) generateIconFiles({ outputFolderName: OUTPUT_FOLDER_NAME, @@ -37,6 +40,7 @@ async function buildIcons() { iconsDir: ICONS_DIR, template: exportIconTemplate, iconFileExtension, + svgMetadata, }) // Generates entry files for the compiler filled with icons exports @@ -51,6 +55,7 @@ async function buildIcons() { iconNodes: svgObjs, iconOutputFolderName: OUTPUT_FOLDER_NAME, storyGroupName: 'omega', + metadata: svgMetadata, }) } diff --git a/scripts/default-attrsxxx.json b/scripts/default-attrsxxx.json deleted file mode 100644 index 35a95a3f..00000000 --- a/scripts/default-attrsxxx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "xmlns": "http://www.w3.org/2000/svg", - "width": 24, - "height": 24, - "viewBox": "0 0 24 24", - "fill": "none", - "stroke": "currentColor", - "stroke-width": 2, - "stroke-linecap": "round", - "stroke-linejoin": "round" -} diff --git a/scripts/exportIconTemplate.mjs b/scripts/exportIconTemplate.mjs index d0da3815..c6c14177 100644 --- a/scripts/exportIconTemplate.mjs +++ b/scripts/exportIconTemplate.mjs @@ -1,11 +1,11 @@ /* eslint-disable import/no-extraneous-dependencies */ -export default ({ componentName, originalAttributes, svgChildren }) => { +export default ({ componentName, originalAttributes, svgChildren, svgType }) => { return ` import createASIcon from '../createASIcon'; import React from 'react'; -const ${componentName} = createASIcon('${componentName}', ${JSON.stringify(originalAttributes, null, 2)}, ${svgChildren} ); +const ${componentName} = createASIcon('${componentName}', ${JSON.stringify(originalAttributes, null, 2)}, ${svgChildren}, "${svgType}" ); export default ${componentName}; ` diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index bdafcb1a..c969a525 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -1,6 +1,6 @@ import { toPascalCase } from './helpers.mjs' -export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = 'testing' }) => { +export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = 'testing', iconType }) => { const iconNamePascalCase = toPascalCase(iconName) const forFill = isFillIcon @@ -11,6 +11,22 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' }` : '' + const forColorTemplate = + iconType === 'outline' + ? ` + export const Red: Story = { + args: { + color: 'red', + }, + }` + : ` + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + ` + return `import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' @@ -46,11 +62,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + ${forColorTemplate} export const inActive: Story = { args: { diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index 728ebf14..9e044d00 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -11,7 +11,7 @@ const SVG_CHILDREN_DIR = path.resolve(currentDir, '../svg-children') const svgChildren = readSvgDirectory(SVG_CHILDREN_DIR) const svgChildrenObjs = await renderSvgChildrenObj(svgChildren, SVG_CHILDREN_DIR) -export default async ({ outputFolderName, svgObjs, outputDirectory, template, iconFileExtension = '.jsx', iconsDir }) => { +export default async ({ outputFolderName, svgObjs, outputDirectory, template, iconFileExtension = '.jsx', iconsDir, svgMetadata }) => { const svgs = Object.keys(svgObjs) const iconsDistDirectory = path.join(outputDirectory, outputFolderName) @@ -30,6 +30,7 @@ export default async ({ outputFolderName, svgObjs, outputDirectory, template, ic componentName, originalAttributes, svgChildren: svgChildrenObjs[svgName], + svgType: svgMetadata[svgName].icon_type, }) const outpust = await prettier.format(elementTemplate, { diff --git a/scripts/generateStories.mjs b/scripts/generateStories.mjs index e548e4a0..d4ff15ff 100644 --- a/scripts/generateStories.mjs +++ b/scripts/generateStories.mjs @@ -3,7 +3,7 @@ import path from 'path' import exportStoryTemplate from './exportStoryTemplate.mjs' import { toPascalCase } from './helpers.mjs' -export default ({ outputDirectory, iconNodes, iconOutputFolderName, storyGroupName }) => { +export default ({ outputDirectory, iconNodes, iconOutputFolderName, storyGroupName, metadata }) => { const icons = Object.keys(iconNodes) // Ensure the output directory exists @@ -14,7 +14,7 @@ export default ({ outputDirectory, iconNodes, iconOutputFolderName, storyGroupNa icons.forEach(async (iconName) => { const iconNamePascalCase = toPascalCase(iconName) const storyName = `${iconNamePascalCase}.stories.tsx` - const storyTemplate = exportStoryTemplate({ iconName, iconOutputFolderName, storyGroupName }) + const storyTemplate = exportStoryTemplate({ iconName, iconOutputFolderName, storyGroupName, iconType: metadata[iconName].icon_type }) const filePath = path.join(outputDirectory, storyName) diff --git a/scripts/helpers.mjs b/scripts/helpers.mjs index f5382288..77a9a5fd 100644 --- a/scripts/helpers.mjs +++ b/scripts/helpers.mjs @@ -111,6 +111,9 @@ export const readMetadata = (fileName, directory) => JSON.parse(fs.readFileSync( export const readSvgDirectory = (directory, fileExtension = '.svg') => fs.readdirSync(directory).filter((file) => path.extname(file) === fileExtension) +export const readSvgMetadata = (directory, fileExtension = '.json') => + fs.readdirSync(directory).filter((file) => path.extname(file) === fileExtension) + /** * Read svg from directory * @@ -213,3 +216,30 @@ export function minifySvg(string) { .trim() : '' } + +export const isDirectory = async (source) => { + try { + const stat = await fs.promises.lstat(source) + return stat.isDirectory() + } catch (error) { + console.error('Error checking if source is a directory:', error) + return false + } +} + +// Function to get directories in BASE_PATH +export const getDirectories = async (basePath) => { + try { + const files = await fs.promises.readdir(basePath) + const directories = await Promise.all( + files.map(async (name) => { + const fullPath = path.join(basePath, name) + return (await isDirectory(fullPath)) ? fullPath : null + }), + ) + return directories.filter((dir) => dir !== null) + } catch (error) { + console.error('Unable to scan directory:', error) + return [] + } +} diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs index 3c4489ba..6a74bc26 100644 --- a/scripts/optimizeSvgs.mjs +++ b/scripts/optimizeSvgs.mjs @@ -1,34 +1,40 @@ import fs from 'fs' -import getArgumentOptions from 'minimist' import path from 'path' -import { readSvgDirectory, writeSvgFile } from './helpers.mjs' +import { getDirectories, readSvgDirectory, writeSvgFile } from './helpers.mjs' import processSvg from './processSvg.mjs' const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) -const BASE_ICON_DIR = UNICON_CONFIG.icon_input_dir +const INPUT_ICON_DIR = UNICON_CONFIG.icon_input_dir -const ICONS_DIR = path.resolve(process.cwd(), 'icons-original/outline') -const OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') +const ICONS_INPUT_BASE_PATH = path.resolve(process.cwd(), INPUT_ICON_DIR) +const OUTPUT_OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') -const cliArguments = getArgumentOptions(process.argv.slice(2)) - -const { iconType = 'outline' } = cliArguments +const ICON_DIRS = await getDirectories(ICONS_INPUT_BASE_PATH) // Ensure the optimized directory exists -if (!fs.existsSync(OPTIMIZED_ICONS_DIR)) { - fs.mkdirSync(OPTIMIZED_ICONS_DIR, { recursive: true }) +if (!fs.existsSync(OUTPUT_OPTIMIZED_ICONS_DIR)) { + fs.mkdirSync(OUTPUT_OPTIMIZED_ICONS_DIR, { recursive: true }) } console.log(`Optimizing SVGs...`) -const svgFiles = readSvgDirectory(ICONS_DIR) +// const svgFiles = readSvgDirectory(ICONS_INPUT_PATH) const optimizeSvgFiles = async () => { - for (const svgFile of svgFiles) { - const content = fs.readFileSync(path.join(ICONS_DIR, svgFile), 'utf-8') - const optimizedSvg = await processSvg(content, svgFile, iconType) - writeSvgFile(svgFile, OPTIMIZED_ICONS_DIR, optimizedSvg) + for (const FOLDER_PATH of ICON_DIRS) { + const svgFiles = readSvgDirectory(FOLDER_PATH) + + const iconType = path.basename(FOLDER_PATH) + if (iconType.startsWith('_')) { + continue + } + + for (const svgFile of svgFiles) { + const content = fs.readFileSync(path.resolve(FOLDER_PATH, svgFile), 'utf-8') + const optimizedSvg = await processSvg(content, svgFile, iconType) + writeSvgFile(svgFile, OUTPUT_OPTIMIZED_ICONS_DIR, optimizedSvg) + } } } diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 0a21aa2c..8632fed4 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -1,6 +1,6 @@ import * as prettier from 'prettier' import { optimize } from 'svgo' -import { parseSync } from 'svgson' +import { parseSync, stringify } from 'svgson' /** * Optimize SVG with `svgo`. @@ -8,49 +8,60 @@ import { parseSync } from 'svgson' * @param {object} options - An options object for deciding outline, fill, or mix. * @returns {Promise} An optimized svg */ -async function optimizeSvg(svg, path) { - const result = optimize(svg, { - path, - plugins: [ - { - name: 'preset-default', - params: { - overrides: { - convertShapeToPath: false, - mergePaths: false, - removeViewBox: false, - }, - }, - }, - { - name: 'removeAttrs', - params: { - attrs: '(stroke|stroke-width)', +async function optimizeSvg(svg, path, iconType) { + // const removeAttrsMapping = { + // outline: '(stroke|stroke-width)', + // fill: '(stroke-width)', + // mix: '(stroke-width)', + // } + + const plugins = [ + { + name: 'preset-default', + params: { + overrides: { + convertShapeToPath: false, + mergePaths: false, + removeViewBox: false, }, }, - { - name: 'removeDimensions', + }, + { + name: 'removeAttrs', + params: { + attrs: '(stroke|stroke-width|style)', }, + }, + { + name: 'removeDimensions', + }, + ] - // custom plugin - // { - // name: 'replaceStroke', - // type: 'visitor', - // fn: (ast) => { - // const visit = (node) => { - // if (node.attributes && node.attributes.stroke) { - // node.attributes.stroke = 'currentColor' - // } - // if (node.children) { - // for (const child of node.children) { - // visit(child) - // } - // } - // } - // visit(ast) - // }, - // }, - ], + const customPlugInUpdateFillValue = { + name: 'updateFillValue', + type: 'visitor', + fn: (ast) => { + const visit = (node) => { + if (node.attributes && node.attributes.fill) { + node.attributes.fill = 'currentColor' + } + if (node.children) { + for (const child of node.children) { + visit(child) + } + } + } + visit(ast) + }, + } + + if (iconType === 'fill') { + plugins.push(customPlugInUpdateFillValue) + } + + const result = optimize(svg, { + path, + plugins, }) return result.data @@ -61,10 +72,13 @@ async function optimizeSvg(svg, path) { * @param {string} svg - An SVG string. * @returns {string} An SVG string, included with the default attributes. */ -function setAttrs(svg) { +function setAttrs(svg, iconType, svgProcessOption) { const contents = parseSync(svg) - // contents.attributes = DEFAULT_ATTRS - // return stringify(contents) + contents.attributes = { + ...contents.attributes, + ...svgProcessOption[iconType], + } + return stringify(contents) } /** @@ -75,8 +89,8 @@ function setAttrs(svg) { */ function processSvg(svg, path, iconType) { return ( - optimizeSvg(svg, path) - // .then(setAttrs) + optimizeSvg(svg, path, iconType) + // .then((optimizedSvg) => setAttrs(optimizedSvg, iconType, svgProcessOption)) .then((optimizedSvg) => prettier.format(optimizedSvg, { parser: 'babel' })) // remove semicolon inserted by prettier // because prettier thinks it's formatting JSX not HTML diff --git a/scripts/renderIconsObject.mjs b/scripts/renderIconsObject.mjs index 6078366b..7e4ae687 100644 --- a/scripts/renderIconsObject.mjs +++ b/scripts/renderIconsObject.mjs @@ -5,14 +5,14 @@ import { generateHashedKey, hasDuplicatedChildren, readSvg } from './helpers.mjs /** * Build an object in the format: `{ : }`. * @param {string[]} svgFiles - A list of filenames. - * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. + * @param {string} directory directory - A function that returns the contents of an SVG file given a filename. * @returns {Object} */ -export default (svgFiles, iconsDirectory, renderUniqueKey = false) => +export default (svgFiles, directory, renderUniqueKey = false) => svgFiles .map((svgFile) => { const name = basename(svgFile, '.svg') - const svg = readSvg(svgFile, iconsDirectory) + const svg = readSvg(svgFile, directory) const contents = parseSync(svg) if (!(contents.children && contents.children.length)) { diff --git a/scripts/renderMetadataObj.mjs b/scripts/renderMetadataObj.mjs new file mode 100644 index 00000000..7270c827 --- /dev/null +++ b/scripts/renderMetadataObj.mjs @@ -0,0 +1,20 @@ +import fs from 'fs' +import path, { basename } from 'path' + +/** + * Build an object in the format: `{ : }`. + * @param {string[]} svgMetadata - A list of filenames. + * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. + * @returns {Object} + */ +export default (svgMetadata, iconsDirectory) => + svgMetadata + .map((data) => { + const name = basename(data, '.json') + const json = JSON.parse(fs.readFileSync(path.join(iconsDirectory, data), 'utf8')) + return { name, json } + }) + .reduce((objs, JSON) => { + objs[JSON.name] = JSON.json + return objs + }, {}) diff --git a/scripts/writeSvgMetadata.mjs b/scripts/writeSvgMetadata.mjs new file mode 100644 index 00000000..245fc3d2 --- /dev/null +++ b/scripts/writeSvgMetadata.mjs @@ -0,0 +1,56 @@ +import fs from 'fs' +import path, { basename } from 'path' +import { getDirectories, readSvgDirectory } from './helpers.mjs' + +const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) + +const INPUT_ICON_DIR = UNICON_CONFIG.icon_input_dir +const svgProcessOptions = UNICON_CONFIG.svg_process_options + +const ICONS_INPUT_BASE_PATH = path.resolve(process.cwd(), INPUT_ICON_DIR) +const OUTPUT_OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') + +const ICON_DIRS = await getDirectories(ICONS_INPUT_BASE_PATH) + +// Ensure the optimized directory exists +if (!fs.existsSync(OUTPUT_OPTIMIZED_ICONS_DIR)) { + fs.mkdirSync(OUTPUT_OPTIMIZED_ICONS_DIR, { recursive: true }) +} + +console.log(`Writing Metadata...`) + +// const svgFiles = readSvgDirectory(ICONS_INPUT_PATH) + +const writeFiles = async () => { + for (const FOLDER_PATH of ICON_DIRS) { + const svgFiles = readSvgDirectory(FOLDER_PATH) + + const iconType = path.basename(FOLDER_PATH) + if (iconType.startsWith('_')) { + continue + } + + for (const svgFile of svgFiles) { + const baseName = basename(svgFile, '.svg') + + const svgJSON = { + icon_type: iconType, + name: baseName, + svg_process_option: svgProcessOptions[iconType], + } + + const content = JSON.stringify(svgJSON, null, 2) + const jsonName = baseName + '.json' + + fs.writeFileSync(path.join(OUTPUT_OPTIMIZED_ICONS_DIR, jsonName), content, 'utf-8') + } + } +} + +writeFiles() + .then(() => { + console.log('SVG Metadata generated.') + }) + .catch((error) => { + console.error('Error generating metadata.', error) + }) diff --git a/src/.DS_Store b/src/.DS_Store index e3082a548ab8a8a6555e7b63a275b3ee4ffc6f57..149617850c0291f3934daa3fbd8546ecb073c328 100644 GIT binary patch delta 31 ncmZoMXfc@J&&a+pU^gQp`(z%b( - ({ color = 'currentColor', size, inActive = false, fillColor = 'none', className, children, originalAttributes, svgChildren, ...rest }, ref) => { + ( + { + color = 'currentColor', + size, + inActive = false, + fillColor = 'none', + className, + children, + originalAttributes, + svgChildren, + svgType, + ...rest + }, + ref, + ) => { return createElement( 'svg', { ref, ...defaultAttributes, ...originalAttributes, - stroke: inActive ? '#777777' : color, + ...(svgType === 'outline' && { stroke: inActive ? '#777777' : color }), ...(size ? { style: { width: size, height: 'auto' } } : {}), fill: fillColor, - className: cn(`w-[24px] h-[24px] shrink-0 stroke-[1.5px]`, className), + className: cn( + `w-[24px] h-[24px] shrink-0 `, + svgType === 'outline' && 'stroke-[1.5px]', + svgType === 'fill' && 'text-[#555555]', + inActive && 'text-[#777777]', + className, + ), + ...rest, }, svgChildren, diff --git a/src/createASIcon.ts b/src/createASIcon.ts index 0fc76c6a..654a9d3a 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -11,12 +11,13 @@ import { cn } from './utils/cn' * @param {unknown} originalAttributes * @returns {ForwardRefExoticComponent} LucideIcon */ -const createASIcon = (iconName: string, originalAttributes: unknown, svgChildren: React.SVGProps) => { +const createASIcon = (iconName: string, originalAttributes: unknown, svgChildren: React.SVGProps, svgType: string) => { const Component = forwardRef(({ className, ...props }, ref) => createElement(Icon, { ref, originalAttributes, svgChildren, + svgType, className: cn(`unicon unicon-${toKebabCase(iconName)}`, className), ...props, }), diff --git a/src/defaultAttributes.ts b/src/defaultAttributes.ts index 5f645b69..cbc7d985 100644 --- a/src/defaultAttributes.ts +++ b/src/defaultAttributes.ts @@ -1,11 +1,3 @@ export default { xmlns: 'http://www.w3.org/2000/svg', - // stroke: 'currentColor', - // width: 24, - // height: 24, - // viewBox: '0 0 24 24', - // fill: 'none', - // strokeWidth: 2, - // strokeLinecap: 'round', - // strokeLinejoin: 'round', } diff --git a/src/icons-omega/Crown Play.tsx b/src/icons-omega/Crown Play.tsx new file mode 100644 index 00000000..014ec320 --- /dev/null +++ b/src/icons-omega/Crown Play.tsx @@ -0,0 +1,23 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CrownPlay = createASIcon( + "CrownPlay", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default CrownPlay; diff --git a/src/icons-omega/aftershoot-logo.tsx b/src/icons-omega/aftershoot-logo.tsx new file mode 100644 index 00000000..05e37dbf --- /dev/null +++ b/src/icons-omega/aftershoot-logo.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AftershootLogo = createASIcon( + "AftershootLogo", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , +); + +export default AftershootLogo; diff --git a/src/icons-omega/alert-circle-fill.tsx b/src/icons-omega/alert-circle-fill.tsx new file mode 100644 index 00000000..300eb6dd --- /dev/null +++ b/src/icons-omega/alert-circle-fill.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertCircleFill = createASIcon( + "AlertCircleFill", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 21 20", + fill: "#555555", + }, + + + + + + + + + + + + , +); + +export default AlertCircleFill; diff --git a/src/icons-omega/alert-triangle-fill.tsx b/src/icons-omega/alert-triangle-fill.tsx new file mode 100644 index 00000000..e80d1c76 --- /dev/null +++ b/src/icons-omega/alert-triangle-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertTriangleFill = createASIcon( + "AlertTriangleFill", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 54 46", + }, + + + + , +); + +export default AlertTriangleFill; diff --git a/src/icons-omega/apple-all.tsx b/src/icons-omega/apple-all.tsx new file mode 100644 index 00000000..db1ad933 --- /dev/null +++ b/src/icons-omega/apple-all.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AppleAll = createASIcon( + "AppleAll", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 17 20", + }, + + + , +); + +export default AppleAll; diff --git a/src/icons-omega/arrow-curve-fill.tsx b/src/icons-omega/arrow-curve-fill.tsx new file mode 100644 index 00000000..0572bd48 --- /dev/null +++ b/src/icons-omega/arrow-curve-fill.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowCurveFill = createASIcon( + "ArrowCurveFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 16 11", + }, + + + , +); + +export default ArrowCurveFill; diff --git a/src/icons-omega/checkBlue.tsx b/src/icons-omega/checkBlue.tsx new file mode 100644 index 00000000..cb3894d9 --- /dev/null +++ b/src/icons-omega/checkBlue.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckBlue = createASIcon( + "CheckBlue", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 17 16", + fill: "#555555", + }, + + + + + + + + + + , +); + +export default CheckBlue; diff --git a/src/icons-omega/check_box.tsx b/src/icons-omega/check_box.tsx new file mode 100644 index 00000000..2b5a0400 --- /dev/null +++ b/src/icons-omega/check_box.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckBox = createASIcon( + "CheckBox", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + + + , +); + +export default CheckBox; diff --git a/src/icons-omega/check_box_empty.tsx b/src/icons-omega/check_box_empty.tsx new file mode 100644 index 00000000..d1164bb1 --- /dev/null +++ b/src/icons-omega/check_box_empty.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckBoxEmpty = createASIcon( + "CheckBoxEmpty", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + , +); + +export default CheckBoxEmpty; diff --git a/src/icons-omega/circle-fill.tsx b/src/icons-omega/circle-fill.tsx new file mode 100644 index 00000000..6b11379a --- /dev/null +++ b/src/icons-omega/circle-fill.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleFill = createASIcon( + "CircleFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , +); + +export default CircleFill; diff --git a/src/icons-omega/cloud-upload-accent.tsx b/src/icons-omega/cloud-upload-accent.tsx new file mode 100644 index 00000000..82757b42 --- /dev/null +++ b/src/icons-omega/cloud-upload-accent.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CloudUploadAccent = createASIcon( + "CloudUploadAccent", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 48 48", + }, + + + + , +); + +export default CloudUploadAccent; diff --git a/src/icons-omega/collection.tsx b/src/icons-omega/collection.tsx new file mode 100644 index 00000000..09c1467f --- /dev/null +++ b/src/icons-omega/collection.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Collection = createASIcon( + "Collection", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 25 24", + }, + + + + + + + + + + + , +); + +export default Collection; diff --git a/src/icons-omega/crown-2-fill.tsx b/src/icons-omega/crown-2-fill.tsx new file mode 100644 index 00000000..b9dbe063 --- /dev/null +++ b/src/icons-omega/crown-2-fill.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown2Fill = createASIcon( + "Crown2Fill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default Crown2Fill; diff --git a/src/icons-omega/download-accent.tsx b/src/icons-omega/download-accent.tsx new file mode 100644 index 00000000..2ca729b9 --- /dev/null +++ b/src/icons-omega/download-accent.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DownloadAccent = createASIcon( + "DownloadAccent", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default DownloadAccent; diff --git a/src/icons-omega/facebook.tsx b/src/icons-omega/facebook.tsx new file mode 100644 index 00000000..b62c4761 --- /dev/null +++ b/src/icons-omega/facebook.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Facebook = createASIcon( + "Facebook", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , +); + +export default Facebook; diff --git a/src/icons-omega/flag-fill.tsx b/src/icons-omega/flag-fill.tsx new file mode 100644 index 00000000..a67178ce --- /dev/null +++ b/src/icons-omega/flag-fill.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FlagFill = createASIcon( + "FlagFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 20 20", + }, + + + + + + + + + + + , +); + +export default FlagFill; diff --git a/src/icons-omega/folder-fill.tsx b/src/icons-omega/folder-fill.tsx new file mode 100644 index 00000000..c6ac4915 --- /dev/null +++ b/src/icons-omega/folder-fill.tsx @@ -0,0 +1,44 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderFill = createASIcon( + "FolderFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + , +); + +export default FolderFill; diff --git a/src/icons-omega/grid-view-1.tsx b/src/icons-omega/grid-view-1.tsx new file mode 100644 index 00000000..72e5f10a --- /dev/null +++ b/src/icons-omega/grid-view-1.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView1 = createASIcon( + "GridView1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , +); + +export default GridView1; diff --git a/src/icons-omega/grid-view-2.tsx b/src/icons-omega/grid-view-2.tsx new file mode 100644 index 00000000..752e2184 --- /dev/null +++ b/src/icons-omega/grid-view-2.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView2 = createASIcon( + "GridView2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , +); + +export default GridView2; diff --git a/src/icons-omega/home-mix.tsx b/src/icons-omega/home-mix.tsx new file mode 100644 index 00000000..78bd8ee4 --- /dev/null +++ b/src/icons-omega/home-mix.tsx @@ -0,0 +1,54 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const HomeMix = createASIcon( + "HomeMix", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 21 20", + }, + + + + + + + + + + + + + + , +); + +export default HomeMix; diff --git a/src/icons-omega/image-border.tsx b/src/icons-omega/image-border.tsx new file mode 100644 index 00000000..a7bb7823 --- /dev/null +++ b/src/icons-omega/image-border.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ImageBorder = createASIcon( + "ImageBorder", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default ImageBorder; diff --git a/src/icons-omega/index.ts b/src/icons-omega/index.ts index bcc6a970..f47a3471 100644 --- a/src/icons-omega/index.ts +++ b/src/icons-omega/index.ts @@ -1,175 +1,17 @@ -export { default as Import } from './Import'; -export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; -export { default as Adjustments } from './adjustments'; -export { default as Alarm } from './alarm'; -export { default as AlertCircle } from './alert-circle'; -export { default as AlertOctagon } from './alert-octagon'; -export { default as AlertTriangle } from './alert-triangle'; -export { default as ArrowDown } from './arrow-down'; -export { default as ArrowLeft } from './arrow-left'; -export { default as ArrowNarrowLeft } from './arrow-narrow-left'; -export { default as ArrowNarrowRight } from './arrow-narrow-right'; -export { default as ArrowRight } from './arrow-right'; -export { default as ArrowSort2 } from './arrow-sort-2'; -export { default as ArrowUp } from './arrow-up'; -export { default as ArrowsDiagonal } from './arrows-diagonal'; -export { default as ArrowsSort } from './arrows-sort'; -export { default as Atom } from './atom'; -export { default as Ban } from './ban'; -export { default as BellMinus } from './bell-minus'; -export { default as BellOff } from './bell-off'; -export { default as BellPlus } from './bell-plus'; -export { default as BellRinging2 } from './bell-ringing-2'; -export { default as BellRinging } from './bell-ringing'; -export { default as BellX } from './bell-x'; -export { default as Bell } from './bell'; -export { default as BrandFacebook } from './brand-facebook'; -export { default as BrandGithub } from './brand-github'; -export { default as BrandInstagram } from './brand-instagram'; -export { default as BrandTwitter } from './brand-twitter'; -export { default as BrandWhatsapp } from './brand-whatsapp'; -export { default as BrandYoutube } from './brand-youtube'; -export { default as BulbOff } from './bulb-off'; -export { default as Bulb } from './bulb'; -export { default as Check } from './check'; -export { default as ChevronDown } from './chevron-down'; -export { default as ChevronLeft } from './chevron-left'; -export { default as ChevronRight } from './chevron-right'; -export { default as ChevronUp } from './chevron-up'; -export { default as ChevronsLeft } from './chevrons-left'; -export { default as ChevronsRight } from './chevrons-right'; -export { default as CircleCheck2 } from './circle-check-2'; -export { default as CircleCheck } from './circle-check'; -export { default as Circle } from './circle'; -export { default as Clock } from './clock'; -export { default as CloudUpload } from './cloud-upload'; -export { default as ColorSwatch } from './color-swatch'; -export { default as Confetti } from './confetti'; -export { default as Copy } from './copy'; -export { default as Crown } from './crown'; -export { default as CurrencyDollar } from './currency-dollar'; -export { default as CurrentLocation } from './current-location'; -export { default as DeviceDesktopAnalytics } from './device-desktop-analytics'; -export { default as DeviceDesktopOff } from './device-desktop-off'; -export { default as DeviceDesktop } from './device-desktop'; -export { default as DeviceLaptop } from './device-laptop'; -export { default as DeviceTv } from './device-tv'; -export { default as Diamond } from './diamond'; -export { default as Discount2 } from './discount-2'; -export { default as Discount } from './discount'; -export { default as Disk } from './disk'; -export { default as DotsVertical } from './dots-vertical'; -export { default as Download } from './download'; -export { default as Edit } from './edit'; -export { default as ExternalLink } from './external-link'; -export { default as EyeCheck } from './eye-check'; -export { default as EyeOff } from './eye-off'; -export { default as Eye } from './eye'; -export { default as FileDownload } from './file-download'; -export { default as FileExport } from './file-export'; -export { default as FileReport } from './file-report'; -export { default as FileSearch } from './file-search'; -export { default as FilterOff } from './filter-off'; -export { default as Filter } from './filter'; -export { default as FlagOff } from './flag-off'; -export { default as Flag } from './flag'; -export { default as FolderDownload } from './folder-download'; -export { default as FolderEye } from './folder-eye'; -export { default as FolderMinus } from './folder-minus'; -export { default as FolderOff } from './folder-off'; -export { default as FolderPlus } from './folder-plus'; -export { default as FolderUpload } from './folder-upload'; -export { default as FolderX } from './folder-x'; -export { default as Folder } from './folder'; -export { default as Folders } from './folders'; -export { default as GridDots } from './grid-dots'; -export { default as Home2 } from './home-2'; -export { default as InfoCircle } from './info-circle'; -export { default as InfoCirlce2 } from './info-cirlce-2'; -export { default as InfoSquare } from './info-square'; -export { default as Info } from './info'; -export { default as Key2 } from './key-2'; -export { default as KeyDuplicate } from './key-duplicate'; -export { default as Key } from './key'; -export { default as Link } from './link'; -export { default as Loader } from './loader'; -export { default as Lock2 } from './lock-2'; -export { default as LockOff } from './lock-off'; -export { default as LockOpen } from './lock-open'; -export { default as Lock } from './lock'; -export { default as Mail } from './mail'; -export { default as Map2 } from './map-2'; -export { default as MapPinOff } from './map-pin-off'; -export { default as MapPin } from './map-pin'; -export { default as Minus } from './minus'; -export { default as MoodCrazyHappy } from './mood-crazy-happy'; -export { default as MoodEmpty } from './mood-empty'; -export { default as MoodSad } from './mood-sad'; -export { default as MoodSmile } from './mood-smile'; -export { default as MouseLeft } from './mouse-left'; -export { default as MouseRight } from './mouse-right'; -export { default as NoDuplicate } from './no-duplicate'; -export { default as Palette } from './palette'; -export { default as PhotoOff2 } from './photo-off-2'; -export { default as PhotoOff } from './photo-off'; -export { default as PhotoStack } from './photo-stack'; -export { default as Photo } from './photo'; -export { default as Pinned } from './pinned'; -export { default as Plus } from './plus'; -export { default as QuestionMark } from './question-mark'; -export { default as Redeem } from './redeem'; -export { default as Refresh2 } from './refresh-2'; -export { default as RefreshAlert } from './refresh-alert'; -export { default as Refresh } from './refresh'; -export { default as ReloadAlert } from './reload-alert'; -export { default as Rotate90 } from './rotate-90'; -export { default as RotateClockwise } from './rotate-clockwise'; -export { default as Rotate } from './rotate'; -export { default as Search } from './search'; -export { default as Share } from './share'; -export { default as ShoppingCartDiscount } from './shopping-cart-discount'; -export { default as ShoppingCart } from './shopping-cart'; -export { default as SortAscending2 } from './sort-ascending-2'; -export { default as SortAscendingLetters } from './sort-ascending-letters'; -export { default as SortAscendingNumbers } from './sort-ascending-numbers'; -export { default as SortAscending } from './sort-ascending'; -export { default as SortDescending2 } from './sort-descending-2'; -export { default as SortDescendingLetters } from './sort-descending-letters'; -export { default as SortDescendingNumbers } from './sort-descending-numbers'; -export { default as SortDescending } from './sort-descending'; -export { default as Spray } from './spray'; -export { default as Spray2 } from './spray_2'; -export { default as Stack2 } from './stack-2'; -export { default as StackDouble } from './stack-double'; -export { default as StackTriple } from './stack-triple'; -export { default as Stack } from './stack'; -export { default as StarOff } from './star-off'; -export { default as Star } from './star'; -export { default as ThumbDown } from './thumb-down'; -export { default as ThumbUp } from './thumb-up'; -export { default as TrashOff } from './trash-off'; -export { default as Trash } from './trash'; -export { default as Unlink } from './unlink'; -export { default as Upload2 } from './upload-2'; -export { default as Upload } from './upload'; -export { default as UserCheck } from './user-check'; -export { default as UserExclamation } from './user-exclamation'; -export { default as UserMinus } from './user-minus'; -export { default as UserOff } from './user-off'; -export { default as UserPlus } from './user-plus'; -export { default as UserX } from './user-x'; -export { default as User } from './user'; -export { default as Users } from './users'; -export { default as ViewAll } from './view-all'; -export { default as Viewfinder } from './viewfinder'; -export { default as Wifi1 } from './wifi-1'; -export { default as Wifi2 } from './wifi-2'; -export { default as WifiOff } from './wifi-off'; -export { default as Wifi } from './wifi'; -export { default as World } from './world'; -export { default as Writing } from './writing'; -export { default as X } from './x'; -export { default as ZoomIn } from './zoom-in'; -export { default as ZoomOut } from './zoom-out'; -export { default as ZoomQuestion } from './zoom-question'; +export { default as AftershootLogo } from './aftershoot-logo'; +export { default as AppleAll } from './apple-all'; +export { default as ArrowCurveFill } from './arrow-curve-fill'; +export { default as CircleFill } from './circle-fill'; +export { default as Crown2Fill } from './crown-2-fill'; +export { default as Facebook } from './facebook'; +export { default as GridView1 } from './grid-view-1'; +export { default as GridView2 } from './grid-view-2'; +export { default as KeyDuplicateFill } from './key-duplicate-fill'; +export { default as ListFill } from './list-fill'; +export { default as Loop } from './loop'; +export { default as LoupeFill } from './loupe-fill'; +export { default as PaletteFill } from './palette-fill'; +export { default as PauseFill } from './pause-fill'; +export { default as PlayFill } from './play-fill'; +export { default as ScissorsFill } from './scissors-fill'; diff --git a/src/icons-omega/key-duplicate-fill.tsx b/src/icons-omega/key-duplicate-fill.tsx new file mode 100644 index 00000000..5f68bdc9 --- /dev/null +++ b/src/icons-omega/key-duplicate-fill.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const KeyDuplicateFill = createASIcon( + "KeyDuplicateFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default KeyDuplicateFill; diff --git a/src/icons-omega/layout-sidebar-right-mix.tsx b/src/icons-omega/layout-sidebar-right-mix.tsx new file mode 100644 index 00000000..a65ccc2c --- /dev/null +++ b/src/icons-omega/layout-sidebar-right-mix.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LayoutSidebarRightMix = createASIcon( + "LayoutSidebarRightMix", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + , +); + +export default LayoutSidebarRightMix; diff --git a/src/icons-omega/list-fill.tsx b/src/icons-omega/list-fill.tsx new file mode 100644 index 00000000..b86856a0 --- /dev/null +++ b/src/icons-omega/list-fill.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ListFill = createASIcon( + "ListFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default ListFill; diff --git a/src/icons-omega/loop.tsx b/src/icons-omega/loop.tsx new file mode 100644 index 00000000..d5b562ce --- /dev/null +++ b/src/icons-omega/loop.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loop = createASIcon( + "Loop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 35 35", + }, + + + + + + , +); + +export default Loop; diff --git a/src/icons-omega/loupe-fill.tsx b/src/icons-omega/loupe-fill.tsx new file mode 100644 index 00000000..5c8bfc39 --- /dev/null +++ b/src/icons-omega/loupe-fill.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LoupeFill = createASIcon( + "LoupeFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default LoupeFill; diff --git a/src/icons-omega/mood.tsx b/src/icons-omega/mood.tsx new file mode 100644 index 00000000..e4bd5743 --- /dev/null +++ b/src/icons-omega/mood.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Mood = createASIcon( + "Mood", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 31 33", + }, + + + + + + + + + + + + + + , +); + +export default Mood; diff --git a/src/icons-omega/mood_gray.tsx b/src/icons-omega/mood_gray.tsx new file mode 100644 index 00000000..bc7953b8 --- /dev/null +++ b/src/icons-omega/mood_gray.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodGray = createASIcon( + "MoodGray", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 31 33", + }, + + + + + + + + + + + + + + , +); + +export default MoodGray; diff --git a/src/icons-omega/mouse-left-2.tsx b/src/icons-omega/mouse-left-2.tsx new file mode 100644 index 00000000..d0acf08a --- /dev/null +++ b/src/icons-omega/mouse-left-2.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseLeft2 = createASIcon( + "MouseLeft2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 48 48", + }, + + + + + + + + + , +); + +export default MouseLeft2; diff --git a/src/icons-omega/none-selected.tsx b/src/icons-omega/none-selected.tsx new file mode 100644 index 00000000..5e7e7988 --- /dev/null +++ b/src/icons-omega/none-selected.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const NoneSelected = createASIcon( + "NoneSelected", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default NoneSelected; diff --git a/src/icons-omega/palette-fill.tsx b/src/icons-omega/palette-fill.tsx new file mode 100644 index 00000000..fb872be3 --- /dev/null +++ b/src/icons-omega/palette-fill.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PaletteFill = createASIcon( + "PaletteFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , +); + +export default PaletteFill; diff --git a/src/icons-omega/partially_checked.tsx b/src/icons-omega/partially_checked.tsx new file mode 100644 index 00000000..cc9d02c1 --- /dev/null +++ b/src/icons-omega/partially_checked.tsx @@ -0,0 +1,47 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PartiallyChecked = createASIcon( + "PartiallyChecked", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 16 16", + }, + + + + + + , +); + +export default PartiallyChecked; diff --git a/src/icons-omega/pause-fill.tsx b/src/icons-omega/pause-fill.tsx new file mode 100644 index 00000000..7623a45a --- /dev/null +++ b/src/icons-omega/pause-fill.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PauseFill = createASIcon( + "PauseFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default PauseFill; diff --git a/src/icons-omega/play-fill.tsx b/src/icons-omega/play-fill.tsx new file mode 100644 index 00000000..6b110c93 --- /dev/null +++ b/src/icons-omega/play-fill.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PlayFill = createASIcon( + "PlayFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , +); + +export default PlayFill; diff --git a/src/icons-omega/recull.tsx b/src/icons-omega/recull.tsx new file mode 100644 index 00000000..9ab9e909 --- /dev/null +++ b/src/icons-omega/recull.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Recull = createASIcon( + "Recull", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 46 46", + }, + + + + + + + + + , +); + +export default Recull; diff --git a/src/icons-omega/scissors-fill.tsx b/src/icons-omega/scissors-fill.tsx new file mode 100644 index 00000000..b241e5c9 --- /dev/null +++ b/src/icons-omega/scissors-fill.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ScissorsFill = createASIcon( + "ScissorsFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + + + , +); + +export default ScissorsFill; diff --git a/src/icons-omega/sparkle.tsx b/src/icons-omega/sparkle.tsx new file mode 100644 index 00000000..2856ed35 --- /dev/null +++ b/src/icons-omega/sparkle.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Sparkle = createASIcon( + "Sparkle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , +); + +export default Sparkle; diff --git a/src/icons-omega/star - 0.tsx b/src/icons-omega/star - 0.tsx new file mode 100644 index 00000000..621949a7 --- /dev/null +++ b/src/icons-omega/star - 0.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star0 = createASIcon( + "Star0", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star0; diff --git a/src/icons-omega/star - 1.tsx b/src/icons-omega/star - 1.tsx new file mode 100644 index 00000000..b6ae4464 --- /dev/null +++ b/src/icons-omega/star - 1.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star1 = createASIcon( + "Star1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star1; diff --git a/src/icons-omega/star - 2.tsx b/src/icons-omega/star - 2.tsx new file mode 100644 index 00000000..cb7e46eb --- /dev/null +++ b/src/icons-omega/star - 2.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star2 = createASIcon( + "Star2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star2; diff --git a/src/icons-omega/star - 3.tsx b/src/icons-omega/star - 3.tsx new file mode 100644 index 00000000..c8b18905 --- /dev/null +++ b/src/icons-omega/star - 3.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star3 = createASIcon( + "Star3", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star3; diff --git a/src/icons-omega/star - 4.tsx b/src/icons-omega/star - 4.tsx new file mode 100644 index 00000000..f8b88224 --- /dev/null +++ b/src/icons-omega/star - 4.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star4 = createASIcon( + "Star4", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star4; diff --git a/src/icons-omega/star - 5.tsx b/src/icons-omega/star - 5.tsx new file mode 100644 index 00000000..c395f179 --- /dev/null +++ b/src/icons-omega/star - 5.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star5 = createASIcon( + "Star5", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , +); + +export default Star5; diff --git a/src/icons-omega/star-fill.tsx b/src/icons-omega/star-fill.tsx new file mode 100644 index 00000000..dafa6c51 --- /dev/null +++ b/src/icons-omega/star-fill.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarFill = createASIcon( + "StarFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , +); + +export default StarFill; diff --git a/src/icons-omega/star-off-fill.tsx b/src/icons-omega/star-off-fill.tsx new file mode 100644 index 00000000..1f849c49 --- /dev/null +++ b/src/icons-omega/star-off-fill.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarOffFill = createASIcon( + "StarOffFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + , +); + +export default StarOffFill; diff --git a/src/icons-omega/upload-accent.tsx b/src/icons-omega/upload-accent.tsx new file mode 100644 index 00000000..ec493f81 --- /dev/null +++ b/src/icons-omega/upload-accent.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadAccent = createASIcon( + "UploadAccent", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 48 48", + }, + + + + + , +); + +export default UploadAccent; diff --git a/src/icons-omega/upload-c1-cat.tsx b/src/icons-omega/upload-c1-cat.tsx new file mode 100644 index 00000000..d6dc6841 --- /dev/null +++ b/src/icons-omega/upload-c1-cat.tsx @@ -0,0 +1,46 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadC1Cat = createASIcon( + "UploadC1Cat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , +); + +export default UploadC1Cat; diff --git a/src/icons-omega/upload-lr-cat.tsx b/src/icons-omega/upload-lr-cat.tsx new file mode 100644 index 00000000..e2505ca3 --- /dev/null +++ b/src/icons-omega/upload-lr-cat.tsx @@ -0,0 +1,46 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadLrCat = createASIcon( + "UploadLrCat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , +); + +export default UploadLrCat; diff --git a/src/icons-test/aftershoot-logo.tsx b/src/icons-test/aftershoot-logo.tsx new file mode 100644 index 00000000..668afe71 --- /dev/null +++ b/src/icons-test/aftershoot-logo.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AftershootLogo = createASIcon( + "AftershootLogo", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default AftershootLogo; diff --git a/src/icons-test/apple.tsx b/src/icons-test/apple.tsx new file mode 100644 index 00000000..203c7ce9 --- /dev/null +++ b/src/icons-test/apple.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Apple = createASIcon( + "Apple", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 17 20", + }, + + + , + "fill", +); + +export default Apple; diff --git a/src/icons-test/arrow-curve-fill.tsx b/src/icons-test/arrow-curve-fill.tsx new file mode 100644 index 00000000..dfbad672 --- /dev/null +++ b/src/icons-test/arrow-curve-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowCurveFill = createASIcon( + "ArrowCurveFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 16 11", + }, + + + , + "fill", +); + +export default ArrowCurveFill; diff --git a/src/icons-test/circle-fill.tsx b/src/icons-test/circle-fill.tsx new file mode 100644 index 00000000..99c34350 --- /dev/null +++ b/src/icons-test/circle-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleFill = createASIcon( + "CircleFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default CircleFill; diff --git a/src/icons-test/crown-2-fill.tsx b/src/icons-test/crown-2-fill.tsx new file mode 100644 index 00000000..ccee50d6 --- /dev/null +++ b/src/icons-test/crown-2-fill.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown2Fill = createASIcon( + "Crown2Fill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default Crown2Fill; diff --git a/src/icons-test/facebook.tsx b/src/icons-test/facebook.tsx new file mode 100644 index 00000000..e372218a --- /dev/null +++ b/src/icons-test/facebook.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Facebook = createASIcon( + "Facebook", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default Facebook; diff --git a/src/icons-test/grid-view-1.tsx b/src/icons-test/grid-view-1.tsx new file mode 100644 index 00000000..945dba71 --- /dev/null +++ b/src/icons-test/grid-view-1.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView1 = createASIcon( + "GridView1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , + "fill", +); + +export default GridView1; diff --git a/src/icons-test/grid-view-2.tsx b/src/icons-test/grid-view-2.tsx new file mode 100644 index 00000000..11c891cc --- /dev/null +++ b/src/icons-test/grid-view-2.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView2 = createASIcon( + "GridView2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , + "fill", +); + +export default GridView2; diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts new file mode 100644 index 00000000..89ba86b2 --- /dev/null +++ b/src/icons-test/index.ts @@ -0,0 +1,17 @@ +export { default as AftershootLogo } from './aftershoot-logo'; +export { default as Apple } from './apple'; +export { default as ArrowCurveFill } from './arrow-curve-fill'; +export { default as CircleFill } from './circle-fill'; +export { default as Crown2Fill } from './crown-2-fill'; +export { default as Facebook } from './facebook'; +export { default as GridView1 } from './grid-view-1'; +export { default as GridView2 } from './grid-view-2'; +export { default as KeyDuplicateFill } from './key-duplicate-fill'; +export { default as ListFill } from './list-fill'; +export { default as Loop } from './loop'; +export { default as LoupeFill } from './loupe-fill'; +export { default as PaletteFill } from './palette-fill'; +export { default as PauseFill } from './pause-fill'; +export { default as PlayFill } from './play-fill'; +export { default as ScissorsFill } from './scissors-fill'; + diff --git a/src/icons-test/key-duplicate-fill.tsx b/src/icons-test/key-duplicate-fill.tsx new file mode 100644 index 00000000..6afe942f --- /dev/null +++ b/src/icons-test/key-duplicate-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const KeyDuplicateFill = createASIcon( + "KeyDuplicateFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default KeyDuplicateFill; diff --git a/src/icons-test/list-fill.tsx b/src/icons-test/list-fill.tsx new file mode 100644 index 00000000..156ab657 --- /dev/null +++ b/src/icons-test/list-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ListFill = createASIcon( + "ListFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default ListFill; diff --git a/src/icons-test/loop.tsx b/src/icons-test/loop.tsx new file mode 100644 index 00000000..1bbf9b59 --- /dev/null +++ b/src/icons-test/loop.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loop = createASIcon( + "Loop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 35 35", + }, + + + + + + , + "fill", +); + +export default Loop; diff --git a/src/icons-test/loupe-fill.tsx b/src/icons-test/loupe-fill.tsx new file mode 100644 index 00000000..b81811b4 --- /dev/null +++ b/src/icons-test/loupe-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LoupeFill = createASIcon( + "LoupeFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default LoupeFill; diff --git a/src/icons-test/palette-fill.tsx b/src/icons-test/palette-fill.tsx new file mode 100644 index 00000000..d3c2d69e --- /dev/null +++ b/src/icons-test/palette-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PaletteFill = createASIcon( + "PaletteFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default PaletteFill; diff --git a/src/icons-test/pause-fill.tsx b/src/icons-test/pause-fill.tsx new file mode 100644 index 00000000..984339be --- /dev/null +++ b/src/icons-test/pause-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PauseFill = createASIcon( + "PauseFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default PauseFill; diff --git a/src/icons-test/play-fill.tsx b/src/icons-test/play-fill.tsx new file mode 100644 index 00000000..947b4b6c --- /dev/null +++ b/src/icons-test/play-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PlayFill = createASIcon( + "PlayFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default PlayFill; diff --git a/src/icons-test/scissors-fill.tsx b/src/icons-test/scissors-fill.tsx new file mode 100644 index 00000000..c588259d --- /dev/null +++ b/src/icons-test/scissors-fill.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ScissorsFill = createASIcon( + "ScissorsFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + + + , + "fill", +); + +export default ScissorsFill; diff --git a/src/stories-omega/AlertTriangle.stories.tsx b/src/stories-omega/AlertTriangle.stories.tsx deleted file mode 100644 index 51105792..00000000 --- a/src/stories-omega/AlertTriangle.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import AlertTriangle from '../icons-omega/alert-triangle' - - const meta: Meta = { - component: AlertTriangle, - title: 'omega/AlertTriangle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowDown.stories.tsx b/src/stories-omega/ArrowDown.stories.tsx deleted file mode 100644 index 97cc3558..00000000 --- a/src/stories-omega/ArrowDown.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowDown from '../icons-omega/arrow-down' - - const meta: Meta = { - component: ArrowDown, - title: 'omega/ArrowDown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowLeft.stories.tsx b/src/stories-omega/ArrowLeft.stories.tsx deleted file mode 100644 index 03b4c96a..00000000 --- a/src/stories-omega/ArrowLeft.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowLeft from '../icons-omega/arrow-left' - - const meta: Meta = { - component: ArrowLeft, - title: 'omega/ArrowLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowNarrowLeft.stories.tsx b/src/stories-omega/ArrowNarrowLeft.stories.tsx deleted file mode 100644 index 7ab5ec5f..00000000 --- a/src/stories-omega/ArrowNarrowLeft.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowNarrowLeft from '../icons-omega/arrow-narrow-left' - - const meta: Meta = { - component: ArrowNarrowLeft, - title: 'omega/ArrowNarrowLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowNarrowRight.stories.tsx b/src/stories-omega/ArrowNarrowRight.stories.tsx deleted file mode 100644 index 41fc242c..00000000 --- a/src/stories-omega/ArrowNarrowRight.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowNarrowRight from '../icons-omega/arrow-narrow-right' - - const meta: Meta = { - component: ArrowNarrowRight, - title: 'omega/ArrowNarrowRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowRight.stories.tsx b/src/stories-omega/ArrowRight.stories.tsx deleted file mode 100644 index c4826451..00000000 --- a/src/stories-omega/ArrowRight.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowRight from '../icons-omega/arrow-right' - - const meta: Meta = { - component: ArrowRight, - title: 'omega/ArrowRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowSort2.stories.tsx b/src/stories-omega/ArrowSort2.stories.tsx deleted file mode 100644 index a58164ed..00000000 --- a/src/stories-omega/ArrowSort2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowSort2 from '../icons-omega/arrow-sort-2' - - const meta: Meta = { - component: ArrowSort2, - title: 'omega/ArrowSort2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowUp.stories.tsx b/src/stories-omega/ArrowUp.stories.tsx deleted file mode 100644 index 722255ef..00000000 --- a/src/stories-omega/ArrowUp.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowUp from '../icons-omega/arrow-up' - - const meta: Meta = { - component: ArrowUp, - title: 'omega/ArrowUp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowsDiagonal.stories.tsx b/src/stories-omega/ArrowsDiagonal.stories.tsx deleted file mode 100644 index 6bc6520e..00000000 --- a/src/stories-omega/ArrowsDiagonal.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowsDiagonal from '../icons-omega/arrows-diagonal' - - const meta: Meta = { - component: ArrowsDiagonal, - title: 'omega/ArrowsDiagonal', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ArrowsSort.stories.tsx b/src/stories-omega/ArrowsSort.stories.tsx deleted file mode 100644 index 8a6761b5..00000000 --- a/src/stories-omega/ArrowsSort.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowsSort from '../icons-omega/arrows-sort' - - const meta: Meta = { - component: ArrowsSort, - title: 'omega/ArrowsSort', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Atom.stories.tsx b/src/stories-omega/Atom.stories.tsx deleted file mode 100644 index bcbcf6d9..00000000 --- a/src/stories-omega/Atom.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Atom from '../icons-omega/atom' - - const meta: Meta = { - component: Atom, - title: 'omega/Atom', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Ban.stories.tsx b/src/stories-omega/Ban.stories.tsx deleted file mode 100644 index 366cc6f6..00000000 --- a/src/stories-omega/Ban.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Ban from '../icons-omega/ban' - - const meta: Meta = { - component: Ban, - title: 'omega/Ban', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Bell.stories.tsx b/src/stories-omega/Bell.stories.tsx deleted file mode 100644 index 47829904..00000000 --- a/src/stories-omega/Bell.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Bell from '../icons-omega/bell' - - const meta: Meta = { - component: Bell, - title: 'omega/Bell', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellMinus.stories.tsx b/src/stories-omega/BellMinus.stories.tsx deleted file mode 100644 index 20e6711f..00000000 --- a/src/stories-omega/BellMinus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellMinus from '../icons-omega/bell-minus' - - const meta: Meta = { - component: BellMinus, - title: 'omega/BellMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellOff.stories.tsx b/src/stories-omega/BellOff.stories.tsx deleted file mode 100644 index 8a42272d..00000000 --- a/src/stories-omega/BellOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellOff from '../icons-omega/bell-off' - - const meta: Meta = { - component: BellOff, - title: 'omega/BellOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellPlus.stories.tsx b/src/stories-omega/BellPlus.stories.tsx deleted file mode 100644 index dc5c218e..00000000 --- a/src/stories-omega/BellPlus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellPlus from '../icons-omega/bell-plus' - - const meta: Meta = { - component: BellPlus, - title: 'omega/BellPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellRinging.stories.tsx b/src/stories-omega/BellRinging.stories.tsx deleted file mode 100644 index 4782b382..00000000 --- a/src/stories-omega/BellRinging.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellRinging from '../icons-omega/bell-ringing' - - const meta: Meta = { - component: BellRinging, - title: 'omega/BellRinging', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellRinging2.stories.tsx b/src/stories-omega/BellRinging2.stories.tsx deleted file mode 100644 index 3713d76a..00000000 --- a/src/stories-omega/BellRinging2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellRinging2 from '../icons-omega/bell-ringing-2' - - const meta: Meta = { - component: BellRinging2, - title: 'omega/BellRinging2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BellX.stories.tsx b/src/stories-omega/BellX.stories.tsx deleted file mode 100644 index 9708cdb0..00000000 --- a/src/stories-omega/BellX.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellX from '../icons-omega/bell-x' - - const meta: Meta = { - component: BellX, - title: 'omega/BellX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandFacebook.stories.tsx b/src/stories-omega/BrandFacebook.stories.tsx deleted file mode 100644 index 2e74d592..00000000 --- a/src/stories-omega/BrandFacebook.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandFacebook from '../icons-omega/brand-facebook' - - const meta: Meta = { - component: BrandFacebook, - title: 'omega/BrandFacebook', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandGithub.stories.tsx b/src/stories-omega/BrandGithub.stories.tsx deleted file mode 100644 index 27c7cf67..00000000 --- a/src/stories-omega/BrandGithub.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandGithub from '../icons-omega/brand-github' - - const meta: Meta = { - component: BrandGithub, - title: 'omega/BrandGithub', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandInstagram.stories.tsx b/src/stories-omega/BrandInstagram.stories.tsx deleted file mode 100644 index 532a1a5a..00000000 --- a/src/stories-omega/BrandInstagram.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandInstagram from '../icons-omega/brand-instagram' - - const meta: Meta = { - component: BrandInstagram, - title: 'omega/BrandInstagram', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandTwitter.stories.tsx b/src/stories-omega/BrandTwitter.stories.tsx deleted file mode 100644 index d3a55587..00000000 --- a/src/stories-omega/BrandTwitter.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandTwitter from '../icons-omega/brand-twitter' - - const meta: Meta = { - component: BrandTwitter, - title: 'omega/BrandTwitter', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandWhatsapp.stories.tsx b/src/stories-omega/BrandWhatsapp.stories.tsx deleted file mode 100644 index 4237e453..00000000 --- a/src/stories-omega/BrandWhatsapp.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandWhatsapp from '../icons-omega/brand-whatsapp' - - const meta: Meta = { - component: BrandWhatsapp, - title: 'omega/BrandWhatsapp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BrandYoutube.stories.tsx b/src/stories-omega/BrandYoutube.stories.tsx deleted file mode 100644 index 9bbe2ab6..00000000 --- a/src/stories-omega/BrandYoutube.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandYoutube from '../icons-omega/brand-youtube' - - const meta: Meta = { - component: BrandYoutube, - title: 'omega/BrandYoutube', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Bulb.stories.tsx b/src/stories-omega/Bulb.stories.tsx deleted file mode 100644 index baee9d97..00000000 --- a/src/stories-omega/Bulb.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Bulb from '../icons-omega/bulb' - - const meta: Meta = { - component: Bulb, - title: 'omega/Bulb', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/BulbOff.stories.tsx b/src/stories-omega/BulbOff.stories.tsx deleted file mode 100644 index 9d78cae5..00000000 --- a/src/stories-omega/BulbOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BulbOff from '../icons-omega/bulb-off' - - const meta: Meta = { - component: BulbOff, - title: 'omega/BulbOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Check.stories.tsx b/src/stories-omega/Check.stories.tsx deleted file mode 100644 index 20c98bd4..00000000 --- a/src/stories-omega/Check.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Check from '../icons-omega/check' - - const meta: Meta = { - component: Check, - title: 'omega/Check', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronDown.stories.tsx b/src/stories-omega/ChevronDown.stories.tsx deleted file mode 100644 index 9c9c5474..00000000 --- a/src/stories-omega/ChevronDown.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronDown from '../icons-omega/chevron-down' - - const meta: Meta = { - component: ChevronDown, - title: 'omega/ChevronDown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronLeft.stories.tsx b/src/stories-omega/ChevronLeft.stories.tsx deleted file mode 100644 index 3e226015..00000000 --- a/src/stories-omega/ChevronLeft.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronLeft from '../icons-omega/chevron-left' - - const meta: Meta = { - component: ChevronLeft, - title: 'omega/ChevronLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronRight.stories.tsx b/src/stories-omega/ChevronRight.stories.tsx deleted file mode 100644 index 647b4d1d..00000000 --- a/src/stories-omega/ChevronRight.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronRight from '../icons-omega/chevron-right' - - const meta: Meta = { - component: ChevronRight, - title: 'omega/ChevronRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronUp.stories.tsx b/src/stories-omega/ChevronUp.stories.tsx deleted file mode 100644 index 7b021060..00000000 --- a/src/stories-omega/ChevronUp.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronUp from '../icons-omega/chevron-up' - - const meta: Meta = { - component: ChevronUp, - title: 'omega/ChevronUp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronsLeft.stories.tsx b/src/stories-omega/ChevronsLeft.stories.tsx deleted file mode 100644 index 8445bc26..00000000 --- a/src/stories-omega/ChevronsLeft.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronsLeft from '../icons-omega/chevrons-left' - - const meta: Meta = { - component: ChevronsLeft, - title: 'omega/ChevronsLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ChevronsRight.stories.tsx b/src/stories-omega/ChevronsRight.stories.tsx deleted file mode 100644 index 8f8dda74..00000000 --- a/src/stories-omega/ChevronsRight.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronsRight from '../icons-omega/chevrons-right' - - const meta: Meta = { - component: ChevronsRight, - title: 'omega/ChevronsRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Circle.stories.tsx b/src/stories-omega/Circle.stories.tsx deleted file mode 100644 index 4e3bd4e3..00000000 --- a/src/stories-omega/Circle.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Circle from '../icons-omega/circle' - - const meta: Meta = { - component: Circle, - title: 'omega/Circle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/CircleCheck.stories.tsx b/src/stories-omega/CircleCheck.stories.tsx deleted file mode 100644 index 06be0a30..00000000 --- a/src/stories-omega/CircleCheck.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CircleCheck from '../icons-omega/circle-check' - - const meta: Meta = { - component: CircleCheck, - title: 'omega/CircleCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/CircleCheck2.stories.tsx b/src/stories-omega/CircleCheck2.stories.tsx deleted file mode 100644 index bc379af6..00000000 --- a/src/stories-omega/CircleCheck2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CircleCheck2 from '../icons-omega/circle-check-2' - - const meta: Meta = { - component: CircleCheck2, - title: 'omega/CircleCheck2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Clock.stories.tsx b/src/stories-omega/Clock.stories.tsx deleted file mode 100644 index 63b9290a..00000000 --- a/src/stories-omega/Clock.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Clock from '../icons-omega/clock' - - const meta: Meta = { - component: Clock, - title: 'omega/Clock', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/CloudUpload.stories.tsx b/src/stories-omega/CloudUpload.stories.tsx deleted file mode 100644 index 78990be7..00000000 --- a/src/stories-omega/CloudUpload.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CloudUpload from '../icons-omega/cloud-upload' - - const meta: Meta = { - component: CloudUpload, - title: 'omega/CloudUpload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ColorSwatch.stories.tsx b/src/stories-omega/ColorSwatch.stories.tsx deleted file mode 100644 index 2864342a..00000000 --- a/src/stories-omega/ColorSwatch.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ColorSwatch from '../icons-omega/color-swatch' - - const meta: Meta = { - component: ColorSwatch, - title: 'omega/ColorSwatch', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Confetti.stories.tsx b/src/stories-omega/Confetti.stories.tsx deleted file mode 100644 index a700c189..00000000 --- a/src/stories-omega/Confetti.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Confetti from '../icons-omega/confetti' - - const meta: Meta = { - component: Confetti, - title: 'omega/Confetti', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Copy.stories.tsx b/src/stories-omega/Copy.stories.tsx deleted file mode 100644 index 3f013299..00000000 --- a/src/stories-omega/Copy.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Copy from '../icons-omega/copy' - - const meta: Meta = { - component: Copy, - title: 'omega/Copy', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Crown.stories.tsx b/src/stories-omega/Crown.stories.tsx deleted file mode 100644 index ff88e825..00000000 --- a/src/stories-omega/Crown.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Crown from '../icons-omega/crown' - - const meta: Meta = { - component: Crown, - title: 'omega/Crown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/CurrencyDollar.stories.tsx b/src/stories-omega/CurrencyDollar.stories.tsx deleted file mode 100644 index 48b0b062..00000000 --- a/src/stories-omega/CurrencyDollar.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CurrencyDollar from '../icons-omega/currency-dollar' - - const meta: Meta = { - component: CurrencyDollar, - title: 'omega/CurrencyDollar', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/CurrentLocation.stories.tsx b/src/stories-omega/CurrentLocation.stories.tsx deleted file mode 100644 index b7e4c739..00000000 --- a/src/stories-omega/CurrentLocation.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CurrentLocation from '../icons-omega/current-location' - - const meta: Meta = { - component: CurrentLocation, - title: 'omega/CurrentLocation', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DeviceDesktop.stories.tsx b/src/stories-omega/DeviceDesktop.stories.tsx deleted file mode 100644 index 98e24eaa..00000000 --- a/src/stories-omega/DeviceDesktop.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktop from '../icons-omega/device-desktop' - - const meta: Meta = { - component: DeviceDesktop, - title: 'omega/DeviceDesktop', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DeviceDesktopAnalytics.stories.tsx b/src/stories-omega/DeviceDesktopAnalytics.stories.tsx deleted file mode 100644 index 54e1b6d6..00000000 --- a/src/stories-omega/DeviceDesktopAnalytics.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktopAnalytics from '../icons-omega/device-desktop-analytics' - - const meta: Meta = { - component: DeviceDesktopAnalytics, - title: 'omega/DeviceDesktopAnalytics', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DeviceDesktopOff.stories.tsx b/src/stories-omega/DeviceDesktopOff.stories.tsx deleted file mode 100644 index d68ccd63..00000000 --- a/src/stories-omega/DeviceDesktopOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktopOff from '../icons-omega/device-desktop-off' - - const meta: Meta = { - component: DeviceDesktopOff, - title: 'omega/DeviceDesktopOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DeviceLaptop.stories.tsx b/src/stories-omega/DeviceLaptop.stories.tsx deleted file mode 100644 index 2c387b49..00000000 --- a/src/stories-omega/DeviceLaptop.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceLaptop from '../icons-omega/device-laptop' - - const meta: Meta = { - component: DeviceLaptop, - title: 'omega/DeviceLaptop', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DeviceTv.stories.tsx b/src/stories-omega/DeviceTv.stories.tsx deleted file mode 100644 index 8a836b24..00000000 --- a/src/stories-omega/DeviceTv.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceTv from '../icons-omega/device-tv' - - const meta: Meta = { - component: DeviceTv, - title: 'omega/DeviceTv', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Diamond.stories.tsx b/src/stories-omega/Diamond.stories.tsx deleted file mode 100644 index 0909d2da..00000000 --- a/src/stories-omega/Diamond.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Diamond from '../icons-omega/diamond' - - const meta: Meta = { - component: Diamond, - title: 'omega/Diamond', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Discount.stories.tsx b/src/stories-omega/Discount.stories.tsx deleted file mode 100644 index 3a2a8b34..00000000 --- a/src/stories-omega/Discount.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Discount from '../icons-omega/discount' - - const meta: Meta = { - component: Discount, - title: 'omega/Discount', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Discount2.stories.tsx b/src/stories-omega/Discount2.stories.tsx deleted file mode 100644 index 4fc54abd..00000000 --- a/src/stories-omega/Discount2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Discount2 from '../icons-omega/discount-2' - - const meta: Meta = { - component: Discount2, - title: 'omega/Discount2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Disk.stories.tsx b/src/stories-omega/Disk.stories.tsx deleted file mode 100644 index 1c383664..00000000 --- a/src/stories-omega/Disk.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Disk from '../icons-omega/disk' - - const meta: Meta = { - component: Disk, - title: 'omega/Disk', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/DotsVertical.stories.tsx b/src/stories-omega/DotsVertical.stories.tsx deleted file mode 100644 index 51a215c2..00000000 --- a/src/stories-omega/DotsVertical.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DotsVertical from '../icons-omega/dots-vertical' - - const meta: Meta = { - component: DotsVertical, - title: 'omega/DotsVertical', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Download.stories.tsx b/src/stories-omega/Download.stories.tsx deleted file mode 100644 index ba1aaa10..00000000 --- a/src/stories-omega/Download.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Download from '../icons-omega/download' - - const meta: Meta = { - component: Download, - title: 'omega/Download', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Edit.stories.tsx b/src/stories-omega/Edit.stories.tsx deleted file mode 100644 index 3b8fd20a..00000000 --- a/src/stories-omega/Edit.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Edit from '../icons-omega/edit' - - const meta: Meta = { - component: Edit, - title: 'omega/Edit', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ExternalLink.stories.tsx b/src/stories-omega/ExternalLink.stories.tsx deleted file mode 100644 index 4f31a2cc..00000000 --- a/src/stories-omega/ExternalLink.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ExternalLink from '../icons-omega/external-link' - - const meta: Meta = { - component: ExternalLink, - title: 'omega/ExternalLink', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Eye.stories.tsx b/src/stories-omega/Eye.stories.tsx deleted file mode 100644 index e3ae92da..00000000 --- a/src/stories-omega/Eye.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Eye from '../icons-omega/eye' - - const meta: Meta = { - component: Eye, - title: 'omega/Eye', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/EyeCheck.stories.tsx b/src/stories-omega/EyeCheck.stories.tsx deleted file mode 100644 index 09d57c32..00000000 --- a/src/stories-omega/EyeCheck.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import EyeCheck from '../icons-omega/eye-check' - - const meta: Meta = { - component: EyeCheck, - title: 'omega/EyeCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/EyeOff.stories.tsx b/src/stories-omega/EyeOff.stories.tsx deleted file mode 100644 index fce62fae..00000000 --- a/src/stories-omega/EyeOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import EyeOff from '../icons-omega/eye-off' - - const meta: Meta = { - component: EyeOff, - title: 'omega/EyeOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FileDownload.stories.tsx b/src/stories-omega/FileDownload.stories.tsx deleted file mode 100644 index fdb366fd..00000000 --- a/src/stories-omega/FileDownload.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileDownload from '../icons-omega/file-download' - - const meta: Meta = { - component: FileDownload, - title: 'omega/FileDownload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FileExport.stories.tsx b/src/stories-omega/FileExport.stories.tsx deleted file mode 100644 index 5a1f2726..00000000 --- a/src/stories-omega/FileExport.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileExport from '../icons-omega/file-export' - - const meta: Meta = { - component: FileExport, - title: 'omega/FileExport', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FileReport.stories.tsx b/src/stories-omega/FileReport.stories.tsx deleted file mode 100644 index 0187167c..00000000 --- a/src/stories-omega/FileReport.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileReport from '../icons-omega/file-report' - - const meta: Meta = { - component: FileReport, - title: 'omega/FileReport', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FileSearch.stories.tsx b/src/stories-omega/FileSearch.stories.tsx deleted file mode 100644 index 3715d616..00000000 --- a/src/stories-omega/FileSearch.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileSearch from '../icons-omega/file-search' - - const meta: Meta = { - component: FileSearch, - title: 'omega/FileSearch', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Filter.stories.tsx b/src/stories-omega/Filter.stories.tsx deleted file mode 100644 index e99c9442..00000000 --- a/src/stories-omega/Filter.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Filter from '../icons-omega/filter' - - const meta: Meta = { - component: Filter, - title: 'omega/Filter', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FilterOff.stories.tsx b/src/stories-omega/FilterOff.stories.tsx deleted file mode 100644 index 5a4faf61..00000000 --- a/src/stories-omega/FilterOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FilterOff from '../icons-omega/filter-off' - - const meta: Meta = { - component: FilterOff, - title: 'omega/FilterOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Flag.stories.tsx b/src/stories-omega/Flag.stories.tsx deleted file mode 100644 index 34e3a99a..00000000 --- a/src/stories-omega/Flag.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Flag from '../icons-omega/flag' - - const meta: Meta = { - component: Flag, - title: 'omega/Flag', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FlagOff.stories.tsx b/src/stories-omega/FlagOff.stories.tsx deleted file mode 100644 index b81069ab..00000000 --- a/src/stories-omega/FlagOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FlagOff from '../icons-omega/flag-off' - - const meta: Meta = { - component: FlagOff, - title: 'omega/FlagOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Folder.stories.tsx b/src/stories-omega/Folder.stories.tsx deleted file mode 100644 index 00401be9..00000000 --- a/src/stories-omega/Folder.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Folder from '../icons-omega/folder' - - const meta: Meta = { - component: Folder, - title: 'omega/Folder', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderDownload.stories.tsx b/src/stories-omega/FolderDownload.stories.tsx deleted file mode 100644 index ef8ad564..00000000 --- a/src/stories-omega/FolderDownload.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderDownload from '../icons-omega/folder-download' - - const meta: Meta = { - component: FolderDownload, - title: 'omega/FolderDownload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderEye.stories.tsx b/src/stories-omega/FolderEye.stories.tsx deleted file mode 100644 index 989c8643..00000000 --- a/src/stories-omega/FolderEye.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderEye from '../icons-omega/folder-eye' - - const meta: Meta = { - component: FolderEye, - title: 'omega/FolderEye', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderMinus.stories.tsx b/src/stories-omega/FolderMinus.stories.tsx deleted file mode 100644 index 0bed0a59..00000000 --- a/src/stories-omega/FolderMinus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderMinus from '../icons-omega/folder-minus' - - const meta: Meta = { - component: FolderMinus, - title: 'omega/FolderMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderOff.stories.tsx b/src/stories-omega/FolderOff.stories.tsx deleted file mode 100644 index d99c92a9..00000000 --- a/src/stories-omega/FolderOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderOff from '../icons-omega/folder-off' - - const meta: Meta = { - component: FolderOff, - title: 'omega/FolderOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderPlus.stories.tsx b/src/stories-omega/FolderPlus.stories.tsx deleted file mode 100644 index 0480fd0a..00000000 --- a/src/stories-omega/FolderPlus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderPlus from '../icons-omega/folder-plus' - - const meta: Meta = { - component: FolderPlus, - title: 'omega/FolderPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderUpload.stories.tsx b/src/stories-omega/FolderUpload.stories.tsx deleted file mode 100644 index 35ac2c02..00000000 --- a/src/stories-omega/FolderUpload.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderUpload from '../icons-omega/folder-upload' - - const meta: Meta = { - component: FolderUpload, - title: 'omega/FolderUpload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/FolderX.stories.tsx b/src/stories-omega/FolderX.stories.tsx deleted file mode 100644 index 88665991..00000000 --- a/src/stories-omega/FolderX.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderX from '../icons-omega/folder-x' - - const meta: Meta = { - component: FolderX, - title: 'omega/FolderX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Folders.stories.tsx b/src/stories-omega/Folders.stories.tsx deleted file mode 100644 index 7a071653..00000000 --- a/src/stories-omega/Folders.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Folders from '../icons-omega/folders' - - const meta: Meta = { - component: Folders, - title: 'omega/Folders', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/GridDots.stories.tsx b/src/stories-omega/GridDots.stories.tsx deleted file mode 100644 index 49121328..00000000 --- a/src/stories-omega/GridDots.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridDots from '../icons-omega/grid-dots' - - const meta: Meta = { - component: GridDots, - title: 'omega/GridDots', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Home2.stories.tsx b/src/stories-omega/Home2.stories.tsx deleted file mode 100644 index eb37cb12..00000000 --- a/src/stories-omega/Home2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Home2 from '../icons-omega/home-2' - - const meta: Meta = { - component: Home2, - title: 'omega/Home2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Import.stories.tsx b/src/stories-omega/Import.stories.tsx deleted file mode 100644 index e1c90a36..00000000 --- a/src/stories-omega/Import.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Import from '../icons-omega/Import' - - const meta: Meta = { - component: Import, - title: 'omega/Import', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Info.stories.tsx b/src/stories-omega/Info.stories.tsx deleted file mode 100644 index 9d5389ac..00000000 --- a/src/stories-omega/Info.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Info from '../icons-omega/info' - - const meta: Meta = { - component: Info, - title: 'omega/Info', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/InfoCircle.stories.tsx b/src/stories-omega/InfoCircle.stories.tsx deleted file mode 100644 index ea686fc1..00000000 --- a/src/stories-omega/InfoCircle.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoCircle from '../icons-omega/info-circle' - - const meta: Meta = { - component: InfoCircle, - title: 'omega/InfoCircle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/InfoCirlce2.stories.tsx b/src/stories-omega/InfoCirlce2.stories.tsx deleted file mode 100644 index 1f412f9f..00000000 --- a/src/stories-omega/InfoCirlce2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoCirlce2 from '../icons-omega/info-cirlce-2' - - const meta: Meta = { - component: InfoCirlce2, - title: 'omega/InfoCirlce2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/InfoSquare.stories.tsx b/src/stories-omega/InfoSquare.stories.tsx deleted file mode 100644 index 29247e88..00000000 --- a/src/stories-omega/InfoSquare.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoSquare from '../icons-omega/info-square' - - const meta: Meta = { - component: InfoSquare, - title: 'omega/InfoSquare', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Key.stories.tsx b/src/stories-omega/Key.stories.tsx deleted file mode 100644 index f2b49726..00000000 --- a/src/stories-omega/Key.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Key from '../icons-omega/key' - - const meta: Meta = { - component: Key, - title: 'omega/Key', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Key2.stories.tsx b/src/stories-omega/Key2.stories.tsx deleted file mode 100644 index 05d11255..00000000 --- a/src/stories-omega/Key2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Key2 from '../icons-omega/key-2' - - const meta: Meta = { - component: Key2, - title: 'omega/Key2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/KeyDuplicate.stories.tsx b/src/stories-omega/KeyDuplicate.stories.tsx deleted file mode 100644 index a499d071..00000000 --- a/src/stories-omega/KeyDuplicate.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import KeyDuplicate from '../icons-omega/key-duplicate' - - const meta: Meta = { - component: KeyDuplicate, - title: 'omega/KeyDuplicate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Link.stories.tsx b/src/stories-omega/Link.stories.tsx deleted file mode 100644 index bbc53752..00000000 --- a/src/stories-omega/Link.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Link from '../icons-omega/link' - - const meta: Meta = { - component: Link, - title: 'omega/Link', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Loader.stories.tsx b/src/stories-omega/Loader.stories.tsx deleted file mode 100644 index 56feb38b..00000000 --- a/src/stories-omega/Loader.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Loader from '../icons-omega/loader' - - const meta: Meta = { - component: Loader, - title: 'omega/Loader', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Lock.stories.tsx b/src/stories-omega/Lock.stories.tsx deleted file mode 100644 index c0854871..00000000 --- a/src/stories-omega/Lock.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Lock from '../icons-omega/lock' - - const meta: Meta = { - component: Lock, - title: 'omega/Lock', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Lock2.stories.tsx b/src/stories-omega/Lock2.stories.tsx deleted file mode 100644 index 038fd59a..00000000 --- a/src/stories-omega/Lock2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Lock2 from '../icons-omega/lock-2' - - const meta: Meta = { - component: Lock2, - title: 'omega/Lock2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/LockOff.stories.tsx b/src/stories-omega/LockOff.stories.tsx deleted file mode 100644 index 0232d11b..00000000 --- a/src/stories-omega/LockOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LockOff from '../icons-omega/lock-off' - - const meta: Meta = { - component: LockOff, - title: 'omega/LockOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/LockOpen.stories.tsx b/src/stories-omega/LockOpen.stories.tsx deleted file mode 100644 index ea41a635..00000000 --- a/src/stories-omega/LockOpen.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LockOpen from '../icons-omega/lock-open' - - const meta: Meta = { - component: LockOpen, - title: 'omega/LockOpen', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Mail.stories.tsx b/src/stories-omega/Mail.stories.tsx deleted file mode 100644 index f006d74b..00000000 --- a/src/stories-omega/Mail.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Mail from '../icons-omega/mail' - - const meta: Meta = { - component: Mail, - title: 'omega/Mail', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Map2.stories.tsx b/src/stories-omega/Map2.stories.tsx deleted file mode 100644 index 3f891917..00000000 --- a/src/stories-omega/Map2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Map2 from '../icons-omega/map-2' - - const meta: Meta = { - component: Map2, - title: 'omega/Map2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MapPin.stories.tsx b/src/stories-omega/MapPin.stories.tsx deleted file mode 100644 index 8d826c43..00000000 --- a/src/stories-omega/MapPin.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MapPin from '../icons-omega/map-pin' - - const meta: Meta = { - component: MapPin, - title: 'omega/MapPin', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MapPinOff.stories.tsx b/src/stories-omega/MapPinOff.stories.tsx deleted file mode 100644 index 91a454f7..00000000 --- a/src/stories-omega/MapPinOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MapPinOff from '../icons-omega/map-pin-off' - - const meta: Meta = { - component: MapPinOff, - title: 'omega/MapPinOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Minus.stories.tsx b/src/stories-omega/Minus.stories.tsx deleted file mode 100644 index 2df900b0..00000000 --- a/src/stories-omega/Minus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Minus from '../icons-omega/minus' - - const meta: Meta = { - component: Minus, - title: 'omega/Minus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MoodCrazyHappy.stories.tsx b/src/stories-omega/MoodCrazyHappy.stories.tsx deleted file mode 100644 index 3d8316a5..00000000 --- a/src/stories-omega/MoodCrazyHappy.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodCrazyHappy from '../icons-omega/mood-crazy-happy' - - const meta: Meta = { - component: MoodCrazyHappy, - title: 'omega/MoodCrazyHappy', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MoodEmpty.stories.tsx b/src/stories-omega/MoodEmpty.stories.tsx deleted file mode 100644 index 9efbf01d..00000000 --- a/src/stories-omega/MoodEmpty.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodEmpty from '../icons-omega/mood-empty' - - const meta: Meta = { - component: MoodEmpty, - title: 'omega/MoodEmpty', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MoodSad.stories.tsx b/src/stories-omega/MoodSad.stories.tsx deleted file mode 100644 index 7d8899d5..00000000 --- a/src/stories-omega/MoodSad.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodSad from '../icons-omega/mood-sad' - - const meta: Meta = { - component: MoodSad, - title: 'omega/MoodSad', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MoodSmile.stories.tsx b/src/stories-omega/MoodSmile.stories.tsx deleted file mode 100644 index 02287c99..00000000 --- a/src/stories-omega/MoodSmile.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodSmile from '../icons-omega/mood-smile' - - const meta: Meta = { - component: MoodSmile, - title: 'omega/MoodSmile', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MouseLeft.stories.tsx b/src/stories-omega/MouseLeft.stories.tsx deleted file mode 100644 index c3a072a0..00000000 --- a/src/stories-omega/MouseLeft.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MouseLeft from '../icons-omega/mouse-left' - - const meta: Meta = { - component: MouseLeft, - title: 'omega/MouseLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/MouseRight.stories.tsx b/src/stories-omega/MouseRight.stories.tsx deleted file mode 100644 index bfdcd78f..00000000 --- a/src/stories-omega/MouseRight.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MouseRight from '../icons-omega/mouse-right' - - const meta: Meta = { - component: MouseRight, - title: 'omega/MouseRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/NoDuplicate.stories.tsx b/src/stories-omega/NoDuplicate.stories.tsx deleted file mode 100644 index d65f9485..00000000 --- a/src/stories-omega/NoDuplicate.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import NoDuplicate from '../icons-omega/no-duplicate' - - const meta: Meta = { - component: NoDuplicate, - title: 'omega/NoDuplicate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Palette.stories.tsx b/src/stories-omega/Palette.stories.tsx deleted file mode 100644 index 825967b0..00000000 --- a/src/stories-omega/Palette.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Palette from '../icons-omega/palette' - - const meta: Meta = { - component: Palette, - title: 'omega/Palette', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Photo.stories.tsx b/src/stories-omega/Photo.stories.tsx deleted file mode 100644 index 759b416f..00000000 --- a/src/stories-omega/Photo.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Photo from '../icons-omega/photo' - - const meta: Meta = { - component: Photo, - title: 'omega/Photo', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/PhotoOff.stories.tsx b/src/stories-omega/PhotoOff.stories.tsx deleted file mode 100644 index f4c256de..00000000 --- a/src/stories-omega/PhotoOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoOff from '../icons-omega/photo-off' - - const meta: Meta = { - component: PhotoOff, - title: 'omega/PhotoOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/PhotoOff2.stories.tsx b/src/stories-omega/PhotoOff2.stories.tsx deleted file mode 100644 index a85e7244..00000000 --- a/src/stories-omega/PhotoOff2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoOff2 from '../icons-omega/photo-off-2' - - const meta: Meta = { - component: PhotoOff2, - title: 'omega/PhotoOff2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/PhotoStack.stories.tsx b/src/stories-omega/PhotoStack.stories.tsx deleted file mode 100644 index b3d2f8d8..00000000 --- a/src/stories-omega/PhotoStack.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoStack from '../icons-omega/photo-stack' - - const meta: Meta = { - component: PhotoStack, - title: 'omega/PhotoStack', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Pinned.stories.tsx b/src/stories-omega/Pinned.stories.tsx deleted file mode 100644 index 198dee0d..00000000 --- a/src/stories-omega/Pinned.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Pinned from '../icons-omega/pinned' - - const meta: Meta = { - component: Pinned, - title: 'omega/Pinned', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Plus.stories.tsx b/src/stories-omega/Plus.stories.tsx deleted file mode 100644 index da58e318..00000000 --- a/src/stories-omega/Plus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Plus from '../icons-omega/plus' - - const meta: Meta = { - component: Plus, - title: 'omega/Plus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/QuestionMark.stories.tsx b/src/stories-omega/QuestionMark.stories.tsx deleted file mode 100644 index 616d6cfe..00000000 --- a/src/stories-omega/QuestionMark.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import QuestionMark from '../icons-omega/question-mark' - - const meta: Meta = { - component: QuestionMark, - title: 'omega/QuestionMark', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Redeem.stories.tsx b/src/stories-omega/Redeem.stories.tsx deleted file mode 100644 index 31459eaa..00000000 --- a/src/stories-omega/Redeem.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Redeem from '../icons-omega/redeem' - - const meta: Meta = { - component: Redeem, - title: 'omega/Redeem', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Refresh.stories.tsx b/src/stories-omega/Refresh.stories.tsx deleted file mode 100644 index fe665f44..00000000 --- a/src/stories-omega/Refresh.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Refresh from '../icons-omega/refresh' - - const meta: Meta = { - component: Refresh, - title: 'omega/Refresh', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Refresh2.stories.tsx b/src/stories-omega/Refresh2.stories.tsx deleted file mode 100644 index f05d9ead..00000000 --- a/src/stories-omega/Refresh2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Refresh2 from '../icons-omega/refresh-2' - - const meta: Meta = { - component: Refresh2, - title: 'omega/Refresh2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/RefreshAlert.stories.tsx b/src/stories-omega/RefreshAlert.stories.tsx deleted file mode 100644 index 411fcd5f..00000000 --- a/src/stories-omega/RefreshAlert.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import RefreshAlert from '../icons-omega/refresh-alert' - - const meta: Meta = { - component: RefreshAlert, - title: 'omega/RefreshAlert', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ReloadAlert.stories.tsx b/src/stories-omega/ReloadAlert.stories.tsx deleted file mode 100644 index 0ecb10ab..00000000 --- a/src/stories-omega/ReloadAlert.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ReloadAlert from '../icons-omega/reload-alert' - - const meta: Meta = { - component: ReloadAlert, - title: 'omega/ReloadAlert', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Rotate.stories.tsx b/src/stories-omega/Rotate.stories.tsx deleted file mode 100644 index c44be441..00000000 --- a/src/stories-omega/Rotate.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Rotate from '../icons-omega/rotate' - - const meta: Meta = { - component: Rotate, - title: 'omega/Rotate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Rotate90.stories.tsx b/src/stories-omega/Rotate90.stories.tsx deleted file mode 100644 index fc0d3b58..00000000 --- a/src/stories-omega/Rotate90.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Rotate90 from '../icons-omega/rotate-90' - - const meta: Meta = { - component: Rotate90, - title: 'omega/Rotate90', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/RotateClockwise.stories.tsx b/src/stories-omega/RotateClockwise.stories.tsx deleted file mode 100644 index f1ef1d36..00000000 --- a/src/stories-omega/RotateClockwise.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import RotateClockwise from '../icons-omega/rotate-clockwise' - - const meta: Meta = { - component: RotateClockwise, - title: 'omega/RotateClockwise', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Search.stories.tsx b/src/stories-omega/Search.stories.tsx deleted file mode 100644 index ca9923f9..00000000 --- a/src/stories-omega/Search.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Search from '../icons-omega/search' - - const meta: Meta = { - component: Search, - title: 'omega/Search', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Share.stories.tsx b/src/stories-omega/Share.stories.tsx deleted file mode 100644 index bf481175..00000000 --- a/src/stories-omega/Share.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Share from '../icons-omega/share' - - const meta: Meta = { - component: Share, - title: 'omega/Share', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ShoppingCart.stories.tsx b/src/stories-omega/ShoppingCart.stories.tsx deleted file mode 100644 index 04cd928d..00000000 --- a/src/stories-omega/ShoppingCart.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ShoppingCart from '../icons-omega/shopping-cart' - - const meta: Meta = { - component: ShoppingCart, - title: 'omega/ShoppingCart', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ShoppingCartDiscount.stories.tsx b/src/stories-omega/ShoppingCartDiscount.stories.tsx deleted file mode 100644 index b3972c7b..00000000 --- a/src/stories-omega/ShoppingCartDiscount.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ShoppingCartDiscount from '../icons-omega/shopping-cart-discount' - - const meta: Meta = { - component: ShoppingCartDiscount, - title: 'omega/ShoppingCartDiscount', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortAscending.stories.tsx b/src/stories-omega/SortAscending.stories.tsx deleted file mode 100644 index 1d0df3e6..00000000 --- a/src/stories-omega/SortAscending.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscending from '../icons-omega/sort-ascending' - - const meta: Meta = { - component: SortAscending, - title: 'omega/SortAscending', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortAscending2.stories.tsx b/src/stories-omega/SortAscending2.stories.tsx deleted file mode 100644 index f09365ec..00000000 --- a/src/stories-omega/SortAscending2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscending2 from '../icons-omega/sort-ascending-2' - - const meta: Meta = { - component: SortAscending2, - title: 'omega/SortAscending2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortAscendingLetters.stories.tsx b/src/stories-omega/SortAscendingLetters.stories.tsx deleted file mode 100644 index fae3be0c..00000000 --- a/src/stories-omega/SortAscendingLetters.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscendingLetters from '../icons-omega/sort-ascending-letters' - - const meta: Meta = { - component: SortAscendingLetters, - title: 'omega/SortAscendingLetters', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortAscendingNumbers.stories.tsx b/src/stories-omega/SortAscendingNumbers.stories.tsx deleted file mode 100644 index c7b77966..00000000 --- a/src/stories-omega/SortAscendingNumbers.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscendingNumbers from '../icons-omega/sort-ascending-numbers' - - const meta: Meta = { - component: SortAscendingNumbers, - title: 'omega/SortAscendingNumbers', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortDescending.stories.tsx b/src/stories-omega/SortDescending.stories.tsx deleted file mode 100644 index 506a828d..00000000 --- a/src/stories-omega/SortDescending.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescending from '../icons-omega/sort-descending' - - const meta: Meta = { - component: SortDescending, - title: 'omega/SortDescending', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortDescending2.stories.tsx b/src/stories-omega/SortDescending2.stories.tsx deleted file mode 100644 index 01aa45be..00000000 --- a/src/stories-omega/SortDescending2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescending2 from '../icons-omega/sort-descending-2' - - const meta: Meta = { - component: SortDescending2, - title: 'omega/SortDescending2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortDescendingLetters.stories.tsx b/src/stories-omega/SortDescendingLetters.stories.tsx deleted file mode 100644 index 2f40a102..00000000 --- a/src/stories-omega/SortDescendingLetters.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescendingLetters from '../icons-omega/sort-descending-letters' - - const meta: Meta = { - component: SortDescendingLetters, - title: 'omega/SortDescendingLetters', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/SortDescendingNumbers.stories.tsx b/src/stories-omega/SortDescendingNumbers.stories.tsx deleted file mode 100644 index efd55322..00000000 --- a/src/stories-omega/SortDescendingNumbers.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescendingNumbers from '../icons-omega/sort-descending-numbers' - - const meta: Meta = { - component: SortDescendingNumbers, - title: 'omega/SortDescendingNumbers', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Spray.stories.tsx b/src/stories-omega/Spray.stories.tsx deleted file mode 100644 index 32393708..00000000 --- a/src/stories-omega/Spray.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Spray from '../icons-omega/spray' - - const meta: Meta = { - component: Spray, - title: 'omega/Spray', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Spray2.stories.tsx b/src/stories-omega/Spray2.stories.tsx deleted file mode 100644 index 6d9fe682..00000000 --- a/src/stories-omega/Spray2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Spray2 from '../icons-omega/spray_2' - - const meta: Meta = { - component: Spray2, - title: 'omega/Spray2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Stack.stories.tsx b/src/stories-omega/Stack.stories.tsx deleted file mode 100644 index f1103ba2..00000000 --- a/src/stories-omega/Stack.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Stack from '../icons-omega/stack' - - const meta: Meta = { - component: Stack, - title: 'omega/Stack', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Stack2.stories.tsx b/src/stories-omega/Stack2.stories.tsx deleted file mode 100644 index 8cf0d7e6..00000000 --- a/src/stories-omega/Stack2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Stack2 from '../icons-omega/stack-2' - - const meta: Meta = { - component: Stack2, - title: 'omega/Stack2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/StackDouble.stories.tsx b/src/stories-omega/StackDouble.stories.tsx deleted file mode 100644 index caff9c20..00000000 --- a/src/stories-omega/StackDouble.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StackDouble from '../icons-omega/stack-double' - - const meta: Meta = { - component: StackDouble, - title: 'omega/StackDouble', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/StackTriple.stories.tsx b/src/stories-omega/StackTriple.stories.tsx deleted file mode 100644 index 55f7caa6..00000000 --- a/src/stories-omega/StackTriple.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StackTriple from '../icons-omega/stack-triple' - - const meta: Meta = { - component: StackTriple, - title: 'omega/StackTriple', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Star.stories.tsx b/src/stories-omega/Star.stories.tsx deleted file mode 100644 index b73aa57a..00000000 --- a/src/stories-omega/Star.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star from '../icons-omega/star' - - const meta: Meta = { - component: Star, - title: 'omega/Star', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/StarOff.stories.tsx b/src/stories-omega/StarOff.stories.tsx deleted file mode 100644 index c7c3b4ea..00000000 --- a/src/stories-omega/StarOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarOff from '../icons-omega/star-off' - - const meta: Meta = { - component: StarOff, - title: 'omega/StarOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ThumbDown.stories.tsx b/src/stories-omega/ThumbDown.stories.tsx deleted file mode 100644 index d45da8d8..00000000 --- a/src/stories-omega/ThumbDown.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ThumbDown from '../icons-omega/thumb-down' - - const meta: Meta = { - component: ThumbDown, - title: 'omega/ThumbDown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ThumbUp.stories.tsx b/src/stories-omega/ThumbUp.stories.tsx deleted file mode 100644 index 81c9813d..00000000 --- a/src/stories-omega/ThumbUp.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ThumbUp from '../icons-omega/thumb-up' - - const meta: Meta = { - component: ThumbUp, - title: 'omega/ThumbUp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Trash.stories.tsx b/src/stories-omega/Trash.stories.tsx deleted file mode 100644 index fa389f6d..00000000 --- a/src/stories-omega/Trash.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Trash from '../icons-omega/trash' - - const meta: Meta = { - component: Trash, - title: 'omega/Trash', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/TrashOff.stories.tsx b/src/stories-omega/TrashOff.stories.tsx deleted file mode 100644 index 98bc6a20..00000000 --- a/src/stories-omega/TrashOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import TrashOff from '../icons-omega/trash-off' - - const meta: Meta = { - component: TrashOff, - title: 'omega/TrashOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Unlink.stories.tsx b/src/stories-omega/Unlink.stories.tsx deleted file mode 100644 index a6ec4e72..00000000 --- a/src/stories-omega/Unlink.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Unlink from '../icons-omega/unlink' - - const meta: Meta = { - component: Unlink, - title: 'omega/Unlink', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Upload.stories.tsx b/src/stories-omega/Upload.stories.tsx deleted file mode 100644 index ee9c902a..00000000 --- a/src/stories-omega/Upload.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Upload from '../icons-omega/upload' - - const meta: Meta = { - component: Upload, - title: 'omega/Upload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Upload2.stories.tsx b/src/stories-omega/Upload2.stories.tsx deleted file mode 100644 index 508e562c..00000000 --- a/src/stories-omega/Upload2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Upload2 from '../icons-omega/upload-2' - - const meta: Meta = { - component: Upload2, - title: 'omega/Upload2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/User.stories.tsx b/src/stories-omega/User.stories.tsx deleted file mode 100644 index bf38f3c7..00000000 --- a/src/stories-omega/User.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import User from '../icons-omega/user' - - const meta: Meta = { - component: User, - title: 'omega/User', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserCheck.stories.tsx b/src/stories-omega/UserCheck.stories.tsx deleted file mode 100644 index 778fa584..00000000 --- a/src/stories-omega/UserCheck.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserCheck from '../icons-omega/user-check' - - const meta: Meta = { - component: UserCheck, - title: 'omega/UserCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserExclamation.stories.tsx b/src/stories-omega/UserExclamation.stories.tsx deleted file mode 100644 index 572f1510..00000000 --- a/src/stories-omega/UserExclamation.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserExclamation from '../icons-omega/user-exclamation' - - const meta: Meta = { - component: UserExclamation, - title: 'omega/UserExclamation', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserMinus.stories.tsx b/src/stories-omega/UserMinus.stories.tsx deleted file mode 100644 index 98a810c0..00000000 --- a/src/stories-omega/UserMinus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserMinus from '../icons-omega/user-minus' - - const meta: Meta = { - component: UserMinus, - title: 'omega/UserMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserOff.stories.tsx b/src/stories-omega/UserOff.stories.tsx deleted file mode 100644 index 3672ec9f..00000000 --- a/src/stories-omega/UserOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserOff from '../icons-omega/user-off' - - const meta: Meta = { - component: UserOff, - title: 'omega/UserOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserPlus.stories.tsx b/src/stories-omega/UserPlus.stories.tsx deleted file mode 100644 index f5bd871e..00000000 --- a/src/stories-omega/UserPlus.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserPlus from '../icons-omega/user-plus' - - const meta: Meta = { - component: UserPlus, - title: 'omega/UserPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/UserX.stories.tsx b/src/stories-omega/UserX.stories.tsx deleted file mode 100644 index da1b5a14..00000000 --- a/src/stories-omega/UserX.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserX from '../icons-omega/user-x' - - const meta: Meta = { - component: UserX, - title: 'omega/UserX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Users.stories.tsx b/src/stories-omega/Users.stories.tsx deleted file mode 100644 index 34f23061..00000000 --- a/src/stories-omega/Users.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Users from '../icons-omega/users' - - const meta: Meta = { - component: Users, - title: 'omega/Users', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ViewAll.stories.tsx b/src/stories-omega/ViewAll.stories.tsx deleted file mode 100644 index 17c006a0..00000000 --- a/src/stories-omega/ViewAll.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ViewAll from '../icons-omega/view-all' - - const meta: Meta = { - component: ViewAll, - title: 'omega/ViewAll', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Viewfinder.stories.tsx b/src/stories-omega/Viewfinder.stories.tsx deleted file mode 100644 index 6da1f8c4..00000000 --- a/src/stories-omega/Viewfinder.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Viewfinder from '../icons-omega/viewfinder' - - const meta: Meta = { - component: Viewfinder, - title: 'omega/Viewfinder', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Wifi.stories.tsx b/src/stories-omega/Wifi.stories.tsx deleted file mode 100644 index 08c221b6..00000000 --- a/src/stories-omega/Wifi.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi from '../icons-omega/wifi' - - const meta: Meta = { - component: Wifi, - title: 'omega/Wifi', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Wifi1.stories.tsx b/src/stories-omega/Wifi1.stories.tsx deleted file mode 100644 index 4ba5a4f7..00000000 --- a/src/stories-omega/Wifi1.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi1 from '../icons-omega/wifi-1' - - const meta: Meta = { - component: Wifi1, - title: 'omega/Wifi1', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Wifi2.stories.tsx b/src/stories-omega/Wifi2.stories.tsx deleted file mode 100644 index 0aaf6a73..00000000 --- a/src/stories-omega/Wifi2.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi2 from '../icons-omega/wifi-2' - - const meta: Meta = { - component: Wifi2, - title: 'omega/Wifi2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/WifiOff.stories.tsx b/src/stories-omega/WifiOff.stories.tsx deleted file mode 100644 index 44d47118..00000000 --- a/src/stories-omega/WifiOff.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import WifiOff from '../icons-omega/wifi-off' - - const meta: Meta = { - component: WifiOff, - title: 'omega/WifiOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/World.stories.tsx b/src/stories-omega/World.stories.tsx deleted file mode 100644 index d896850e..00000000 --- a/src/stories-omega/World.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import World from '../icons-omega/world' - - const meta: Meta = { - component: World, - title: 'omega/World', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/Writing.stories.tsx b/src/stories-omega/Writing.stories.tsx deleted file mode 100644 index cf2cd700..00000000 --- a/src/stories-omega/Writing.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Writing from '../icons-omega/writing' - - const meta: Meta = { - component: Writing, - title: 'omega/Writing', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/X.stories.tsx b/src/stories-omega/X.stories.tsx deleted file mode 100644 index f614b46b..00000000 --- a/src/stories-omega/X.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import X from '../icons-omega/x' - - const meta: Meta = { - component: X, - title: 'omega/X', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ZoomIn.stories.tsx b/src/stories-omega/ZoomIn.stories.tsx deleted file mode 100644 index 632ce873..00000000 --- a/src/stories-omega/ZoomIn.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomIn from '../icons-omega/zoom-in' - - const meta: Meta = { - component: ZoomIn, - title: 'omega/ZoomIn', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ZoomOut.stories.tsx b/src/stories-omega/ZoomOut.stories.tsx deleted file mode 100644 index c419c5c6..00000000 --- a/src/stories-omega/ZoomOut.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomOut from '../icons-omega/zoom-out' - - const meta: Meta = { - component: ZoomOut, - title: 'omega/ZoomOut', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories-omega/ZoomQuestion.stories.tsx b/src/stories-omega/ZoomQuestion.stories.tsx deleted file mode 100644 index 4369e432..00000000 --- a/src/stories-omega/ZoomQuestion.stories.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomQuestion from '../icons-omega/zoom-question' - - const meta: Meta = { - component: ZoomQuestion, - title: 'omega/ZoomQuestion', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - export const Red: Story = { - args: { - color: 'red', - }, - } - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AdjustmentIcon.stories.tsx b/src/stories/AdjustmentIcon.stories.tsx deleted file mode 100644 index f72af5d6..00000000 --- a/src/stories/AdjustmentIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AdjustmentIcon } from '../icons' - -const meta: Meta = { - component: AdjustmentIcon, - title: 'general/AdjustmentIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AfterShootLogoIcon.stories.tsx b/src/stories/AfterShootLogoIcon.stories.tsx deleted file mode 100644 index d5e15de0..00000000 --- a/src/stories/AfterShootLogoIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AfterShootLogoIcon } from '../icons' - -const meta: Meta = { - component: AfterShootLogoIcon, - title: 'logo/AfterShootLogoIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AftershootEditIcon.stories.tsx b/src/stories/AftershootEditIcon.stories.tsx deleted file mode 100644 index 5bc8229b..00000000 --- a/src/stories/AftershootEditIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AftershootEditIcon } from '../icons' - -const meta: Meta = { - component: AftershootEditIcon, - title: 'edit/AftershootEditIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 200, - }, -} diff --git a/src/stories/AftershootLogo.stories.tsx b/src/stories/AftershootLogo.stories.tsx new file mode 100644 index 00000000..8e1653af --- /dev/null +++ b/src/stories/AftershootLogo.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AftershootLogo from '../icons-test/aftershoot-logo' + + const meta: Meta = { + component: AftershootLogo, + title: 'omega/AftershootLogo', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AftershootWhiteIcon.stories.tsx b/src/stories/AftershootWhiteIcon.stories.tsx deleted file mode 100644 index b8dd8ae1..00000000 --- a/src/stories/AftershootWhiteIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AftershootWhiteIcon } from '../icons' - -const meta: Meta = { - component: AftershootWhiteIcon, - title: 'logo/AftershootWhiteIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertCircleIcon.stories.tsx b/src/stories/AlertCircleIcon.stories.tsx deleted file mode 100644 index 1580f5c5..00000000 --- a/src/stories/AlertCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertCircleIcon } from '../icons' - -const meta: Meta = { - component: AlertCircleIcon, - title: 'general/AlertCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertFillIcon.stories.tsx b/src/stories/AlertFillIcon.stories.tsx deleted file mode 100644 index 2ed896b8..00000000 --- a/src/stories/AlertFillIcon.stories.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertFillIcon } from '../icons' - -const meta: Meta = { - component: AlertFillIcon, - title: 'general/AlertFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowFill: Story = { - args: { - color: 'red', - fillColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertFillTriangleIcon.stories.tsx b/src/stories/AlertFillTriangleIcon.stories.tsx deleted file mode 100644 index 9830f98f..00000000 --- a/src/stories/AlertFillTriangleIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertFillTriangleIcon } from '../icons' - -const meta: Meta = { - component: AlertFillTriangleIcon, - title: 'general/AlertFillTriangleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenFill: Story = { - args: { - fillColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertHexagonBgIcon.stories.tsx b/src/stories/AlertHexagonBgIcon.stories.tsx deleted file mode 100644 index 401d2eb3..00000000 --- a/src/stories/AlertHexagonBgIcon.stories.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertHexagonBgIcon } from '../icons' - -const meta: Meta = { - component: AlertHexagonBgIcon, - title: 'general/AlertHexagonBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const bgOpacity: Story = { - args: { - bgOpacity: 1, - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertHexagonIcon.stories.tsx b/src/stories/AlertHexagonIcon.stories.tsx deleted file mode 100644 index 2170fc3b..00000000 --- a/src/stories/AlertHexagonIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertHexagonIcon } from '../icons' - -const meta: Meta = { - component: AlertHexagonIcon, - title: 'general/AlertHexagonIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertTriangleBgIcon.stories.tsx b/src/stories/AlertTriangleBgIcon.stories.tsx deleted file mode 100644 index bbcfca7c..00000000 --- a/src/stories/AlertTriangleBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertTriangleBgIcon } from '../icons' - -const meta: Meta = { - component: AlertTriangleBgIcon, - title: 'general/AlertTriangleBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const greenBg: Story = { - args: { - bgColor: 'green', - }, -} - -export const InActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/AlertTriangleIcon.stories.tsx b/src/stories/AlertTriangleIcon.stories.tsx deleted file mode 100644 index b9742db0..00000000 --- a/src/stories/AlertTriangleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AlertTriangleIcon } from '../icons' - -const meta: Meta = { - component: AlertTriangleIcon, - title: 'general/AlertTriangleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories-omega/AlertOctagon.stories.tsx b/src/stories/Apple.stories.tsx similarity index 81% rename from src/stories-omega/AlertOctagon.stories.tsx rename to src/stories/Apple.stories.tsx index 742a2ebf..2b2006ba 100644 --- a/src/stories-omega/AlertOctagon.stories.tsx +++ b/src/stories/Apple.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertOctagon from '../icons-omega/alert-octagon' + import Apple from '../icons-test/apple' - const meta: Meta = { - component: AlertOctagon, - title: 'omega/AlertOctagon', + const meta: Meta = { + component: Apple, + title: 'omega/Apple', decorators: [ (Story) => (
@@ -29,15 +29,17 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + export const inActive: Story = { args: { diff --git a/src/stories/AppleIcon.stories.tsx b/src/stories/AppleIcon.stories.tsx deleted file mode 100644 index 4ce2f4f5..00000000 --- a/src/stories/AppleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { AppleIcon } from '../icons' - -const meta: Meta = { - component: AppleIcon, - title: 'social/AppleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowCurveFill.stories.tsx b/src/stories/ArrowCurveFill.stories.tsx new file mode 100644 index 00000000..5e47aa22 --- /dev/null +++ b/src/stories/ArrowCurveFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowCurveFill from '../icons-test/arrow-curve-fill' + + const meta: Meta = { + component: ArrowCurveFill, + title: 'omega/ArrowCurveFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowCurveIcon.stories.tsx b/src/stories/ArrowCurveIcon.stories.tsx deleted file mode 100644 index 781fbcc1..00000000 --- a/src/stories/ArrowCurveIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowCurveIcon } from '../icons' - -const meta: Meta = { - component: ArrowCurveIcon, - title: 'general/ArrowCurveIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowDownIcon.stories.tsx b/src/stories/ArrowDownIcon.stories.tsx deleted file mode 100644 index b2b1e355..00000000 --- a/src/stories/ArrowDownIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowDownIcon } from '../icons' - -const meta: Meta = { - component: ArrowDownIcon, - title: 'general/ArrowDownIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowFillRightIcon.stories.tsx b/src/stories/ArrowFillRightIcon.stories.tsx deleted file mode 100644 index 440b5caa..00000000 --- a/src/stories/ArrowFillRightIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowFillRightIcon } from '../icons' - -const meta: Meta = { - component: ArrowFillRightIcon, - title: 'general/ArrowFillRightIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowFillUpIcon.stories.tsx b/src/stories/ArrowFillUpIcon.stories.tsx deleted file mode 100644 index 8f29f13b..00000000 --- a/src/stories/ArrowFillUpIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowFillUpIcon } from '../icons' - -const meta: Meta = { - component: ArrowFillUpIcon, - title: 'general/ArrowFillUpIcon(secondary)', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = { - args: { - variant: 'secondary', - }, -} - -export const Red: Story = { - args: { - color: 'red', - variant: 'secondary', - }, -} - -export const Large: Story = { - args: { - size: 30, - variant: 'secondary', - }, -} - -export const fillRed: Story = { - args: { - fillColor: 'red', - variant: 'secondary', - }, -} diff --git a/src/stories/ArrowLeftIcon.stories.tsx b/src/stories/ArrowLeftIcon.stories.tsx deleted file mode 100644 index 662ba57e..00000000 --- a/src/stories/ArrowLeftIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowLeftIcon } from '../icons' - -const meta: Meta = { - component: ArrowLeftIcon, - title: 'general/ArrowLeftIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowRightIcon.stories.tsx b/src/stories/ArrowRightIcon.stories.tsx deleted file mode 100644 index 2125dc26..00000000 --- a/src/stories/ArrowRightIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowRightIcon } from '../icons' - -const meta: Meta = { - component: ArrowRightIcon, - title: 'general/ArrowRightIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ArrowUpIcon.stories.tsx b/src/stories/ArrowUpIcon.stories.tsx deleted file mode 100644 index f35ee2f0..00000000 --- a/src/stories/ArrowUpIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ArrowUpIcon } from '../icons' - -const meta: Meta = { - component: ArrowUpIcon, - title: 'general/ArrowUpIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/BorderColorIcon.stories.tsx b/src/stories/BorderColorIcon.stories.tsx deleted file mode 100644 index 2c2fd82c..00000000 --- a/src/stories/BorderColorIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { BorderSquareIcon } from '../icons' - -const meta: Meta = { - component: BorderSquareIcon, - title: 'culling/BorderSquareIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} - -export const className: Story = { - args: { - className: 'text-green-500 w-10', - }, -} diff --git a/src/stories/BulbIcon.stories.tsx b/src/stories/BulbIcon.stories.tsx deleted file mode 100644 index a89a8bea..00000000 --- a/src/stories/BulbIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { BulbIcon } from '../icons' - -const meta: Meta = { - component: BulbIcon, - title: 'general/BulbIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/C1UploadIcon.stories.tsx b/src/stories/C1UploadIcon.stories.tsx deleted file mode 100644 index d9dc9d34..00000000 --- a/src/stories/C1UploadIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { C1UploadIcon } from '../icons' - -const meta: Meta = { - component: C1UploadIcon, - title: 'general/C1UploadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CaptureOneIcon.stories.tsx b/src/stories/CaptureOneIcon.stories.tsx deleted file mode 100644 index c28f0d9c..00000000 --- a/src/stories/CaptureOneIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CaptureOneIcon } from '../icons' - -const meta: Meta = { - component: CaptureOneIcon, - title: 'logo/CaptureOneIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CardBgIcon.stories.tsx b/src/stories/CardBgIcon.stories.tsx deleted file mode 100644 index aea06442..00000000 --- a/src/stories/CardBgIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CardBgIcon } from '../icons' - -const meta: Meta = { - component: CardBgIcon, - title: 'culling/CardBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CartIcon.stories.tsx b/src/stories/CartIcon.stories.tsx deleted file mode 100644 index 24cf2766..00000000 --- a/src/stories/CartIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CartIcon } from '../icons' - -const meta: Meta = { - component: CartIcon, - title: 'culling/CartIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CelebrateIcon.stories.tsx b/src/stories/CelebrateIcon.stories.tsx deleted file mode 100644 index 17565593..00000000 --- a/src/stories/CelebrateIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CelebrateIcon } from '../icons' - -const meta: Meta = { - component: CelebrateIcon, - title: 'culling/CelebrateIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 50, - }, -} diff --git a/src/stories/CheckBoxEmptyIcon.stories.tsx b/src/stories/CheckBoxEmptyIcon.stories.tsx deleted file mode 100644 index cc6ad475..00000000 --- a/src/stories/CheckBoxEmptyIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckBoxEmptyIcon } from '../icons' - -const meta: Meta = { - component: CheckBoxEmptyIcon, - title: 'edit/CheckBoxEmptyIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckBoxIcon.stories.tsx b/src/stories/CheckBoxIcon.stories.tsx deleted file mode 100644 index fa9f53e8..00000000 --- a/src/stories/CheckBoxIcon.stories.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckBoxIcon } from '../icons' - -const meta: Meta = { - component: CheckBoxIcon, - title: 'edit/CheckBoxIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const yellowAccent: Story = { - args: { - color: 'black', - accentColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckBoxPartialIcon.stories.tsx b/src/stories/CheckBoxPartialIcon.stories.tsx deleted file mode 100644 index d8a57fc0..00000000 --- a/src/stories/CheckBoxPartialIcon.stories.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckBoxPartialIcon } from '../icons' - -const meta: Meta = { - component: CheckBoxPartialIcon, - title: 'edit/CheckBoxPartialIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const yellowAccent: Story = { - args: { - color: 'black', - accentColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckCircleBgIcon.stories.tsx b/src/stories/CheckCircleBgIcon.stories.tsx deleted file mode 100644 index 043225c6..00000000 --- a/src/stories/CheckCircleBgIcon.stories.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckCircleBgIcon } from '../icons' - -const meta: Meta = { - component: CheckCircleBgIcon, - title: 'general/CheckCircleBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const bgOpacity: Story = { - args: { - bgOpacity: 1, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckCircleIcon.stories.tsx b/src/stories/CheckCircleIcon.stories.tsx deleted file mode 100644 index 0d849140..00000000 --- a/src/stories/CheckCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckCircleIcon } from '../icons' - -const meta: Meta = { - component: CheckCircleIcon, - title: 'general/CheckCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckFillCircleIcon.stories.tsx b/src/stories/CheckFillCircleIcon.stories.tsx deleted file mode 100644 index 7b00da89..00000000 --- a/src/stories/CheckFillCircleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckFillCircleIcon } from '../icons' - -const meta: Meta = { - component: CheckFillCircleIcon, - title: 'culling/CheckFillCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckFillIcon.stories.tsx b/src/stories/CheckFillIcon.stories.tsx deleted file mode 100644 index 881278b4..00000000 --- a/src/stories/CheckFillIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckFillIcon } from '../icons' - -const meta: Meta = { - component: CheckFillIcon, - title: 'general/CheckFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowFill: Story = { - args: { - color: 'black', - fillColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CheckIcon.stories.tsx b/src/stories/CheckIcon.stories.tsx deleted file mode 100644 index 5a21afc4..00000000 --- a/src/stories/CheckIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CheckIcon } from '../icons' - -const meta: Meta = { - component: CheckIcon, - title: 'general/CheckIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ChevronDownIcon.stories.tsx b/src/stories/ChevronDownIcon.stories.tsx deleted file mode 100644 index bc59d2b6..00000000 --- a/src/stories/ChevronDownIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ChevronDownIcon } from '../icons' - -const meta: Meta = { - component: ChevronDownIcon, - title: 'general/ChevronDownIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ChevronLeftIcon.stories.tsx b/src/stories/ChevronLeftIcon.stories.tsx deleted file mode 100644 index e4d4623a..00000000 --- a/src/stories/ChevronLeftIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ChevronLeftIcon } from '../icons' - -const meta: Meta = { - component: ChevronLeftIcon, - title: 'general/ChevronLeftIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ChevronRightIcon.stories.tsx b/src/stories/ChevronRightIcon.stories.tsx deleted file mode 100644 index c9a29d17..00000000 --- a/src/stories/ChevronRightIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ChevronRightIcon } from '../icons' - -const meta: Meta = { - component: ChevronRightIcon, - title: 'general/ChevronRightIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ChevronUpIcon.stories.tsx b/src/stories/ChevronUpIcon.stories.tsx deleted file mode 100644 index d4e776dd..00000000 --- a/src/stories/ChevronUpIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ChevronUpIcon } from '../icons' - -const meta: Meta = { - component: ChevronUpIcon, - title: 'general/ChevronUpIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories-omega/AdjustmentsHorizontal.stories.tsx b/src/stories/CircleFill.stories.tsx similarity index 80% rename from src/stories-omega/AdjustmentsHorizontal.stories.tsx rename to src/stories/CircleFill.stories.tsx index 2d1dec50..95c25ab4 100644 --- a/src/stories-omega/AdjustmentsHorizontal.stories.tsx +++ b/src/stories/CircleFill.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AdjustmentsHorizontal from '../icons-omega/adjustments-horizontal' + import CircleFill from '../icons-test/circle-fill' - const meta: Meta = { - component: AdjustmentsHorizontal, - title: 'omega/AdjustmentsHorizontal', + const meta: Meta = { + component: CircleFill, + title: 'omega/CircleFill', decorators: [ (Story) => (
@@ -29,15 +29,17 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + export const inActive: Story = { args: { diff --git a/src/stories/CircleFillIcon.stories.tsx b/src/stories/CircleFillIcon.stories.tsx deleted file mode 100644 index cd5f0ded..00000000 --- a/src/stories/CircleFillIcon.stories.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CircleFillIcon } from '../icons' - -const meta: Meta = { - component: CircleFillIcon, - title: 'general/CircleFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const yellowFill: Story = { - args: { - fillColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - fillColor: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CircleIcon.stories.tsx b/src/stories/CircleIcon.stories.tsx deleted file mode 100644 index 815a1341..00000000 --- a/src/stories/CircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CircleIcon } from '../icons' - -const meta: Meta = { - component: CircleIcon, - title: 'general/CircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ClockIcon.stories.tsx b/src/stories/ClockIcon.stories.tsx deleted file mode 100644 index 06436460..00000000 --- a/src/stories/ClockIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ClockIcon } from '../icons' - -const meta: Meta = { - component: ClockIcon, - title: 'general/ClockIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CloseCircleIcon.stories.tsx b/src/stories/CloseCircleIcon.stories.tsx deleted file mode 100644 index d55873a0..00000000 --- a/src/stories/CloseCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CloseCircleIcon } from '../icons' - -const meta: Meta = { - component: CloseCircleIcon, - title: 'general/CloseCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CloseIcon.stories.tsx b/src/stories/CloseIcon.stories.tsx deleted file mode 100644 index ec6cd4d1..00000000 --- a/src/stories/CloseIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CloseIcon } from '../icons' - -const meta: Meta = { - component: CloseIcon, - title: 'general/CloseIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CollectionsIcon.stories.tsx b/src/stories/CollectionsIcon.stories.tsx deleted file mode 100644 index a8df19ed..00000000 --- a/src/stories/CollectionsIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CollectionsIcon } from '../icons' - -const meta: Meta = { - component: CollectionsIcon, - title: 'edit/CollectionsIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ColorPaletteIcon.stories.tsx b/src/stories/ColorPaletteIcon.stories.tsx deleted file mode 100644 index 74b64d29..00000000 --- a/src/stories/ColorPaletteIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ColorPaletteIcon } from '../icons' - -const meta: Meta = { - component: ColorPaletteIcon, - title: 'general/ColorPaletteIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ComputerBgIcon.stories.tsx b/src/stories/ComputerBgIcon.stories.tsx deleted file mode 100644 index 325251fd..00000000 --- a/src/stories/ComputerBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ComputerBgIcon } from '../icons' - -const meta: Meta = { - component: ComputerBgIcon, - title: 'culling/ComputerBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ComputerIcon.stories.tsx b/src/stories/ComputerIcon.stories.tsx deleted file mode 100644 index 037f3552..00000000 --- a/src/stories/ComputerIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ComputerIcon } from '../icons' - -const meta: Meta = { - component: ComputerIcon, - title: 'edit/ComputerIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ConfettiIcon.stories.tsx b/src/stories/ConfettiIcon.stories.tsx deleted file mode 100644 index 9b8260b3..00000000 --- a/src/stories/ConfettiIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ConfettiIcon } from '../icons/general/ConfettiIcon' - -const meta: Meta = { - component: ConfettiIcon, - title: 'general/ConfettiIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ConfettiLeftScreen.stories.tsx b/src/stories/ConfettiLeftScreen.stories.tsx deleted file mode 100644 index f869922d..00000000 --- a/src/stories/ConfettiLeftScreen.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ConfettiLeftScreen } from '../icons' - -const meta: Meta = { - component: ConfettiLeftScreen, - title: 'edit/ConfettiLeftScreen', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 500, - }, -} diff --git a/src/stories/ConfettiRightScreen.stories.tsx b/src/stories/ConfettiRightScreen.stories.tsx deleted file mode 100644 index 79727b2c..00000000 --- a/src/stories/ConfettiRightScreen.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ConfettiRightScreen } from '../icons' - -const meta: Meta = { - component: ConfettiRightScreen, - title: 'edit/ConfettiRightScreen', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 500, - }, -} diff --git a/src/stories/ConfettiSideScreen.stories.tsx b/src/stories/ConfettiSideScreen.stories.tsx deleted file mode 100644 index 70786707..00000000 --- a/src/stories/ConfettiSideScreen.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ConfettiSideScreen } from '../icons' - -const meta: Meta = { - component: ConfettiSideScreen, - title: 'edit/ConfettiSideScreen', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 500, - }, -} diff --git a/src/stories/ContactSupportIcon.stories.tsx b/src/stories/ContactSupportIcon.stories.tsx deleted file mode 100644 index 0f8c98c6..00000000 --- a/src/stories/ContactSupportIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ContactSupportIcon } from '../icons' - -const meta: Meta = { - component: ContactSupportIcon, - title: 'culling/ContactSupportIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CopyContentIcon.stories.tsx b/src/stories/CopyContentIcon.stories.tsx deleted file mode 100644 index 149db32b..00000000 --- a/src/stories/CopyContentIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CopyContentIcon } from '../icons' - -const meta: Meta = { - component: CopyContentIcon, - title: 'general/CopyContentIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CopyIcon.stories.tsx b/src/stories/CopyIcon.stories.tsx deleted file mode 100644 index e11a8a07..00000000 --- a/src/stories/CopyIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CopyIcon } from '../icons' - -const meta: Meta = { - component: CopyIcon, - title: 'general/CopyIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CouponIcon.stories.tsx b/src/stories/CouponIcon.stories.tsx deleted file mode 100644 index a44101cd..00000000 --- a/src/stories/CouponIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CouponIcon } from '../icons' - -const meta: Meta = { - component: CouponIcon, - title: 'culling/CouponIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CreateProfileIcon.stories.tsx b/src/stories/CreateProfileIcon.stories.tsx deleted file mode 100644 index 0a88ec37..00000000 --- a/src/stories/CreateProfileIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CreateProfileIcon } from '../icons' - -const meta: Meta = { - component: CreateProfileIcon, - title: 'culling/CreateProfileIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CreditIcon.stories.tsx b/src/stories/CreditIcon.stories.tsx deleted file mode 100644 index eb660a71..00000000 --- a/src/stories/CreditIcon.stories.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CreditIcon } from '../icons' - -const meta: Meta = { - component: CreditIcon, - title: 'general/CreditIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta - -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CrossCircleIcon.stories.tsx b/src/stories/CrossCircleIcon.stories.tsx deleted file mode 100644 index 476d9065..00000000 --- a/src/stories/CrossCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CrossCircleIcon } from '../icons' - -const meta: Meta = { - component: CrossCircleIcon, - title: 'general/CrossCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CrossIcon.stories.tsx b/src/stories/CrossIcon.stories.tsx deleted file mode 100644 index 636c1a9d..00000000 --- a/src/stories/CrossIcon.stories.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CrossIcon } from '../icons' - -const meta: Meta = { - component: CrossIcon, - title: 'general/CrossIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 40, - }, -} - -export const onhover: Story = { - args: { - className: 'w-[10px]', - }, -} diff --git a/src/stories/Crown2Fill.stories.tsx b/src/stories/Crown2Fill.stories.tsx new file mode 100644 index 00000000..40186ff0 --- /dev/null +++ b/src/stories/Crown2Fill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Crown2Fill from '../icons-test/crown-2-fill' + + const meta: Meta = { + component: Crown2Fill, + title: 'omega/Crown2Fill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CrownBgIcon.stories.tsx b/src/stories/CrownBgIcon.stories.tsx deleted file mode 100644 index b778702f..00000000 --- a/src/stories/CrownBgIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CrownBgIcon } from '../icons' - -const meta: Meta = { - component: CrownBgIcon, - title: 'general/CrownBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const greenBg: Story = { - args: { - bgColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/CrownIcon.stories.tsx b/src/stories/CrownIcon.stories.tsx deleted file mode 100644 index de5cbd99..00000000 --- a/src/stories/CrownIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { CrownIcon } from '../icons' - -const meta: Meta = { - component: CrownIcon, - title: 'general/CrownIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DecrementIcon.stories.tsx b/src/stories/DecrementIcon.stories.tsx deleted file mode 100644 index ad79b30a..00000000 --- a/src/stories/DecrementIcon.stories.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DecrementIcon } from '../icons' - -const meta: Meta = { - component: DecrementIcon, - title: 'edit/DecrementIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const GreenAccent: Story = { - args: { - accentColor: 'green', - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DeleteIcon.stories.tsx b/src/stories/DeleteIcon.stories.tsx deleted file mode 100644 index 4ac1b00f..00000000 --- a/src/stories/DeleteIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DeleteIcon } from '../icons' - -const meta: Meta = { - component: DeleteIcon, - title: 'general/DeleteIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DeleteWhiteIcon.stories.tsx b/src/stories/DeleteWhiteIcon.stories.tsx deleted file mode 100644 index c0dac420..00000000 --- a/src/stories/DeleteWhiteIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DeleteBgIcon } from '../icons' - -const meta: Meta = { - component: DeleteBgIcon, - title: 'general/DeleteBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'white', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DiamondIcon.stories.tsx b/src/stories/DiamondIcon.stories.tsx deleted file mode 100644 index e7fe8827..00000000 --- a/src/stories/DiamondIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' -import { DiamondIcon } from '../icons' - -const meta: Meta = { - component: DiamondIcon, - title: 'culling/DiamondIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DollarIcon.stories.tsx b/src/stories/DollarIcon.stories.tsx deleted file mode 100644 index ecfa6456..00000000 --- a/src/stories/DollarIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DollarIcon } from '../icons/general/DollarIcon' - -const meta: Meta = { - component: DollarIcon, - title: 'General/DollarIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DotsVerticalIcon.stories.tsx b/src/stories/DotsVerticalIcon.stories.tsx deleted file mode 100644 index 9bbdccb6..00000000 --- a/src/stories/DotsVerticalIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DotsVerticalIcon } from '../icons' - -const meta: Meta = { - component: DotsVerticalIcon, - title: 'edit/DotsVerticalIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DownloadIcon.stories.tsx b/src/stories/DownloadIcon.stories.tsx deleted file mode 100644 index 9bf72834..00000000 --- a/src/stories/DownloadIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DownloadIcon } from '../icons' - -const meta: Meta = { - component: DownloadIcon, - title: 'culling/DownloadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const accentColor: Story = { - args: { - accentColor: '#0977e0', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragBridgeIcon.stories.tsx b/src/stories/DragBridgeIcon.stories.tsx deleted file mode 100644 index 2c127d7a..00000000 --- a/src/stories/DragBridgeIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragBridgeIcon } from '../icons' - -const meta: Meta = { - component: DragBridgeIcon, - title: 'logo/DragBridgeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragCaptureOneIcon.stories.tsx b/src/stories/DragCaptureOneIcon.stories.tsx deleted file mode 100644 index ed354130..00000000 --- a/src/stories/DragCaptureOneIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragCaptureOneIcon } from '../icons' - -const meta: Meta = { - component: DragCaptureOneIcon, - title: 'logo/DragCaptureOneIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragFolderIcon.stories.tsx b/src/stories/DragFolderIcon.stories.tsx deleted file mode 100644 index 288c1720..00000000 --- a/src/stories/DragFolderIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragFolderIcon } from '../icons' - -const meta: Meta = { - component: DragFolderIcon, - title: 'logo/DragFolderIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragLrIcon.stories.tsx b/src/stories/DragLrIcon.stories.tsx deleted file mode 100644 index 3d5210e6..00000000 --- a/src/stories/DragLrIcon.stories.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragLrIcon } from '../icons' - -const meta: Meta = { - component: DragLrIcon, - title: 'logo/DragLrIcon', - - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragLrcIcon.stories.tsx b/src/stories/DragLrcIcon.stories.tsx deleted file mode 100644 index a9302c41..00000000 --- a/src/stories/DragLrcIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragLrcIcon } from '../icons' - -const meta: Meta = { - component: DragLrcIcon, - title: 'logo/DragLrcIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DragPhotoshopIcon.stories.tsx b/src/stories/DragPhotoshopIcon.stories.tsx deleted file mode 100644 index 6b57aa0d..00000000 --- a/src/stories/DragPhotoshopIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DragPhotoshopIcon } from '../icons' - -const meta: Meta = { - component: DragPhotoshopIcon, - title: 'logo/DragPhotoshopIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DrawerIcon.stories.tsx b/src/stories/DrawerIcon.stories.tsx deleted file mode 100644 index bbb652f1..00000000 --- a/src/stories/DrawerIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DrawerIcon } from '../icons' - -const meta: Meta = { - component: DrawerIcon, - title: 'general/DrawerIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DublicateStackIcon.stories.tsx b/src/stories/DublicateStackIcon.stories.tsx deleted file mode 100644 index 46a90dcc..00000000 --- a/src/stories/DublicateStackIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DublicateStackThreeIcon } from '../icons' - -const meta: Meta = { - component: DublicateStackThreeIcon, - title: 'culling/DublicateStackThreeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DuplicateFillIcon.stories.tsx b/src/stories/DuplicateFillIcon.stories.tsx deleted file mode 100644 index ac586acc..00000000 --- a/src/stories/DuplicateFillIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DuplicateFillIcon } from '../icons' - -const meta: Meta = { - component: DuplicateFillIcon, - title: 'culling/DuplicateFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/DuplicateIcon.stories.tsx b/src/stories/DuplicateIcon.stories.tsx deleted file mode 100644 index a344a835..00000000 --- a/src/stories/DuplicateIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { DuplicateIcon } from '../icons' - -const meta: Meta = { - component: DuplicateIcon, - title: 'culling/DuplicateIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EditAlbumNameIcon.stories.tsx b/src/stories/EditAlbumNameIcon.stories.tsx deleted file mode 100644 index a3a25a88..00000000 --- a/src/stories/EditAlbumNameIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EditAlbumNameIcon } from '../icons' - -const meta: Meta = { - component: EditAlbumNameIcon, - title: 'culling/EditAlbumNameIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EditIcon.stories.tsx b/src/stories/EditIcon.stories.tsx deleted file mode 100644 index a4d11fc9..00000000 --- a/src/stories/EditIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EditIcon } from '../icons' - -const meta: Meta = { - component: EditIcon, - title: 'general/EditIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EditPhotoIcon.stories.tsx b/src/stories/EditPhotoIcon.stories.tsx deleted file mode 100644 index 51967a86..00000000 --- a/src/stories/EditPhotoIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EditPhotoIcon } from '../icons' - -const meta: Meta = { - component: EditPhotoIcon, - title: 'culling/EditPhotoIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EditProgressIcon.stories.tsx b/src/stories/EditProgressIcon.stories.tsx deleted file mode 100644 index 18533b42..00000000 --- a/src/stories/EditProgressIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EditProgressIcon } from '../icons' - -const meta: Meta = { - component: EditProgressIcon, - title: 'edit/EditProgressIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const GreenAccent: Story = { - args: { - accentColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EditsLogoTextIcon.stories.tsx b/src/stories/EditsLogoTextIcon.stories.tsx deleted file mode 100644 index 16e866be..00000000 --- a/src/stories/EditsLogoTextIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EditsLogoTextIcon } from '../icons' - -const meta: Meta = { - component: EditsLogoTextIcon, - title: 'logo/EditsLogoTextIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 100, - }, -} diff --git a/src/stories/ExitAppBgIcon.stories.tsx b/src/stories/ExitAppBgIcon.stories.tsx deleted file mode 100644 index 16f416bc..00000000 --- a/src/stories/ExitAppBgIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ExitAppBgIcon } from '../icons' - -const meta: Meta = { - component: ExitAppBgIcon, - title: 'culling/ExitAppBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const InActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ExpandIcon.stories.tsx b/src/stories/ExpandIcon.stories.tsx deleted file mode 100644 index 92bea321..00000000 --- a/src/stories/ExpandIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ExpandIcon } from '../icons' - -const meta: Meta = { - component: ExpandIcon, - title: 'culling/ExpandIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ExportIcon.stories.tsx b/src/stories/ExportIcon.stories.tsx deleted file mode 100644 index 20da5c01..00000000 --- a/src/stories/ExportIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ExportIcon } from '../icons' - -const meta: Meta = { - component: ExportIcon, - title: 'general/ExportIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EyeCheckedIcon.stories.tsx b/src/stories/EyeCheckedIcon.stories.tsx deleted file mode 100644 index 194fa8d6..00000000 --- a/src/stories/EyeCheckedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EyeCheckedIcon } from '../icons' - -const meta: Meta = { - component: EyeCheckedIcon, - title: 'culling/EyeCheckedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EyeCrossedIcon.stories.tsx b/src/stories/EyeCrossedIcon.stories.tsx deleted file mode 100644 index 6b7b7d33..00000000 --- a/src/stories/EyeCrossedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EyeCrossedIcon } from '../icons' - -const meta: Meta = { - component: EyeCrossedIcon, - title: 'culling/EyeCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/EyeIcon.stories.tsx b/src/stories/EyeIcon.stories.tsx deleted file mode 100644 index cfef5342..00000000 --- a/src/stories/EyeIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { EyeIcon } from '../icons' - -const meta: Meta = { - component: EyeIcon, - title: 'culling/EyeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories-omega/Alarm.stories.tsx b/src/stories/Facebook.stories.tsx similarity index 80% rename from src/stories-omega/Alarm.stories.tsx rename to src/stories/Facebook.stories.tsx index 4878c11b..09b63f59 100644 --- a/src/stories-omega/Alarm.stories.tsx +++ b/src/stories/Facebook.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Alarm from '../icons-omega/alarm' + import Facebook from '../icons-test/facebook' - const meta: Meta = { - component: Alarm, - title: 'omega/Alarm', + const meta: Meta = { + component: Facebook, + title: 'omega/Facebook', decorators: [ (Story) => (
@@ -29,15 +29,17 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + export const inActive: Story = { args: { diff --git a/src/stories/FacebookBgIcon.stories.tsx b/src/stories/FacebookBgIcon.stories.tsx deleted file mode 100644 index 94f9556f..00000000 --- a/src/stories/FacebookBgIcon.stories.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FacebookBgIcon } from '../icons' - -const meta: Meta = { - component: FacebookBgIcon, - title: 'social/FacebookBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: '#1DA1F2', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FacebookIcon.stories.tsx b/src/stories/FacebookIcon.stories.tsx deleted file mode 100644 index 6e47c77e..00000000 --- a/src/stories/FacebookIcon.stories.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FacebookIcon } from '../icons' - -const meta: Meta = { - component: FacebookIcon, - title: 'social/FacebookIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FacebookOutlineIcon.stories.tsx b/src/stories/FacebookOutlineIcon.stories.tsx deleted file mode 100644 index 76a03e51..00000000 --- a/src/stories/FacebookOutlineIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FacebookOutlineIcon } from '../icons' - -const meta: Meta = { - component: FacebookOutlineIcon, - title: 'social/FacebookOutlineIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FacebookPeopleIcon.stories.tsx b/src/stories/FacebookPeopleIcon.stories.tsx deleted file mode 100644 index 8ede53dd..00000000 --- a/src/stories/FacebookPeopleIcon.stories.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FacebookPeopleIcon } from '../icons' - -const meta: Meta = { - component: FacebookPeopleIcon, - title: 'culling/FacebookPeopleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = { - args: { - size: 100, - }, -} - -export const Large: Story = { - args: { - size: 300, - }, -} diff --git a/src/stories/FailFillBgIcon.stories.tsx b/src/stories/FailFillBgIcon.stories.tsx deleted file mode 100644 index b0a470f7..00000000 --- a/src/stories/FailFillBgIcon.stories.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FailFillBgIcon } from '../icons' - -const meta: Meta = { - component: FailFillBgIcon, - title: 'edit/FailFillBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const greenFill: Story = { - args: { - fillColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FailFillIcon.stories.tsx b/src/stories/FailFillIcon.stories.tsx deleted file mode 100644 index f724bc9f..00000000 --- a/src/stories/FailFillIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FailFillIcon } from '../icons' - -const meta: Meta = { - component: FailFillIcon, - title: 'edit/FailFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenFill: Story = { - args: { - fillColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FileSearchIcon.stories.tsx b/src/stories/FileSearchIcon.stories.tsx deleted file mode 100644 index 1ebcb88a..00000000 --- a/src/stories/FileSearchIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FileSearchIcon } from '../icons' - -const meta: Meta = { - component: FileSearchIcon, - title: 'edit/FileSearchIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FilterCircleIcon.stories.tsx b/src/stories/FilterCircleIcon.stories.tsx deleted file mode 100644 index 201449f5..00000000 --- a/src/stories/FilterCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FilterCircleIcon } from '../icons' - -const meta: Meta = { - component: FilterCircleIcon, - title: 'culling/FilterCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FilterIcon.stories.tsx b/src/stories/FilterIcon.stories.tsx deleted file mode 100644 index 409ce1aa..00000000 --- a/src/stories/FilterIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' -import FilterIcon from '../icons/culling/FilterIcon' - -const meta: Meta = { - component: FilterIcon, - title: 'culling/FilterIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FinderIcon.stories.tsx b/src/stories/FinderIcon.stories.tsx deleted file mode 100644 index f86362b1..00000000 --- a/src/stories/FinderIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FinderIcon } from '../icons' - -const meta: Meta = { - component: FinderIcon, - title: 'culling/FinderIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FiveStarBgIcon.stories.tsx b/src/stories/FiveStarBgIcon.stories.tsx deleted file mode 100644 index 696cf528..00000000 --- a/src/stories/FiveStarBgIcon.stories.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FiveStarBgIcon } from '../icons' - -const meta: Meta = { - component: FiveStarBgIcon, - title: 'culling/FiveStarBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const WhiteBg: Story = { - args: { - color: 'black', - bgColor: 'white', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FlagFillIcon.stories.tsx b/src/stories/FlagFillIcon.stories.tsx deleted file mode 100644 index 94db0bd1..00000000 --- a/src/stories/FlagFillIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FlagFillIcon } from '../icons' - -const meta: Meta = { - component: FlagFillIcon, - title: 'edit/FlagFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FlagOutlineCrossedIcon.stories.tsx b/src/stories/FlagOutlineCrossedIcon.stories.tsx deleted file mode 100644 index 4d6445b8..00000000 --- a/src/stories/FlagOutlineCrossedIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FlagOutlineCrossedIcon } from '../icons' - -const meta: Meta = { - component: FlagOutlineCrossedIcon, - title: 'edit/FlagOutlineCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FlagOutlineIcon.stories.tsx b/src/stories/FlagOutlineIcon.stories.tsx deleted file mode 100644 index 61dfc2f7..00000000 --- a/src/stories/FlagOutlineIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FlagOutlineIcon } from '../icons' - -const meta: Meta = { - component: FlagOutlineIcon, - title: 'edit/FlagOutlineIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FolderCrossedIcon.stories.tsx b/src/stories/FolderCrossedIcon.stories.tsx deleted file mode 100644 index 472988bf..00000000 --- a/src/stories/FolderCrossedIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FolderOutlineCrossedIcon } from '../icons' - -const meta: Meta = { - component: FolderOutlineCrossedIcon, - title: 'general/FolderOutlineCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FolderFillIcon.stories.tsx b/src/stories/FolderFillIcon.stories.tsx deleted file mode 100644 index 7e904cac..00000000 --- a/src/stories/FolderFillIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FolderFillIcon } from '../icons' - -const meta: Meta = { - component: FolderFillIcon, - title: 'general/FolderFillIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FolderOutlineBgIcon.stories.tsx b/src/stories/FolderOutlineBgIcon.stories.tsx deleted file mode 100644 index 2a91f6ed..00000000 --- a/src/stories/FolderOutlineBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FolderOutlineBgIcon } from '../icons' - -const meta: Meta = { - component: FolderOutlineBgIcon, - title: 'culling/FolderOutlineBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/FullScreenIcon.stories.tsx b/src/stories/FullScreenIcon.stories.tsx deleted file mode 100644 index 069254f8..00000000 --- a/src/stories/FullScreenIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { FullScreenIcon } from '../icons' - -const meta: Meta = { - component: FullScreenIcon, - title: 'culling/FullScreenIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GlobalIcon.stories.tsx b/src/stories/GlobalIcon.stories.tsx deleted file mode 100644 index 7f013519..00000000 --- a/src/stories/GlobalIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GlobalIcon } from '../icons' - -const meta: Meta = { - component: GlobalIcon, - title: 'general/GlobalIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GoogleColorIcon.stories.tsx b/src/stories/GoogleColorIcon.stories.tsx deleted file mode 100644 index d6b64440..00000000 --- a/src/stories/GoogleColorIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GoogleColorIcon } from '../icons' - -const meta: Meta = { - component: GoogleColorIcon, - title: 'social/GoogleColorIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridBgIcon.stories.tsx b/src/stories/GridBgIcon.stories.tsx deleted file mode 100644 index ff6b85ff..00000000 --- a/src/stories/GridBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GridBgIcon } from '../icons' - -const meta: Meta = { - component: GridBgIcon, - title: 'culling/GridBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const redBg: Story = { - args: { - bgColor: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridDotsIcon.stories.tsx b/src/stories/GridDotsIcon.stories.tsx deleted file mode 100644 index 5195aa40..00000000 --- a/src/stories/GridDotsIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GridDotsIcon } from '../icons' - -const meta: Meta = { - component: GridDotsIcon, - title: 'culling/GridDotsIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridIcon.stories.tsx b/src/stories/GridIcon.stories.tsx deleted file mode 100644 index 818179bb..00000000 --- a/src/stories/GridIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GridIcon } from '../icons' - -const meta: Meta = { - component: GridIcon, - title: 'culling/GridIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridThreeLitIcon.stories.tsx b/src/stories/GridThreeLitIcon.stories.tsx deleted file mode 100644 index 3962e01c..00000000 --- a/src/stories/GridThreeLitIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GridThreeLitIcon } from '../icons' - -const meta: Meta = { - component: GridThreeLitIcon, - title: 'culling/GridThreeLitIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridTwoLitIcon.stories.tsx b/src/stories/GridTwoLitIcon.stories.tsx deleted file mode 100644 index d0be8f1b..00000000 --- a/src/stories/GridTwoLitIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GridTwoLitIcon } from '../icons' - -const meta: Meta = { - component: GridTwoLitIcon, - title: 'culling/GridTwoLitIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/GridView1.stories.tsx b/src/stories/GridView1.stories.tsx new file mode 100644 index 00000000..e5acb595 --- /dev/null +++ b/src/stories/GridView1.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView1 from '../icons-test/grid-view-1' + + const meta: Meta = { + component: GridView1, + title: 'omega/GridView1', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridView2.stories.tsx b/src/stories/GridView2.stories.tsx new file mode 100644 index 00000000..f2678480 --- /dev/null +++ b/src/stories/GridView2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView2 from '../icons-test/grid-view-2' + + const meta: Meta = { + component: GridView2, + title: 'omega/GridView2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GroupingLessIcon.stories.tsx b/src/stories/GroupingLessIcon.stories.tsx deleted file mode 100644 index 026ec35c..00000000 --- a/src/stories/GroupingLessIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GroupingLessIcon } from '../icons' - -const meta: Meta = { - component: GroupingLessIcon, - title: 'culling/GroupingLessIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 300, - }, -} diff --git a/src/stories/GroupingMoreIcon.stories.tsx b/src/stories/GroupingMoreIcon.stories.tsx deleted file mode 100644 index 0e6ec780..00000000 --- a/src/stories/GroupingMoreIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { GroupingMoreIcon } from '../icons' - -const meta: Meta = { - component: GroupingMoreIcon, - title: 'culling/GroupingMoreIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 300, - }, -} diff --git a/src/stories/HomeIcon.stories.tsx b/src/stories/HomeIcon.stories.tsx deleted file mode 100644 index 2dc8affe..00000000 --- a/src/stories/HomeIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { HomeIcon } from '../icons' - -const meta: Meta = { - component: HomeIcon, - title: 'culling/HomeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageBorderCircleIcon.stories.tsx b/src/stories/ImageBorderCircleIcon.stories.tsx deleted file mode 100644 index 76a9048d..00000000 --- a/src/stories/ImageBorderCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageBorderCircleIcon } from '../icons' - -const meta: Meta = { - component: ImageBorderCircleIcon, - title: 'culling/ImageBorderCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageBorderIcon.stories.tsx b/src/stories/ImageBorderIcon.stories.tsx deleted file mode 100644 index 7b565e7e..00000000 --- a/src/stories/ImageBorderIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageBorderIcon } from '../icons' - -const meta: Meta = { - component: ImageBorderIcon, - title: 'culling/ImageBorderIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageCrossedBgIcon.stories.tsx b/src/stories/ImageCrossedBgIcon.stories.tsx deleted file mode 100644 index 3f96f081..00000000 --- a/src/stories/ImageCrossedBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageCrossedBgIcon } from '../icons' - -const meta: Meta = { - component: ImageCrossedBgIcon, - title: 'culling/ImageCrossedBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const redBg: Story = { - args: { - bgColor: 'red', - }, -} - -export const InActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageCrossedIcon.stories.tsx b/src/stories/ImageCrossedIcon.stories.tsx deleted file mode 100644 index aa7c8d30..00000000 --- a/src/stories/ImageCrossedIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageCrossedIcon } from '../icons' - -const meta: Meta = { - component: ImageCrossedIcon, - title: 'culling/ImageCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageIcon.stories.tsx b/src/stories/ImageIcon.stories.tsx deleted file mode 100644 index 83ed6a10..00000000 --- a/src/stories/ImageIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageIcon } from '../icons' - -const meta: Meta = { - component: ImageIcon, - title: 'culling/ImageIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ImageStackIcon.stories.tsx b/src/stories/ImageStackIcon.stories.tsx deleted file mode 100644 index f18ee685..00000000 --- a/src/stories/ImageStackIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ImageStackIcon } from '../icons' - -const meta: Meta = { - component: ImageStackIcon, - title: 'culling/ImageStackIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/InfoBgIcon.stories.tsx b/src/stories/InfoBgIcon.stories.tsx deleted file mode 100644 index b50de7de..00000000 --- a/src/stories/InfoBgIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { InfoBgIcon } from '../icons' - -const meta: Meta = { - component: InfoBgIcon, - title: 'general/InfoBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/InfoCircleIcon.stories.tsx b/src/stories/InfoCircleIcon.stories.tsx deleted file mode 100644 index 5a303b39..00000000 --- a/src/stories/InfoCircleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { InfoCircleIcon } from '../icons' - -const meta: Meta = { - component: InfoCircleIcon, - title: 'general/InfoCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/InstagramIcon.stories.tsx b/src/stories/InstagramIcon.stories.tsx deleted file mode 100644 index 1b3872b6..00000000 --- a/src/stories/InstagramIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { InstagramIcon } from '../icons' - -const meta: Meta = { - component: InstagramIcon, - title: 'social/InstagramIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/KeyCircleIcon.stories.tsx b/src/stories/KeyCircleIcon.stories.tsx deleted file mode 100644 index b889de4c..00000000 --- a/src/stories/KeyCircleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { KeyCircleIcon } from '../icons' - -const meta: Meta = { - component: KeyCircleIcon, - title: 'culling/KeyCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/KeyDuplicateFill.stories.tsx b/src/stories/KeyDuplicateFill.stories.tsx new file mode 100644 index 00000000..8f8271d8 --- /dev/null +++ b/src/stories/KeyDuplicateFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import KeyDuplicateFill from '../icons-test/key-duplicate-fill' + + const meta: Meta = { + component: KeyDuplicateFill, + title: 'omega/KeyDuplicateFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/KeyIcon.stories.tsx b/src/stories/KeyIcon.stories.tsx deleted file mode 100644 index 2426ad37..00000000 --- a/src/stories/KeyIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { KeyIcon } from '../icons' - -const meta: Meta = { - component: KeyIcon, - title: 'culling/KeyIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LightroomClassicIcon.stories.tsx b/src/stories/LightroomClassicIcon.stories.tsx deleted file mode 100644 index 0a128a2c..00000000 --- a/src/stories/LightroomClassicIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LightroomClassicIcon } from '../icons' - -const meta: Meta = { - component: LightroomClassicIcon, - title: 'logo/LightroomClassicIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LightroomIcon.stories.tsx b/src/stories/LightroomIcon.stories.tsx deleted file mode 100644 index 24eb25d4..00000000 --- a/src/stories/LightroomIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LightroomIcon } from '../icons' - -const meta: Meta = { - component: LightroomIcon, - title: 'logo/LightroomIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LinkIcon.stories.tsx b/src/stories/LinkIcon.stories.tsx deleted file mode 100644 index f945a4cd..00000000 --- a/src/stories/LinkIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LinkIcon } from '../icons' - -const meta: Meta = { - component: LinkIcon, - title: 'culling/LinkIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories-omega/AlertCircle.stories.tsx b/src/stories/ListFill.stories.tsx similarity index 80% rename from src/stories-omega/AlertCircle.stories.tsx rename to src/stories/ListFill.stories.tsx index 305a738d..7b96f928 100644 --- a/src/stories-omega/AlertCircle.stories.tsx +++ b/src/stories/ListFill.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertCircle from '../icons-omega/alert-circle' + import ListFill from '../icons-test/list-fill' - const meta: Meta = { - component: AlertCircle, - title: 'omega/AlertCircle', + const meta: Meta = { + component: ListFill, + title: 'omega/ListFill', decorators: [ (Story) => (
@@ -29,15 +29,17 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + export const inActive: Story = { args: { diff --git a/src/stories/ListNotSelectedIcon.stories.tsx b/src/stories/ListNotSelectedIcon.stories.tsx deleted file mode 100644 index c718946b..00000000 --- a/src/stories/ListNotSelectedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ListNotSelectedIcon } from '../icons' - -const meta: Meta = { - component: ListNotSelectedIcon, - title: 'culling/ListNotSelectedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ListSelectedIcon.stories.tsx b/src/stories/ListSelectedIcon.stories.tsx deleted file mode 100644 index ccb96df5..00000000 --- a/src/stories/ListSelectedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ListSelectedIcon } from '../icons' - -const meta: Meta = { - component: ListSelectedIcon, - title: 'culling/ListSelectedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LoaderIcon.stories.tsx b/src/stories/LoaderIcon.stories.tsx deleted file mode 100644 index 43d9d565..00000000 --- a/src/stories/LoaderIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LoaderIcon } from '../icons' - -const meta: Meta = { - component: LoaderIcon, - title: 'culling/LoaderIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LockIcon.stories.tsx b/src/stories/LockIcon.stories.tsx deleted file mode 100644 index 7cac5a56..00000000 --- a/src/stories/LockIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LockIcon } from '../icons' - -const meta: Meta = { - component: LockIcon, - title: 'culling/LockIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories-omega/Adjustments.stories.tsx b/src/stories/Loop.stories.tsx similarity index 81% rename from src/stories-omega/Adjustments.stories.tsx rename to src/stories/Loop.stories.tsx index d02c42ea..d80c1df8 100644 --- a/src/stories-omega/Adjustments.stories.tsx +++ b/src/stories/Loop.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Adjustments from '../icons-omega/adjustments' + import Loop from '../icons-test/loop' - const meta: Meta = { - component: Adjustments, - title: 'omega/Adjustments', + const meta: Meta = { + component: Loop, + title: 'omega/Loop', decorators: [ (Story) => (
@@ -29,15 +29,17 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { - args: { - color: 'red', - }, - } + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + export const inActive: Story = { args: { diff --git a/src/stories/LoopIcon.stories.tsx b/src/stories/LoopIcon.stories.tsx deleted file mode 100644 index 6c5fe2ac..00000000 --- a/src/stories/LoopIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LoopIcon } from '../icons' - -const meta: Meta = { - component: LoopIcon, - title: 'culling/LoopIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LoupeFill.stories.tsx b/src/stories/LoupeFill.stories.tsx new file mode 100644 index 00000000..efcf19c4 --- /dev/null +++ b/src/stories/LoupeFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoupeFill from '../icons-test/loupe-fill' + + const meta: Meta = { + component: LoupeFill, + title: 'omega/LoupeFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LoupeIcon.stories.tsx b/src/stories/LoupeIcon.stories.tsx deleted file mode 100644 index 20ba05f3..00000000 --- a/src/stories/LoupeIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LoupeIcon } from '../icons' - -const meta: Meta = { - component: LoupeIcon, - title: 'culling/LoupeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/LrUploadIcon.stories.tsx b/src/stories/LrUploadIcon.stories.tsx deleted file mode 100644 index 4292a5b3..00000000 --- a/src/stories/LrUploadIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { LrUploadIcon } from '../icons' - -const meta: Meta = { - component: LrUploadIcon, - title: 'general/LrUploadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MailBgIcon.stories.tsx b/src/stories/MailBgIcon.stories.tsx deleted file mode 100644 index 9dedb164..00000000 --- a/src/stories/MailBgIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MailBgIcon } from '../icons' - -const meta: Meta = { - component: MailBgIcon, - title: 'general/MailBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MaximizeIcon.stories.tsx b/src/stories/MaximizeIcon.stories.tsx deleted file mode 100644 index 1a3ae515..00000000 --- a/src/stories/MaximizeIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MaximizeIcon } from '../icons' - -const meta: Meta = { - component: MaximizeIcon, - title: 'culling/MaximizeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MenuIcon.stories.tsx b/src/stories/MenuIcon.stories.tsx deleted file mode 100644 index f955bcec..00000000 --- a/src/stories/MenuIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MenuIcon } from '../icons' - -const meta: Meta = { - component: MenuIcon, - title: 'culling/MenuIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MinimizeIcon.stories.tsx b/src/stories/MinimizeIcon.stories.tsx deleted file mode 100644 index 4c3e815c..00000000 --- a/src/stories/MinimizeIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MinimizeIcon } from '../icons' - -const meta: Meta = { - component: MinimizeIcon, - title: 'culling/MinimizeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MoneyBagIcon.stories.tsx b/src/stories/MoneyBagIcon.stories.tsx deleted file mode 100644 index 9dc854fe..00000000 --- a/src/stories/MoneyBagIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MoneyBagIcon } from '../icons' - -const meta: Meta = { - component: MoneyBagIcon, - title: 'culling/MoneyBagIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MoodIcon.stories.tsx b/src/stories/MoodIcon.stories.tsx deleted file mode 100644 index cf7e0223..00000000 --- a/src/stories/MoodIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MoodIcon } from '../icons' - -const meta: Meta = { - component: MoodIcon, - title: 'edit/MoodIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenAccent: Story = { - args: { - accentColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 100, - }, -} diff --git a/src/stories/MouseLeftClick.stories.tsx b/src/stories/MouseLeftClick.stories.tsx deleted file mode 100644 index 22d850d3..00000000 --- a/src/stories/MouseLeftClick.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MouseLeftClick } from '../icons' - -const meta: Meta = { - component: MouseLeftClick, - title: 'culling/MouseLeftClick', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MouseLeftClickCircleIcon.stories.tsx b/src/stories/MouseLeftClickCircleIcon.stories.tsx deleted file mode 100644 index a2e507a8..00000000 --- a/src/stories/MouseLeftClickCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MouseLeftClickCircleIcon } from '../icons' - -const meta: Meta = { - component: MouseLeftClickCircleIcon, - title: 'culling/MouseLeftClickCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MouseRightClick.stories.tsx b/src/stories/MouseRightClick.stories.tsx deleted file mode 100644 index 65aa0097..00000000 --- a/src/stories/MouseRightClick.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MouseRightClick } from '../icons' - -const meta: Meta = { - component: MouseRightClick, - title: 'culling/MouseRightClick', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/MoveBgIcon.stories.tsx b/src/stories/MoveBgIcon.stories.tsx deleted file mode 100644 index 33744210..00000000 --- a/src/stories/MoveBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { MoveBgIcon } from '../icons' - -const meta: Meta = { - component: MoveBgIcon, - title: 'culling/MoveBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/NoDuplicateIcon.stories.tsx b/src/stories/NoDuplicateIcon.stories.tsx deleted file mode 100644 index 85861958..00000000 --- a/src/stories/NoDuplicateIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { NoDuplicateIcon } from '../icons' - -const meta: Meta = { - component: NoDuplicateIcon, - title: 'culling/NoDuplicateIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/NoneIconIcon.stories.tsx b/src/stories/NoneIconIcon.stories.tsx deleted file mode 100644 index 4d882cfa..00000000 --- a/src/stories/NoneIconIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { NoneIcon } from '../icons' - -const meta: Meta = { - component: NoneIcon, - title: 'culling/NoneIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/NoneSelectedIcon.stories.tsx b/src/stories/NoneSelectedIcon.stories.tsx deleted file mode 100644 index 4b98b5fe..00000000 --- a/src/stories/NoneSelectedIcon.stories.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { NoneSelectedIcon } from '../icons' - -const meta: Meta = { - component: NoneSelectedIcon, - title: 'culling/NoneSelectedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/NotAllowIcon.stories.tsx b/src/stories/NotAllowIcon.stories.tsx deleted file mode 100644 index 0db2a7fe..00000000 --- a/src/stories/NotAllowIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { NotAllowIcon } from '../icons' - -const meta: Meta = { - component: NotAllowIcon, - title: 'culling/NotAllowIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/NotSelectedCircleIcon.stories.tsx b/src/stories/NotSelectedCircleIcon.stories.tsx deleted file mode 100644 index 62db9cf4..00000000 --- a/src/stories/NotSelectedCircleIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { NotSelectedCircleIcon } from '../icons' - -const meta: Meta = { - component: NotSelectedCircleIcon, - title: 'culling/NotSelectedCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/OpenlinkIcon.stories.tsx b/src/stories/OpenlinkIcon.stories.tsx deleted file mode 100644 index a3ce365c..00000000 --- a/src/stories/OpenlinkIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { OpenlinkIcon } from '../icons' - -const meta: Meta = { - component: OpenlinkIcon, - title: 'general/OpenlinkIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PaletteFill.stories.tsx b/src/stories/PaletteFill.stories.tsx new file mode 100644 index 00000000..52c4ae99 --- /dev/null +++ b/src/stories/PaletteFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PaletteFill from '../icons-test/palette-fill' + + const meta: Meta = { + component: PaletteFill, + title: 'omega/PaletteFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PauseBgIcon.stories.tsx b/src/stories/PauseBgIcon.stories.tsx deleted file mode 100644 index c337bcd8..00000000 --- a/src/stories/PauseBgIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PauseBgIcon } from '../icons' - -const meta: Meta = { - component: PauseBgIcon, - title: 'general/PauseBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PauseFill.stories.tsx b/src/stories/PauseFill.stories.tsx new file mode 100644 index 00000000..fe381b2e --- /dev/null +++ b/src/stories/PauseFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PauseFill from '../icons-test/pause-fill' + + const meta: Meta = { + component: PauseFill, + title: 'omega/PauseFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PersonPlusIcon.stories.tsx b/src/stories/PersonPlusIcon.stories.tsx deleted file mode 100644 index da009bec..00000000 --- a/src/stories/PersonPlusIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PersonPlusIcon } from '../icons/general/PersonPlusIcon' - -const meta: Meta = { - component: PersonPlusIcon, - title: 'general/PersonPlusIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PersonTwoIcon.stories.tsx b/src/stories/PersonTwoIcon.stories.tsx deleted file mode 100644 index e39870b3..00000000 --- a/src/stories/PersonTwoIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PersonTwoIcon } from '../icons' - -const meta: Meta = { - component: PersonTwoIcon, - title: 'general/PersonTwoIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PipeIcon.stories.tsx b/src/stories/PipeIcon.stories.tsx deleted file mode 100644 index 68f6712c..00000000 --- a/src/stories/PipeIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PipeIcon } from '../icons' - -const meta: Meta = { - component: PipeIcon, - title: 'general/PipeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 40, - }, -} diff --git a/src/stories/PlayBgIcon.stories.tsx b/src/stories/PlayBgIcon.stories.tsx deleted file mode 100644 index 5603517d..00000000 --- a/src/stories/PlayBgIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PlayBgIcon } from '../icons' - -const meta: Meta = { - component: PlayBgIcon, - title: 'general/PlayBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const bgRed: Story = { - args: { - bgColor: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PlayCircleIcon.stories.tsx b/src/stories/PlayCircleIcon.stories.tsx deleted file mode 100644 index b56fd51d..00000000 --- a/src/stories/PlayCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PlayCircleIcon } from '../icons' - -const meta: Meta = { - component: PlayCircleIcon, - title: 'general/PlayCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PlayFill.stories.tsx b/src/stories/PlayFill.stories.tsx new file mode 100644 index 00000000..6ff578b9 --- /dev/null +++ b/src/stories/PlayFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PlayFill from '../icons-test/play-fill' + + const meta: Meta = { + component: PlayFill, + title: 'omega/PlayFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PlusBgIcon.stories.tsx b/src/stories/PlusBgIcon.stories.tsx deleted file mode 100644 index 07b5034d..00000000 --- a/src/stories/PlusBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PlusBgIcon } from '../icons' - -const meta: Meta = { - component: PlusBgIcon, - title: 'edit/PlusBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowAccent: Story = { - args: { - color: 'black', - accentColor: 'yellow', - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PowerHighIcon.stories.tsx b/src/stories/PowerHighIcon.stories.tsx deleted file mode 100644 index 886f76e7..00000000 --- a/src/stories/PowerHighIcon.stories.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PowerHighIcon } from '../icons' - -const meta: Meta = { - component: PowerHighIcon, - title: 'enable/PowerHighIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Enable: Story = { - args: { - isFill: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PowerLowIcon.stories.tsx b/src/stories/PowerLowIcon.stories.tsx deleted file mode 100644 index e0b73236..00000000 --- a/src/stories/PowerLowIcon.stories.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PowerLowIcon } from '../icons' - -const meta: Meta = { - component: PowerLowIcon, - title: 'enable/PowerLowIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Enable: Story = { - args: { - isFill: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/PowerMidIcon.stories.tsx b/src/stories/PowerMidIcon.stories.tsx deleted file mode 100644 index 328803ee..00000000 --- a/src/stories/PowerMidIcon.stories.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { PowerMidIcon } from '../icons' - -const meta: Meta = { - component: PowerMidIcon, - title: 'enable/PowerMidIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Enable: Story = { - args: { - isFill: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/QuestionMarkCircleIcon.stories.tsx b/src/stories/QuestionMarkCircleIcon.stories.tsx deleted file mode 100644 index 761f6017..00000000 --- a/src/stories/QuestionMarkCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { QuestionMarkCircleIcon } from '../icons' - -const meta: Meta = { - component: QuestionMarkCircleIcon, - title: 'general/QuestionMarkCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/QuestionMarkIcon.stories.tsx b/src/stories/QuestionMarkIcon.stories.tsx deleted file mode 100644 index 88672f20..00000000 --- a/src/stories/QuestionMarkIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { QuestionMarkIcon } from '../icons' - -const meta: Meta = { - component: QuestionMarkIcon, - title: 'general/QuestionMarkIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RecullIcon.stories.tsx b/src/stories/RecullIcon.stories.tsx deleted file mode 100644 index d022ea40..00000000 --- a/src/stories/RecullIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RecullIcon } from '../icons' - -const meta: Meta = { - component: RecullIcon, - title: 'culling/RecullIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RefreshIcon.stories.tsx b/src/stories/RefreshIcon.stories.tsx deleted file mode 100644 index d023a690..00000000 --- a/src/stories/RefreshIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RefreshIcon } from '../icons' - -const meta: Meta = { - component: RefreshIcon, - title: 'general/RefreshIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ReloadWarningIcon.stories.tsx b/src/stories/ReloadWarningIcon.stories.tsx deleted file mode 100644 index 3400936d..00000000 --- a/src/stories/ReloadWarningIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ReloadIcon } from '../icons' - -const meta: Meta = { - component: ReloadIcon, - title: 'culling/ReloadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ReverticonIcon.stories.tsx b/src/stories/ReverticonIcon.stories.tsx deleted file mode 100644 index 085c0cc5..00000000 --- a/src/stories/ReverticonIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RevertIcon } from '../icons' - -const meta: Meta = { - component: RevertIcon, - title: 'general/RevertIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RightSignIcon.stories.tsx b/src/stories/RightSignIcon.stories.tsx deleted file mode 100644 index e8e953ed..00000000 --- a/src/stories/RightSignIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RightArrowBgIcon } from '../icons' - -const meta: Meta = { - component: RightArrowBgIcon, - title: 'edit/RightArrowBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RotateIcon.stories.tsx b/src/stories/RotateIcon.stories.tsx deleted file mode 100644 index 83014c6a..00000000 --- a/src/stories/RotateIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RotateIcon } from '../icons' - -const meta: Meta = { - component: RotateIcon, - title: 'general/RotateIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RotateLeftSquareIcon.stories.tsx b/src/stories/RotateLeftSquareIcon.stories.tsx deleted file mode 100644 index be441085..00000000 --- a/src/stories/RotateLeftSquareIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RotateLeftSquareIcon } from '../icons' - -const meta: Meta = { - component: RotateLeftSquareIcon, - title: 'culling/RotateLeftSquareIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/RotateRightSquareIcon.stories.tsx b/src/stories/RotateRightSquareIcon.stories.tsx deleted file mode 100644 index 109df2f8..00000000 --- a/src/stories/RotateRightSquareIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { RotateRightSquareIcon } from '../icons' - -const meta: Meta = { - component: RotateRightSquareIcon, - title: 'culling/RotateRightSquareIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ScissorsFill.stories.tsx b/src/stories/ScissorsFill.stories.tsx new file mode 100644 index 00000000..4d7e54dc --- /dev/null +++ b/src/stories/ScissorsFill.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ScissorsFill from '../icons-test/scissors-fill' + + const meta: Meta = { + component: ScissorsFill, + title: 'omega/ScissorsFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ScissorsIcon.stories.tsx b/src/stories/ScissorsIcon.stories.tsx deleted file mode 100644 index 00c68eff..00000000 --- a/src/stories/ScissorsIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ScissorsIcon } from '../icons' - -const meta: Meta = { - component: ScissorsIcon, - title: 'general/ScissorsIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SearchIcon.stories.tsx b/src/stories/SearchIcon.stories.tsx deleted file mode 100644 index bd560453..00000000 --- a/src/stories/SearchIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SearchIcon } from '../icons' - -const meta: Meta = { - component: SearchIcon, - title: 'general/SearchIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SelectedFillCircleIcon.stories.tsx b/src/stories/SelectedFillCircleIcon.stories.tsx deleted file mode 100644 index 18a8f844..00000000 --- a/src/stories/SelectedFillCircleIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SelectedFillCircleIcon } from '../icons' - -const meta: Meta = { - component: SelectedFillCircleIcon, - title: 'culling/SelectedFillCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowFill: Story = { - args: { - fillColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ShareIcon.stories.tsx b/src/stories/ShareIcon.stories.tsx deleted file mode 100644 index a7791404..00000000 --- a/src/stories/ShareIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ShareIcon } from '../icons' - -const meta: Meta = { - component: ShareIcon, - title: 'culling/ShareIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ShowDuplicateIcon.stories.tsx b/src/stories/ShowDuplicateIcon.stories.tsx deleted file mode 100644 index dfc6a414..00000000 --- a/src/stories/ShowDuplicateIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ShowDuplicateIcon } from '../icons' - -const meta: Meta = { - component: ShowDuplicateIcon, - title: 'culling/ShowDuplicateIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SmileyHappyIcon.stories.tsx b/src/stories/SmileyHappyIcon.stories.tsx deleted file mode 100644 index 6e7b1839..00000000 --- a/src/stories/SmileyHappyIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SmileyHappyIcon } from '../icons' - -const meta: Meta = { - component: SmileyHappyIcon, - title: 'culling/SmileyHappyIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SmileySadIcon.stories.tsx b/src/stories/SmileySadIcon.stories.tsx deleted file mode 100644 index 056e3cce..00000000 --- a/src/stories/SmileySadIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SmileySadIcon } from '../icons' - -const meta: Meta = { - component: SmileySadIcon, - title: 'culling/SmileySadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortCircleIcon.stories.tsx b/src/stories/SortCircleIcon.stories.tsx deleted file mode 100644 index 1b1d2310..00000000 --- a/src/stories/SortCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortCircleIcon } from '../icons' - -const meta: Meta = { - component: SortCircleIcon, - title: 'culling/SortCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortDuplicateCircleIcon.stories.tsx b/src/stories/SortDuplicateCircleIcon.stories.tsx deleted file mode 100644 index d2de3563..00000000 --- a/src/stories/SortDuplicateCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortDuplicateCircleIcon } from '../icons' - -const meta: Meta = { - component: SortDuplicateCircleIcon, - title: 'culling/SortDuplicateCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortDuplicatesIcon.stories.tsx b/src/stories/SortDuplicatesIcon.stories.tsx deleted file mode 100644 index f08f05ac..00000000 --- a/src/stories/SortDuplicatesIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortDuplicatesIcon } from '../icons' - -const meta: Meta = { - component: SortDuplicatesIcon, - title: 'culling/SortDuplicatesIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortIcon.stories.tsx b/src/stories/SortIcon.stories.tsx deleted file mode 100644 index 879fb0a6..00000000 --- a/src/stories/SortIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortIcon } from '../icons' - -const meta: Meta = { - component: SortIcon, - title: 'culling/SortIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortOptionAlphaIcon.stories.tsx b/src/stories/SortOptionAlphaIcon.stories.tsx deleted file mode 100644 index 8e109818..00000000 --- a/src/stories/SortOptionAlphaIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortOptionAlphaIcon } from '../icons' - -const meta: Meta = { - component: SortOptionAlphaIcon, - title: 'culling/SortOptionAlphaIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const bgGreen: Story = { - args: { - bgColor: 'green', - }, -} - -export const InActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SortOptionNumIcon.stories.tsx b/src/stories/SortOptionNumIcon.stories.tsx deleted file mode 100644 index ad8389cf..00000000 --- a/src/stories/SortOptionNumIcon.stories.tsx +++ /dev/null @@ -1,50 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SortOptionNumIcon } from '../icons' - -const meta: Meta = { - component: SortOptionNumIcon, - title: 'culling/SortOptionNumIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Yellow: Story = { - args: { - color: 'yellow', - }, -} -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const bgGreen: Story = { - args: { - bgColor: 'green', - }, -} - -export const InActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SparkleIcon.stories.tsx b/src/stories/SparkleIcon.stories.tsx deleted file mode 100644 index 8572efba..00000000 --- a/src/stories/SparkleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SparkleIcon } from '../icons' - -const meta: Meta = { - component: SparkleIcon, - title: 'culling/SparkleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Blue: Story = { - args: { - color: '#2279CE', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SprayBgIcon.stories.tsx b/src/stories/SprayBgIcon.stories.tsx deleted file mode 100644 index 980887cf..00000000 --- a/src/stories/SprayBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SprayBgIcon } from '../icons' - -const meta: Meta = { - component: SprayBgIcon, - title: 'culling/SprayBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SprayCanIcon.stories.tsx b/src/stories/SprayCanIcon.stories.tsx deleted file mode 100644 index 536491ec..00000000 --- a/src/stories/SprayCanIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SprayCanIcon } from '../icons' - -const meta: Meta = { - component: SprayCanIcon, - title: 'culling/SprayCanIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SprayCircleIcon.stories.tsx b/src/stories/SprayCircleIcon.stories.tsx deleted file mode 100644 index cbf7f62b..00000000 --- a/src/stories/SprayCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SprayCircleIcon } from '../icons' - -const meta: Meta = { - component: SprayCircleIcon, - title: 'culling/SprayCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/StackThreeIcon.stories.tsx b/src/stories/StackThreeIcon.stories.tsx deleted file mode 100644 index d25aec08..00000000 --- a/src/stories/StackThreeIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { StackThreeIcon } from '../icons' - -const meta: Meta = { - component: StackThreeIcon, - title: 'culling/StackThreeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/StackTwoIcon.stories.tsx b/src/stories/StackTwoIcon.stories.tsx deleted file mode 100644 index 688952cb..00000000 --- a/src/stories/StackTwoIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { StackTwoIcon } from '../icons' - -const meta: Meta = { - component: StackTwoIcon, - title: 'culling/StackTwoIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/StarCrossedIcon.stories.tsx b/src/stories/StarCrossedIcon.stories.tsx deleted file mode 100644 index 805cc66c..00000000 --- a/src/stories/StarCrossedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { StarCrossedIcon } from '../icons' - -const meta: Meta = { - component: StarCrossedIcon, - title: 'general/StarCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/StarIcon.stories.tsx b/src/stories/StarIcon.stories.tsx deleted file mode 100644 index cbecf562..00000000 --- a/src/stories/StarIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { StarIcon } from '../icons' - -const meta: Meta = { - component: StarIcon, - title: 'general/StarIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Yellow: Story = { - args: { - color: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/StorageCrossedIcon.stories.tsx b/src/stories/StorageCrossedIcon.stories.tsx deleted file mode 100644 index c4223926..00000000 --- a/src/stories/StorageCrossedIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { StorageCrossedIcon } from '../icons' - -const meta: Meta = { - component: StorageCrossedIcon, - title: 'culling/StorageCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SuccessIcon.stories.tsx b/src/stories/SuccessIcon.stories.tsx deleted file mode 100644 index c24ac939..00000000 --- a/src/stories/SuccessIcon.stories.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SuccessFillBgIcon } from '../icons' - -const meta: Meta = { - component: SuccessFillBgIcon, - title: 'edit/SuccessFillBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const redFill: Story = { - args: { - fillColor: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/SurveyModeIcon.stories.tsx b/src/stories/SurveyModeIcon.stories.tsx deleted file mode 100644 index 33287f28..00000000 --- a/src/stories/SurveyModeIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { SurveyModeIcon } from '../icons' - -const meta: Meta = { - component: SurveyModeIcon, - title: 'culling/SurveyModeIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ThumbDownBgIcon.stories.tsx b/src/stories/ThumbDownBgIcon.stories.tsx deleted file mode 100644 index bf46d476..00000000 --- a/src/stories/ThumbDownBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ThumbDownBgIcon } from '../icons' - -const meta: Meta = { - component: ThumbDownBgIcon, - title: 'general/ThumbDownBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenBg: Story = { - args: { - bgColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ThumbUpBgIcon.stories.tsx b/src/stories/ThumbUpBgIcon.stories.tsx deleted file mode 100644 index 751a45f7..00000000 --- a/src/stories/ThumbUpBgIcon.stories.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ThumbUpBgIcon } from '../icons' - -const meta: Meta = { - component: ThumbUpBgIcon, - title: 'general/ThumbUpBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenBg: Story = { - args: { - bgColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ThunderBgIcon.stories.tsx b/src/stories/ThunderBgIcon.stories.tsx deleted file mode 100644 index 58c02fdb..00000000 --- a/src/stories/ThunderBgIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ThunderBgIcon } from '../icons' - -const meta: Meta = { - component: ThunderBgIcon, - title: 'culling/ThunderBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: false, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/TrainBgIcon.stories.tsx b/src/stories/TrainBgIcon.stories.tsx deleted file mode 100644 index 018678af..00000000 --- a/src/stories/TrainBgIcon.stories.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { TrainBgIcon } from '../icons' - -const meta: Meta = { - component: TrainBgIcon, - title: 'edit/TrainBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenAccent: Story = { - args: { - accentColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/TrophyColorIcon.stories.tsx b/src/stories/TrophyColorIcon.stories.tsx deleted file mode 100644 index a2064af9..00000000 --- a/src/stories/TrophyColorIcon.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { TrophyColorIcon } from '../icons/general/TrophyColorIcon' - -const meta: Meta = { - component: TrophyColorIcon, - title: 'general/TrophyColorIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/TwitterIcon.stories.tsx b/src/stories/TwitterIcon.stories.tsx deleted file mode 100644 index 22e243e4..00000000 --- a/src/stories/TwitterIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { TwitterIcon } from '../icons' - -const meta: Meta = { - component: TwitterIcon, - title: 'deleted/TwitterIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/TwitterOutlineIcon.stories.tsx b/src/stories/TwitterOutlineIcon.stories.tsx deleted file mode 100644 index b57b0cba..00000000 --- a/src/stories/TwitterOutlineIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { TwitterOutlineIcon } from '../icons' - -const meta: Meta = { - component: TwitterOutlineIcon, - title: 'deleted/TwitterOutlineIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/UploadBgIcon.stories.tsx b/src/stories/UploadBgIcon.stories.tsx deleted file mode 100644 index 1975b699..00000000 --- a/src/stories/UploadBgIcon.stories.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { UploadBgIcon } from '../icons' - -const meta: Meta = { - component: UploadBgIcon, - title: 'general/UploadBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const greenAccent: Story = { - args: { - accentColor: 'green', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/UploadCloudIcon.stories.tsx b/src/stories/UploadCloudIcon.stories.tsx deleted file mode 100644 index 4e282ce3..00000000 --- a/src/stories/UploadCloudIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { UploadCloudIcon } from '../icons' - -const meta: Meta = { - component: UploadCloudIcon, - title: 'general/UploadCloudIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/UploadFolder.stories.tsx b/src/stories/UploadFolder.stories.tsx deleted file mode 100644 index 37da3654..00000000 --- a/src/stories/UploadFolder.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { UploadFolderIcon } from '../icons' - -const meta: Meta = { - component: UploadFolderIcon, - title: 'culling/UploadFolderIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/UploadIcon.stories.tsx b/src/stories/UploadIcon.stories.tsx deleted file mode 100644 index fb0aa07b..00000000 --- a/src/stories/UploadIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { UploadIcon } from '../icons' - -const meta: Meta = { - component: UploadIcon, - title: 'general/UploadIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/UploadIconIcon.stories.tsx b/src/stories/UploadIconIcon.stories.tsx deleted file mode 100644 index 56b25122..00000000 --- a/src/stories/UploadIconIcon.stories.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { UploadCloudBgIcon } from '../icons' - -const meta: Meta = { - component: UploadCloudBgIcon, - title: 'general/UploadCloudBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const redAccent: Story = { - args: { - accentColor: 'red', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ViewAllIcon.stories.tsx b/src/stories/ViewAllIcon.stories.tsx deleted file mode 100644 index 3eb7441d..00000000 --- a/src/stories/ViewAllIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ViewAllIcon } from '../icons' - -const meta: Meta = { - component: ViewAllIcon, - title: 'culling/ViewAllIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/WhatsappIcon.stories.tsx b/src/stories/WhatsappIcon.stories.tsx deleted file mode 100644 index c7c67a6b..00000000 --- a/src/stories/WhatsappIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { WhatsappIcon } from '../icons/social/WhatsappIcon' - -const meta: Meta = { - component: WhatsappIcon, - title: 'social/WhatsappIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/WifiCrossedBgIcon.stories.tsx b/src/stories/WifiCrossedBgIcon.stories.tsx deleted file mode 100644 index a97c1cbf..00000000 --- a/src/stories/WifiCrossedBgIcon.stories.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { WifiCrossedBgIcon } from '../icons' - -const meta: Meta = { - component: WifiCrossedBgIcon, - title: 'general/WifiCrossedBgIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const yellowBg: Story = { - args: { - color: 'black', - bgColor: 'yellow', - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/WifiCrossedIcon.stories.tsx b/src/stories/WifiCrossedIcon.stories.tsx deleted file mode 100644 index c8073fa8..00000000 --- a/src/stories/WifiCrossedIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { WifiCrossedIcon } from '../icons' - -const meta: Meta = { - component: WifiCrossedIcon, - title: 'general/WifiCrossedIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/XIcon.stories.tsx b/src/stories/XIcon.stories.tsx deleted file mode 100644 index 46bddec1..00000000 --- a/src/stories/XIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { XIcon } from '../icons' - -const meta: Meta = { - component: XIcon, - title: 'social/XIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ZoomCircleIcon.stories.tsx b/src/stories/ZoomCircleIcon.stories.tsx deleted file mode 100644 index c67b6de3..00000000 --- a/src/stories/ZoomCircleIcon.stories.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ZoomCircleIcon } from '../icons' - -const meta: Meta = { - component: ZoomCircleIcon, - title: 'culling/ZoomCircleIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/stories/ZoomIcon.stories.tsx b/src/stories/ZoomIcon.stories.tsx deleted file mode 100644 index 722be9b6..00000000 --- a/src/stories/ZoomIcon.stories.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' -import React from 'react' - -import { ZoomIcon } from '../icons' - -const meta: Meta = { - component: ZoomIcon, - title: 'culling/ZoomIcon', - decorators: [ - (Story) => ( -
- -
- ), - ], -} - -export default meta -type Story = StoryObj - -export const Default: Story = {} - -export const Red: Story = { - args: { - color: 'red', - }, -} - -export const inActive: Story = { - args: { - inActive: true, - }, -} - -export const Large: Story = { - args: { - size: 30, - }, -} diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 87e8752d..013ce324 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -554,10 +554,6 @@ video { --tw-contain-style: ; } -.absolute { - position: absolute; -} - .box-border { box-sizing: border-box; } @@ -586,10 +582,6 @@ video { width: 1.5rem; } -.w-\[10px\] { - width: 10px; -} - .w-\[24px\] { width: 24px; } @@ -598,11 +590,6 @@ video { flex-shrink: 0; } -.rotate-90 { - --tw-rotate: 90deg; - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} - .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } @@ -650,6 +637,10 @@ video { background-color: transparent; } +.fill-current { + fill: currentColor; +} + .stroke-\[\#fff\] { stroke: #fff; } @@ -658,34 +649,10 @@ video { stroke-width: 1; } -.stroke-2 { - stroke-width: 2; -} - -.stroke-\[1\.5\] { - stroke-width: 1.5; -} - .stroke-\[1\.5px\] { stroke-width: 1.5px; } -.stroke-\[3px\] { - stroke-width: 3px; -} - -.stroke-\[4px\] { - stroke-width: 4px; -} - -.stroke-\[8px\] { - stroke-width: 8px; -} - -.stroke-\[5px\] { - stroke-width: 5px; -} - .p-2 { padding: 0.5rem; } @@ -700,11 +667,6 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-green-500 { - --tw-text-opacity: 1; - color: rgb(34 197 94 / var(--tw-text-opacity)); -} - .text-red-400 { --tw-text-opacity: 1; color: rgb(248 113 113 / var(--tw-text-opacity)); @@ -715,6 +677,16 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-red-500 { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +.text-\[\#555555\] { + --tw-text-opacity: 1; + color: rgb(85 85 85 / var(--tw-text-opacity)); +} + .outline { outline-style: solid; } diff --git a/unicons.config.json b/unicons.config.json index aa950bb2..7551bfad 100644 --- a/unicons.config.json +++ b/unicons.config.json @@ -1,5 +1,26 @@ { "icon_input_dir": "icons-original", - "icon_output_dir": "icons-omega", - "stories_output_dir": "stories-omega" + "icon_output_dir": "icons-test", + "stories_output_dir": "stories", + "svg_process_options": { + "outline": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + }, + "fill": { + "fill": "#555555" + }, + "mix": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + }, + "no_change": { + "fill": "none" + }, + "di": { + "fill": "#555555" + } + } } From fa2250ae4a91961f11a7cf53cc6504f24246d915 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Sun, 2 Jun 2024 00:35:26 +0530 Subject: [PATCH 23/34] add: no chang where svg do not have to be processed --- icons-optimized/grid-view-1.svg | 1 + icons-optimized/grid-view-2.svg | 2 + icons-optimized/key-duplicate-fill.json | 7 -- .../{loop.json => key-duplicate.json} | 2 +- ...y-duplicate-fill.svg => key-duplicate.svg} | 0 icons-optimized/list-fill.svg | 1 + icons-optimized/loop.svg | 18 ----- icons-optimized/scissors-fill.json | 7 -- icons-optimized/scissors.json | 4 ++ icons-optimized/scissors.svg | 14 ++++ icons-original/{fill => _outline}/loop.svg | 4 +- icons-original/fill/grid-view-1.svg | 2 +- icons-original/fill/grid-view-2.svg | 4 +- ...y-duplicate-fill.svg => key-duplicate.svg} | 0 icons-original/fill/list-fill.svg | 2 +- icons-original/fill/scissors-fill.svg | 8 --- .../fill/scissors.svg | 4 +- icons-original/no-change/scissors.svg | 14 ++++ scripts/processSvg.mjs | 8 ++- src/Icon.ts | 2 +- src/icons-test/grid-view-1.tsx | 3 +- src/icons-test/grid-view-2.tsx | 6 +- src/icons-test/index.ts | 5 +- ...y-duplicate-fill.tsx => key-duplicate.tsx} | 6 +- src/icons-test/list-fill.tsx | 3 +- src/icons-test/loop.tsx | 40 ----------- .../{scissors-fill.tsx => scissors.tsx} | 12 ++-- ...l.stories.tsx => KeyDuplicate.stories.tsx} | 10 +-- src/stories/KeyDuplicateFill.stories.tsx | 70 ------------------- ...{Loop.stories.tsx => Scissors.stories.tsx} | 10 +-- 30 files changed, 82 insertions(+), 187 deletions(-) delete mode 100644 icons-optimized/key-duplicate-fill.json rename icons-optimized/{loop.json => key-duplicate.json} (74%) rename icons-optimized/{key-duplicate-fill.svg => key-duplicate.svg} (100%) delete mode 100644 icons-optimized/loop.svg delete mode 100644 icons-optimized/scissors-fill.json create mode 100644 icons-optimized/scissors.json create mode 100644 icons-optimized/scissors.svg rename icons-original/{fill => _outline}/loop.svg (62%) rename icons-original/fill/{key-duplicate-fill.svg => key-duplicate.svg} (100%) delete mode 100644 icons-original/fill/scissors-fill.svg rename icons-optimized/scissors-fill.svg => icons-original/fill/scissors.svg (96%) create mode 100644 icons-original/no-change/scissors.svg rename src/icons-test/{key-duplicate-fill.tsx => key-duplicate.tsx} (86%) delete mode 100644 src/icons-test/loop.tsx rename src/icons-test/{scissors-fill.tsx => scissors.tsx} (87%) rename src/stories/{ScissorsFill.stories.tsx => KeyDuplicate.stories.tsx} (88%) delete mode 100644 src/stories/KeyDuplicateFill.stories.tsx rename src/stories/{Loop.stories.tsx => Scissors.stories.tsx} (89%) diff --git a/icons-optimized/grid-view-1.svg b/icons-optimized/grid-view-1.svg index f9e1a0cc..048c3ad4 100644 --- a/icons-optimized/grid-view-1.svg +++ b/icons-optimized/grid-view-1.svg @@ -13,6 +13,7 @@ /> diff --git a/icons-optimized/grid-view-2.svg b/icons-optimized/grid-view-2.svg index f9e1a0cc..bb0ca544 100644 --- a/icons-optimized/grid-view-2.svg +++ b/icons-optimized/grid-view-2.svg @@ -5,6 +5,7 @@ /> diff --git a/icons-optimized/key-duplicate-fill.json b/icons-optimized/key-duplicate-fill.json deleted file mode 100644 index c9c741a4..00000000 --- a/icons-optimized/key-duplicate-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "key-duplicate-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/loop.json b/icons-optimized/key-duplicate.json similarity index 74% rename from icons-optimized/loop.json rename to icons-optimized/key-duplicate.json index 30f47c44..504d480b 100644 --- a/icons-optimized/loop.json +++ b/icons-optimized/key-duplicate.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "loop", + "name": "key-duplicate", "svg_process_option": { "fill": "#555555" } diff --git a/icons-optimized/key-duplicate-fill.svg b/icons-optimized/key-duplicate.svg similarity index 100% rename from icons-optimized/key-duplicate-fill.svg rename to icons-optimized/key-duplicate.svg diff --git a/icons-optimized/list-fill.svg b/icons-optimized/list-fill.svg index b09e4a26..b85aef0a 100644 --- a/icons-optimized/list-fill.svg +++ b/icons-optimized/list-fill.svg @@ -1,6 +1,7 @@ - - - - - diff --git a/icons-optimized/scissors-fill.json b/icons-optimized/scissors-fill.json deleted file mode 100644 index 10d4cab5..00000000 --- a/icons-optimized/scissors-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "scissors-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/scissors.json b/icons-optimized/scissors.json new file mode 100644 index 00000000..116b7e4e --- /dev/null +++ b/icons-optimized/scissors.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "scissors" +} \ No newline at end of file diff --git a/icons-optimized/scissors.svg b/icons-optimized/scissors.svg new file mode 100644 index 00000000..9a3e4565 --- /dev/null +++ b/icons-optimized/scissors.svg @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/icons-original/fill/loop.svg b/icons-original/_outline/loop.svg similarity index 62% rename from icons-original/fill/loop.svg rename to icons-original/_outline/loop.svg index 73675442..74bc252b 100644 --- a/icons-original/fill/loop.svg +++ b/icons-original/_outline/loop.svg @@ -1,6 +1,6 @@ - - + + diff --git a/icons-original/fill/grid-view-1.svg b/icons-original/fill/grid-view-1.svg index cc18f9da..f66f92ea 100644 --- a/icons-original/fill/grid-view-1.svg +++ b/icons-original/fill/grid-view-1.svg @@ -2,5 +2,5 @@ - + diff --git a/icons-original/fill/grid-view-2.svg b/icons-original/fill/grid-view-2.svg index 02a9d21f..3a4cba60 100644 --- a/icons-original/fill/grid-view-2.svg +++ b/icons-original/fill/grid-view-2.svg @@ -1,6 +1,6 @@ - + - + diff --git a/icons-original/fill/key-duplicate-fill.svg b/icons-original/fill/key-duplicate.svg similarity index 100% rename from icons-original/fill/key-duplicate-fill.svg rename to icons-original/fill/key-duplicate.svg diff --git a/icons-original/fill/list-fill.svg b/icons-original/fill/list-fill.svg index 9e3f0a09..4385fa75 100644 --- a/icons-original/fill/list-fill.svg +++ b/icons-original/fill/list-fill.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/fill/scissors-fill.svg b/icons-original/fill/scissors-fill.svg deleted file mode 100644 index 3fb70ba2..00000000 --- a/icons-original/fill/scissors-fill.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons-optimized/scissors-fill.svg b/icons-original/fill/scissors.svg similarity index 96% rename from icons-optimized/scissors-fill.svg rename to icons-original/fill/scissors.svg index 494deaa8..8c684acd 100644 --- a/icons-optimized/scissors-fill.svg +++ b/icons-original/fill/scissors.svg @@ -1,13 +1,13 @@ diff --git a/icons-original/no-change/scissors.svg b/icons-original/no-change/scissors.svg new file mode 100644 index 00000000..9a3e4565 --- /dev/null +++ b/icons-original/no-change/scissors.svg @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 8632fed4..ff66c91d 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -43,7 +43,9 @@ async function optimizeSvg(svg, path, iconType) { fn: (ast) => { const visit = (node) => { if (node.attributes && node.attributes.fill) { - node.attributes.fill = 'currentColor' + if (!node.attributes?.noChange) { + node.attributes.fill = 'currentColor' + } } if (node.children) { for (const child of node.children) { @@ -59,6 +61,10 @@ async function optimizeSvg(svg, path, iconType) { plugins.push(customPlugInUpdateFillValue) } + if (iconType === 'no-change') { + return svg + } + const result = optimize(svg, { path, plugins, diff --git a/src/Icon.ts b/src/Icon.ts index 6071b583..2e40b069 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -43,7 +43,7 @@ const Icon = forwardRef( className: cn( `w-[24px] h-[24px] shrink-0 `, svgType === 'outline' && 'stroke-[1.5px]', - svgType === 'fill' && 'text-[#555555]', + svgType === 'fill' && 'text-white', inActive && 'text-[#777777]', className, ), diff --git a/src/icons-test/grid-view-1.tsx b/src/icons-test/grid-view-1.tsx index 945dba71..bc46c0c5 100644 --- a/src/icons-test/grid-view-1.tsx +++ b/src/icons-test/grid-view-1.tsx @@ -26,8 +26,9 @@ const GridView1 = createASIcon( /> , "fill", diff --git a/src/icons-test/grid-view-2.tsx b/src/icons-test/grid-view-2.tsx index 11c891cc..a21c5aa8 100644 --- a/src/icons-test/grid-view-2.tsx +++ b/src/icons-test/grid-view-2.tsx @@ -16,8 +16,9 @@ const GridView2 = createASIcon( /> , "fill", diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts index 89ba86b2..0b90251b 100644 --- a/src/icons-test/index.ts +++ b/src/icons-test/index.ts @@ -6,12 +6,11 @@ export { default as Crown2Fill } from './crown-2-fill'; export { default as Facebook } from './facebook'; export { default as GridView1 } from './grid-view-1'; export { default as GridView2 } from './grid-view-2'; -export { default as KeyDuplicateFill } from './key-duplicate-fill'; +export { default as KeyDuplicate } from './key-duplicate'; export { default as ListFill } from './list-fill'; -export { default as Loop } from './loop'; export { default as LoupeFill } from './loupe-fill'; export { default as PaletteFill } from './palette-fill'; export { default as PauseFill } from './pause-fill'; export { default as PlayFill } from './play-fill'; -export { default as ScissorsFill } from './scissors-fill'; +export { default as Scissors } from './scissors'; diff --git a/src/icons-test/key-duplicate-fill.tsx b/src/icons-test/key-duplicate.tsx similarity index 86% rename from src/icons-test/key-duplicate-fill.tsx rename to src/icons-test/key-duplicate.tsx index 6afe942f..b8ccdc0a 100644 --- a/src/icons-test/key-duplicate-fill.tsx +++ b/src/icons-test/key-duplicate.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const KeyDuplicateFill = createASIcon( - "KeyDuplicateFill", +const KeyDuplicate = createASIcon( + "KeyDuplicate", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -23,4 +23,4 @@ const KeyDuplicateFill = createASIcon( "fill", ); -export default KeyDuplicateFill; +export default KeyDuplicate; diff --git a/src/icons-test/list-fill.tsx b/src/icons-test/list-fill.tsx index 156ab657..23f8fad6 100644 --- a/src/icons-test/list-fill.tsx +++ b/src/icons-test/list-fill.tsx @@ -11,8 +11,9 @@ const ListFill = createASIcon( - - - - - , - "fill", -); - -export default Loop; diff --git a/src/icons-test/scissors-fill.tsx b/src/icons-test/scissors.tsx similarity index 87% rename from src/icons-test/scissors-fill.tsx rename to src/icons-test/scissors.tsx index c588259d..30785a61 100644 --- a/src/icons-test/scissors-fill.tsx +++ b/src/icons-test/scissors.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ScissorsFill = createASIcon( - "ScissorsFill", +const Scissors = createASIcon( + "Scissors", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -19,8 +19,8 @@ const ScissorsFill = createASIcon( key="1iifvq" > @@ -30,7 +30,7 @@ const ScissorsFill = createASIcon( /> , - "fill", + "no-change", ); -export default ScissorsFill; +export default Scissors; diff --git a/src/stories/ScissorsFill.stories.tsx b/src/stories/KeyDuplicate.stories.tsx similarity index 88% rename from src/stories/ScissorsFill.stories.tsx rename to src/stories/KeyDuplicate.stories.tsx index 4d7e54dc..48be6297 100644 --- a/src/stories/ScissorsFill.stories.tsx +++ b/src/stories/KeyDuplicate.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ScissorsFill from '../icons-test/scissors-fill' + import KeyDuplicate from '../icons-test/key-duplicate' - const meta: Meta = { - component: ScissorsFill, - title: 'omega/ScissorsFill', + const meta: Meta = { + component: KeyDuplicate, + title: 'omega/KeyDuplicate', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/KeyDuplicateFill.stories.tsx b/src/stories/KeyDuplicateFill.stories.tsx deleted file mode 100644 index 8f8271d8..00000000 --- a/src/stories/KeyDuplicateFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import KeyDuplicateFill from '../icons-test/key-duplicate-fill' - - const meta: Meta = { - component: KeyDuplicateFill, - title: 'omega/KeyDuplicateFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Loop.stories.tsx b/src/stories/Scissors.stories.tsx similarity index 89% rename from src/stories/Loop.stories.tsx rename to src/stories/Scissors.stories.tsx index d80c1df8..d02e55a9 100644 --- a/src/stories/Loop.stories.tsx +++ b/src/stories/Scissors.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Loop from '../icons-test/loop' + import Scissors from '../icons-test/scissors' - const meta: Meta = { - component: Loop, - title: 'omega/Loop', + const meta: Meta = { + component: Scissors, + title: 'omega/Scissors', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} From 65965eb8379f8ab1d04b7ea4424c3c80839d26ab Mon Sep 17 00:00:00 2001 From: booi-dev Date: Mon, 3 Jun 2024 13:58:06 +0530 Subject: [PATCH 24/34] update: export template --- icons-optimized/Crown Play.json | 9 +++ icons-optimized/Crown Play.svg | 10 +++ icons-optimized/aftershoot-logo.json | 7 -- icons-optimized/aftershoot-logo.svg | 6 -- icons-optimized/apple.json | 7 -- icons-optimized/apple.svg | 6 -- icons-optimized/arrow-curve-fill.json | 7 -- icons-optimized/arrow-curve-fill.svg | 6 -- icons-optimized/circle-fill.json | 7 -- icons-optimized/circle-fill.svg | 6 -- icons-optimized/collection.json | 9 +++ icons-optimized/collection.svg | 24 ++++++ icons-optimized/crown-2-fill.json | 7 -- icons-optimized/crown-2-fill.svg | 12 --- icons-optimized/facebook.json | 7 -- icons-optimized/facebook.svg | 6 -- icons-optimized/flag-fill.json | 9 +++ icons-optimized/flag-fill.svg | 16 ++++ icons-optimized/folder-fill.json | 4 + icons-optimized/folder-fill.svg | 37 +++++++++ icons-optimized/grid-view-1.json | 7 -- icons-optimized/grid-view-1.svg | 19 ----- icons-optimized/grid-view-2.json | 7 -- icons-optimized/grid-view-2.svg | 20 ----- icons-optimized/home-mix.json | 4 + icons-optimized/home-mix.svg | 42 +++++++++++ icons-optimized/image-border.json | 9 +++ icons-optimized/image-border.svg | 11 +++ icons-optimized/key-duplicate.json | 7 -- icons-optimized/key-duplicate.svg | 10 --- icons-optimized/layout-sidebar-right-mix.json | 4 + icons-optimized/layout-sidebar-right-mix.svg | 32 ++++++++ icons-optimized/list-fill.json | 7 -- icons-optimized/list-fill.svg | 11 --- icons-optimized/loupe-fill.json | 7 -- icons-optimized/loupe-fill.svg | 10 --- icons-optimized/mouse-left-2.json | 4 + icons-optimized/mouse-left-2.svg | 31 ++++++++ icons-optimized/none-selected.json | 9 +++ icons-optimized/none-selected.svg | 25 +++++++ icons-optimized/palette-fill.json | 7 -- icons-optimized/palette-fill.svg | 6 -- icons-optimized/pause-fill.json | 7 -- icons-optimized/pause-fill.svg | 10 --- icons-optimized/play-fill.json | 7 -- icons-optimized/play-fill.svg | 6 -- icons-optimized/recull.json | 4 + .../_mix => icons-optimized}/recull.svg | 41 ++++++++-- icons-optimized/sparkle.json | 9 +++ icons-optimized/sparkle.svg | 11 +++ icons-optimized/star-fill-off.json | 4 + icons-optimized/star-fill-off.svg | 30 ++++++++ icons-optimized/star-fill.json | 9 +++ icons-optimized/star-fill.svg | 9 +++ icons-optimized/upload-c1-cat.json | 9 +++ icons-optimized/upload-c1-cat.svg | 38 ++++++++++ icons-optimized/upload-lr-cat.json | 9 +++ icons-optimized/upload-lr-cat.svg | 38 ++++++++++ .../{fill => _fill}/aftershoot-logo.svg | 0 icons-original/{fill => _fill}/apple.svg | 0 .../{fill => _fill}/arrow-curve-fill.svg | 0 .../{fill => _fill}/circle-fill.svg | 0 .../{fill => _fill}/crown-2-fill.svg | 0 icons-original/{fill => _fill}/di/fail-di.svg | 0 icons-original/{fill => _fill}/facebook.svg | 0 .../{fill => _fill}/grid-view-1.svg | 0 .../{fill => _fill}/grid-view-2.svg | 0 .../{fill => _fill}/key-duplicate.svg | 2 +- icons-original/{fill => _fill}/list-fill.svg | 0 icons-original/{fill => _fill}/loupe-fill.svg | 0 .../{fill => _fill}/palette-fill.svg | 0 icons-original/{fill => _fill}/pause-fill.svg | 0 icons-original/{fill => _fill}/play-fill.svg | 0 icons-original/{fill => _fill}/scissors.svg | 0 icons-original/_mix/image-border.svg | 4 - .../_mix/layout-sidebar-right-mix.svg | 9 --- icons-original/_mix/mouse-left-2.svg | 9 --- icons-original/_mix/none-selected.svg | 11 --- icons-original/_mix/star-fill.svg | 3 - icons-original/{_mix => mix}/Crown Play.svg | 0 icons-original/{_mix => mix}/collection.svg | 0 .../di => mix/dicolor}/alert-circle-fill.svg | 4 +- .../dicolor}/alert-triangle-fill.svg | 0 .../{fill/di => mix/dicolor}/atom-di.svg | 0 .../{_mix => mix/dicolor}/check_box_empty.svg | 0 .../{_mix => mix/dicolor}/no-duplicate.svg | 0 .../{fill/di => mix/dicolor}/play-di.svg | 0 .../{_mix => mix/dicolor}/star - 0.svg | 0 .../{_mix => mix/dicolor}/star - 1.svg | 0 .../{_mix => mix/dicolor}/star - 2.svg | 0 .../{_mix => mix/dicolor}/star - 3.svg | 0 .../{_mix => mix/dicolor}/star - 4.svg | 0 .../{_mix => mix/dicolor}/star - 5.svg | 0 .../{fill/di => mix/dicolor}/success-di.svg | 0 icons-original/{_mix => mix}/flag-fill.svg | 0 icons-original/{_mix => mix}/folder-fill.svg | 0 icons-original/mix/image-border.svg | 4 + icons-original/mix/none-selected.svg | 11 +++ icons-original/{_mix => mix}/sparkle.svg | 0 icons-original/mix/star-fill.svg | 3 + .../{_mix => mix}/upload-c1-cat.svg | 8 +- .../{_mix => mix}/upload-lr-cat.svg | 8 +- icons-original/no-change/folder-fill.svg | 16 ++++ .../{_mix => no-change}/home-mix.svg | 10 +-- .../no-change/layout-sidebar-right-mix.svg | 9 +++ icons-original/no-change/mouse-left-2.svg | 9 +++ icons-original/no-change/recull.svg | 9 +++ .../star-fill-off.svg} | 6 +- package.json | 1 + scripts/buildIcons.mjs | 1 - scripts/exportStoryTemplate.mjs | 41 ++++++---- scripts/processSvg.mjs | 37 +++++++-- scripts/writeSvgObjsxxx.mjs | 51 ------------- src/icons-test/Crown Play.tsx | 29 +++++++ src/icons-test/aftershoot-logo.tsx | 21 ------ src/icons-test/apple.tsx | 20 ----- src/icons-test/arrow-curve-fill.tsx | 21 ------ src/icons-test/circle-fill.tsx | 21 ------ src/icons-test/collection.tsx | 38 ++++++++++ src/icons-test/crown-2-fill.tsx | 28 ------- src/icons-test/facebook.tsx | 21 ------ src/icons-test/flag-fill.tsx | 30 ++++++++ src/icons-test/folder-fill.tsx | 47 ++++++++++++ src/icons-test/grid-view-1.tsx | 37 --------- src/icons-test/grid-view-2.tsx | 38 ---------- src/icons-test/home-mix.tsx | 58 ++++++++++++++ src/icons-test/image-border.tsx | 27 +++++++ src/icons-test/index.ts | 29 +++---- src/icons-test/key-duplicate.tsx | 26 ------- src/icons-test/layout-sidebar-right-mix.tsx | 43 +++++++++++ src/icons-test/list-fill.tsx | 27 ------- src/icons-test/loupe-fill.tsx | 26 ------- src/icons-test/mouse-left-2.tsx | 42 +++++++++++ src/icons-test/none-selected.tsx | 39 ++++++++++ src/icons-test/palette-fill.tsx | 21 ------ src/icons-test/pause-fill.tsx | 26 ------- src/icons-test/play-fill.tsx | 21 ------ src/icons-test/recull.tsx | 46 ++++++++++++ src/icons-test/sparkle.tsx | 27 +++++++ src/icons-test/star-fill-off.tsx | 41 ++++++++++ src/icons-test/star-fill.tsx | 24 ++++++ src/icons-test/upload-c1-cat.tsx | 52 +++++++++++++ src/icons-test/upload-lr-cat.tsx | 52 +++++++++++++ src/stories/Collection.stories.tsx | 75 +++++++++++++++++++ src/stories/CrownPlay.stories.tsx | 75 +++++++++++++++++++ src/stories/FlagFill.stories.tsx | 75 +++++++++++++++++++ ...ill.stories.tsx => FolderFill.stories.tsx} | 13 ++-- src/stories/GridView1.stories.tsx | 70 ----------------- src/stories/GridView2.stories.tsx | 70 ----------------- ...cebook.stories.tsx => HomeMix.stories.tsx} | 13 ++-- src/stories/ImageBorder.stories.tsx | 75 +++++++++++++++++++ src/stories/KeyDuplicate.stories.tsx | 70 ----------------- ....tsx => LayoutSidebarRightMix.stories.tsx} | 13 ++-- src/stories/ListFill.stories.tsx | 70 ----------------- src/stories/LoupeFill.stories.tsx | 70 ----------------- ...ill.stories.tsx => MouseLeft2.stories.tsx} | 13 ++-- src/stories/NoneSelected.stories.tsx | 75 +++++++++++++++++++ src/stories/PaletteFill.stories.tsx | 70 ----------------- src/stories/PauseFill.stories.tsx | 70 ----------------- src/stories/PlayFill.stories.tsx | 70 ----------------- .../{Apple.stories.tsx => Recull.stories.tsx} | 13 ++-- src/stories/Scissors.stories.tsx | 5 +- ...veFill.stories.tsx => Sparkle.stories.tsx} | 19 +++-- src/stories/StarFill.stories.tsx | 75 +++++++++++++++++++ src/stories/StarFillOff.stories.tsx | 69 +++++++++++++++++ src/stories/UploadC1Cat.stories.tsx | 75 +++++++++++++++++++ src/stories/UploadLrCat.stories.tsx | 75 +++++++++++++++++++ src/styles/tailwind.css | 25 +++---- 168 files changed, 1964 insertions(+), 1355 deletions(-) create mode 100644 icons-optimized/Crown Play.json create mode 100644 icons-optimized/Crown Play.svg delete mode 100644 icons-optimized/aftershoot-logo.json delete mode 100644 icons-optimized/aftershoot-logo.svg delete mode 100644 icons-optimized/apple.json delete mode 100644 icons-optimized/apple.svg delete mode 100644 icons-optimized/arrow-curve-fill.json delete mode 100644 icons-optimized/arrow-curve-fill.svg delete mode 100644 icons-optimized/circle-fill.json delete mode 100644 icons-optimized/circle-fill.svg create mode 100644 icons-optimized/collection.json create mode 100644 icons-optimized/collection.svg delete mode 100644 icons-optimized/crown-2-fill.json delete mode 100644 icons-optimized/crown-2-fill.svg delete mode 100644 icons-optimized/facebook.json delete mode 100644 icons-optimized/facebook.svg create mode 100644 icons-optimized/flag-fill.json create mode 100644 icons-optimized/flag-fill.svg create mode 100644 icons-optimized/folder-fill.json create mode 100644 icons-optimized/folder-fill.svg delete mode 100644 icons-optimized/grid-view-1.json delete mode 100644 icons-optimized/grid-view-1.svg delete mode 100644 icons-optimized/grid-view-2.json delete mode 100644 icons-optimized/grid-view-2.svg create mode 100644 icons-optimized/home-mix.json create mode 100644 icons-optimized/home-mix.svg create mode 100644 icons-optimized/image-border.json create mode 100644 icons-optimized/image-border.svg delete mode 100644 icons-optimized/key-duplicate.json delete mode 100644 icons-optimized/key-duplicate.svg create mode 100644 icons-optimized/layout-sidebar-right-mix.json create mode 100644 icons-optimized/layout-sidebar-right-mix.svg delete mode 100644 icons-optimized/list-fill.json delete mode 100644 icons-optimized/list-fill.svg delete mode 100644 icons-optimized/loupe-fill.json delete mode 100644 icons-optimized/loupe-fill.svg create mode 100644 icons-optimized/mouse-left-2.json create mode 100644 icons-optimized/mouse-left-2.svg create mode 100644 icons-optimized/none-selected.json create mode 100644 icons-optimized/none-selected.svg delete mode 100644 icons-optimized/palette-fill.json delete mode 100644 icons-optimized/palette-fill.svg delete mode 100644 icons-optimized/pause-fill.json delete mode 100644 icons-optimized/pause-fill.svg delete mode 100644 icons-optimized/play-fill.json delete mode 100644 icons-optimized/play-fill.svg create mode 100644 icons-optimized/recull.json rename {icons-original/_mix => icons-optimized}/recull.svg (56%) create mode 100644 icons-optimized/sparkle.json create mode 100644 icons-optimized/sparkle.svg create mode 100644 icons-optimized/star-fill-off.json create mode 100644 icons-optimized/star-fill-off.svg create mode 100644 icons-optimized/star-fill.json create mode 100644 icons-optimized/star-fill.svg create mode 100644 icons-optimized/upload-c1-cat.json create mode 100644 icons-optimized/upload-c1-cat.svg create mode 100644 icons-optimized/upload-lr-cat.json create mode 100644 icons-optimized/upload-lr-cat.svg rename icons-original/{fill => _fill}/aftershoot-logo.svg (100%) rename icons-original/{fill => _fill}/apple.svg (100%) rename icons-original/{fill => _fill}/arrow-curve-fill.svg (100%) rename icons-original/{fill => _fill}/circle-fill.svg (100%) rename icons-original/{fill => _fill}/crown-2-fill.svg (100%) rename icons-original/{fill => _fill}/di/fail-di.svg (100%) rename icons-original/{fill => _fill}/facebook.svg (100%) rename icons-original/{fill => _fill}/grid-view-1.svg (100%) rename icons-original/{fill => _fill}/grid-view-2.svg (100%) rename icons-original/{fill => _fill}/key-duplicate.svg (84%) rename icons-original/{fill => _fill}/list-fill.svg (100%) rename icons-original/{fill => _fill}/loupe-fill.svg (100%) rename icons-original/{fill => _fill}/palette-fill.svg (100%) rename icons-original/{fill => _fill}/pause-fill.svg (100%) rename icons-original/{fill => _fill}/play-fill.svg (100%) rename icons-original/{fill => _fill}/scissors.svg (100%) delete mode 100644 icons-original/_mix/image-border.svg delete mode 100644 icons-original/_mix/layout-sidebar-right-mix.svg delete mode 100644 icons-original/_mix/mouse-left-2.svg delete mode 100644 icons-original/_mix/none-selected.svg delete mode 100644 icons-original/_mix/star-fill.svg rename icons-original/{_mix => mix}/Crown Play.svg (100%) rename icons-original/{_mix => mix}/collection.svg (100%) rename icons-original/{fill/di => mix/dicolor}/alert-circle-fill.svg (66%) rename icons-original/{fill/di => mix/dicolor}/alert-triangle-fill.svg (100%) rename icons-original/{fill/di => mix/dicolor}/atom-di.svg (100%) rename icons-original/{_mix => mix/dicolor}/check_box_empty.svg (100%) rename icons-original/{_mix => mix/dicolor}/no-duplicate.svg (100%) rename icons-original/{fill/di => mix/dicolor}/play-di.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 0.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 1.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 2.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 3.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 4.svg (100%) rename icons-original/{_mix => mix/dicolor}/star - 5.svg (100%) rename icons-original/{fill/di => mix/dicolor}/success-di.svg (100%) rename icons-original/{_mix => mix}/flag-fill.svg (100%) rename icons-original/{_mix => mix}/folder-fill.svg (100%) create mode 100644 icons-original/mix/image-border.svg create mode 100644 icons-original/mix/none-selected.svg rename icons-original/{_mix => mix}/sparkle.svg (100%) create mode 100644 icons-original/mix/star-fill.svg rename icons-original/{_mix => mix}/upload-c1-cat.svg (89%) rename icons-original/{_mix => mix}/upload-lr-cat.svg (82%) create mode 100644 icons-original/no-change/folder-fill.svg rename icons-original/{_mix => no-change}/home-mix.svg (91%) create mode 100644 icons-original/no-change/layout-sidebar-right-mix.svg create mode 100644 icons-original/no-change/mouse-left-2.svg create mode 100644 icons-original/no-change/recull.svg rename icons-original/{_mix/star-off-fill.svg => no-change/star-fill-off.svg} (60%) delete mode 100644 scripts/writeSvgObjsxxx.mjs create mode 100644 src/icons-test/Crown Play.tsx delete mode 100644 src/icons-test/aftershoot-logo.tsx delete mode 100644 src/icons-test/apple.tsx delete mode 100644 src/icons-test/arrow-curve-fill.tsx delete mode 100644 src/icons-test/circle-fill.tsx create mode 100644 src/icons-test/collection.tsx delete mode 100644 src/icons-test/crown-2-fill.tsx delete mode 100644 src/icons-test/facebook.tsx create mode 100644 src/icons-test/flag-fill.tsx create mode 100644 src/icons-test/folder-fill.tsx delete mode 100644 src/icons-test/grid-view-1.tsx delete mode 100644 src/icons-test/grid-view-2.tsx create mode 100644 src/icons-test/home-mix.tsx create mode 100644 src/icons-test/image-border.tsx delete mode 100644 src/icons-test/key-duplicate.tsx create mode 100644 src/icons-test/layout-sidebar-right-mix.tsx delete mode 100644 src/icons-test/list-fill.tsx delete mode 100644 src/icons-test/loupe-fill.tsx create mode 100644 src/icons-test/mouse-left-2.tsx create mode 100644 src/icons-test/none-selected.tsx delete mode 100644 src/icons-test/palette-fill.tsx delete mode 100644 src/icons-test/pause-fill.tsx delete mode 100644 src/icons-test/play-fill.tsx create mode 100644 src/icons-test/recull.tsx create mode 100644 src/icons-test/sparkle.tsx create mode 100644 src/icons-test/star-fill-off.tsx create mode 100644 src/icons-test/star-fill.tsx create mode 100644 src/icons-test/upload-c1-cat.tsx create mode 100644 src/icons-test/upload-lr-cat.tsx create mode 100644 src/stories/Collection.stories.tsx create mode 100644 src/stories/CrownPlay.stories.tsx create mode 100644 src/stories/FlagFill.stories.tsx rename src/stories/{CircleFill.stories.tsx => FolderFill.stories.tsx} (88%) delete mode 100644 src/stories/GridView1.stories.tsx delete mode 100644 src/stories/GridView2.stories.tsx rename src/stories/{Facebook.stories.tsx => HomeMix.stories.tsx} (88%) create mode 100644 src/stories/ImageBorder.stories.tsx delete mode 100644 src/stories/KeyDuplicate.stories.tsx rename src/stories/{AftershootLogo.stories.tsx => LayoutSidebarRightMix.stories.tsx} (85%) delete mode 100644 src/stories/ListFill.stories.tsx delete mode 100644 src/stories/LoupeFill.stories.tsx rename src/stories/{Crown2Fill.stories.tsx => MouseLeft2.stories.tsx} (88%) create mode 100644 src/stories/NoneSelected.stories.tsx delete mode 100644 src/stories/PaletteFill.stories.tsx delete mode 100644 src/stories/PauseFill.stories.tsx delete mode 100644 src/stories/PlayFill.stories.tsx rename src/stories/{Apple.stories.tsx => Recull.stories.tsx} (89%) rename src/stories/{ArrowCurveFill.stories.tsx => Sparkle.stories.tsx} (82%) create mode 100644 src/stories/StarFill.stories.tsx create mode 100644 src/stories/StarFillOff.stories.tsx create mode 100644 src/stories/UploadC1Cat.stories.tsx create mode 100644 src/stories/UploadLrCat.stories.tsx diff --git a/icons-optimized/Crown Play.json b/icons-optimized/Crown Play.json new file mode 100644 index 00000000..4b5de5b2 --- /dev/null +++ b/icons-optimized/Crown Play.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "Crown Play", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/Crown Play.svg b/icons-optimized/Crown Play.svg new file mode 100644 index 00000000..9da4813f --- /dev/null +++ b/icons-optimized/Crown Play.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/aftershoot-logo.json b/icons-optimized/aftershoot-logo.json deleted file mode 100644 index 68b44467..00000000 --- a/icons-optimized/aftershoot-logo.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "aftershoot-logo", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/aftershoot-logo.svg b/icons-optimized/aftershoot-logo.svg deleted file mode 100644 index 5d8f1cab..00000000 --- a/icons-optimized/aftershoot-logo.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/apple.json b/icons-optimized/apple.json deleted file mode 100644 index 5e114c61..00000000 --- a/icons-optimized/apple.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "apple", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/apple.svg b/icons-optimized/apple.svg deleted file mode 100644 index 682cce85..00000000 --- a/icons-optimized/apple.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/arrow-curve-fill.json b/icons-optimized/arrow-curve-fill.json deleted file mode 100644 index a1f17314..00000000 --- a/icons-optimized/arrow-curve-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "arrow-curve-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/arrow-curve-fill.svg b/icons-optimized/arrow-curve-fill.svg deleted file mode 100644 index c277b8f9..00000000 --- a/icons-optimized/arrow-curve-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/circle-fill.json b/icons-optimized/circle-fill.json deleted file mode 100644 index 30109372..00000000 --- a/icons-optimized/circle-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "circle-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/circle-fill.svg b/icons-optimized/circle-fill.svg deleted file mode 100644 index c1ad7a36..00000000 --- a/icons-optimized/circle-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/collection.json b/icons-optimized/collection.json new file mode 100644 index 00000000..e0771f88 --- /dev/null +++ b/icons-optimized/collection.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "collection", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/collection.svg b/icons-optimized/collection.svg new file mode 100644 index 00000000..0a9c6a46 --- /dev/null +++ b/icons-optimized/collection.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/icons-optimized/crown-2-fill.json b/icons-optimized/crown-2-fill.json deleted file mode 100644 index 6aec2724..00000000 --- a/icons-optimized/crown-2-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "crown-2-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/crown-2-fill.svg b/icons-optimized/crown-2-fill.svg deleted file mode 100644 index d2e5a0e0..00000000 --- a/icons-optimized/crown-2-fill.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - diff --git a/icons-optimized/facebook.json b/icons-optimized/facebook.json deleted file mode 100644 index 34bea1d6..00000000 --- a/icons-optimized/facebook.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "facebook", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/facebook.svg b/icons-optimized/facebook.svg deleted file mode 100644 index c0b2c111..00000000 --- a/icons-optimized/facebook.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/flag-fill.json b/icons-optimized/flag-fill.json new file mode 100644 index 00000000..dcc79f8a --- /dev/null +++ b/icons-optimized/flag-fill.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "flag-fill", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/flag-fill.svg b/icons-optimized/flag-fill.svg new file mode 100644 index 00000000..4c7da1f9 --- /dev/null +++ b/icons-optimized/flag-fill.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder-fill.json b/icons-optimized/folder-fill.json new file mode 100644 index 00000000..7ee05eee --- /dev/null +++ b/icons-optimized/folder-fill.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "folder-fill" +} \ No newline at end of file diff --git a/icons-optimized/folder-fill.svg b/icons-optimized/folder-fill.svg new file mode 100644 index 00000000..c4aab553 --- /dev/null +++ b/icons-optimized/folder-fill.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/grid-view-1.json b/icons-optimized/grid-view-1.json deleted file mode 100644 index 7b7c1e5c..00000000 --- a/icons-optimized/grid-view-1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "grid-view-1", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/grid-view-1.svg b/icons-optimized/grid-view-1.svg deleted file mode 100644 index 048c3ad4..00000000 --- a/icons-optimized/grid-view-1.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - diff --git a/icons-optimized/grid-view-2.json b/icons-optimized/grid-view-2.json deleted file mode 100644 index ca919d7e..00000000 --- a/icons-optimized/grid-view-2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "grid-view-2", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/grid-view-2.svg b/icons-optimized/grid-view-2.svg deleted file mode 100644 index bb0ca544..00000000 --- a/icons-optimized/grid-view-2.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - diff --git a/icons-optimized/home-mix.json b/icons-optimized/home-mix.json new file mode 100644 index 00000000..3732de18 --- /dev/null +++ b/icons-optimized/home-mix.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "home-mix" +} \ No newline at end of file diff --git a/icons-optimized/home-mix.svg b/icons-optimized/home-mix.svg new file mode 100644 index 00000000..1de9fffc --- /dev/null +++ b/icons-optimized/home-mix.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/image-border.json b/icons-optimized/image-border.json new file mode 100644 index 00000000..13f0d57b --- /dev/null +++ b/icons-optimized/image-border.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "image-border", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/image-border.svg b/icons-optimized/image-border.svg new file mode 100644 index 00000000..ec6f86ce --- /dev/null +++ b/icons-optimized/image-border.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/key-duplicate.json b/icons-optimized/key-duplicate.json deleted file mode 100644 index 504d480b..00000000 --- a/icons-optimized/key-duplicate.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "key-duplicate", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/key-duplicate.svg b/icons-optimized/key-duplicate.svg deleted file mode 100644 index 7ab7ee7d..00000000 --- a/icons-optimized/key-duplicate.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons-optimized/layout-sidebar-right-mix.json b/icons-optimized/layout-sidebar-right-mix.json new file mode 100644 index 00000000..adb6ee9e --- /dev/null +++ b/icons-optimized/layout-sidebar-right-mix.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "layout-sidebar-right-mix" +} \ No newline at end of file diff --git a/icons-optimized/layout-sidebar-right-mix.svg b/icons-optimized/layout-sidebar-right-mix.svg new file mode 100644 index 00000000..16931fb3 --- /dev/null +++ b/icons-optimized/layout-sidebar-right-mix.svg @@ -0,0 +1,32 @@ + + + + + + + + + diff --git a/icons-optimized/list-fill.json b/icons-optimized/list-fill.json deleted file mode 100644 index b0b779a7..00000000 --- a/icons-optimized/list-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "list-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/list-fill.svg b/icons-optimized/list-fill.svg deleted file mode 100644 index b85aef0a..00000000 --- a/icons-optimized/list-fill.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/icons-optimized/loupe-fill.json b/icons-optimized/loupe-fill.json deleted file mode 100644 index ee4cc769..00000000 --- a/icons-optimized/loupe-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "loupe-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/loupe-fill.svg b/icons-optimized/loupe-fill.svg deleted file mode 100644 index 326af617..00000000 --- a/icons-optimized/loupe-fill.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons-optimized/mouse-left-2.json b/icons-optimized/mouse-left-2.json new file mode 100644 index 00000000..7a3ed2e9 --- /dev/null +++ b/icons-optimized/mouse-left-2.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "mouse-left-2" +} \ No newline at end of file diff --git a/icons-optimized/mouse-left-2.svg b/icons-optimized/mouse-left-2.svg new file mode 100644 index 00000000..ea50ef1d --- /dev/null +++ b/icons-optimized/mouse-left-2.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/icons-optimized/none-selected.json b/icons-optimized/none-selected.json new file mode 100644 index 00000000..13495d35 --- /dev/null +++ b/icons-optimized/none-selected.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "none-selected", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/none-selected.svg b/icons-optimized/none-selected.svg new file mode 100644 index 00000000..b4743f11 --- /dev/null +++ b/icons-optimized/none-selected.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + diff --git a/icons-optimized/palette-fill.json b/icons-optimized/palette-fill.json deleted file mode 100644 index d065c897..00000000 --- a/icons-optimized/palette-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "palette-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/palette-fill.svg b/icons-optimized/palette-fill.svg deleted file mode 100644 index 50d1a44c..00000000 --- a/icons-optimized/palette-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/pause-fill.json b/icons-optimized/pause-fill.json deleted file mode 100644 index 88c48558..00000000 --- a/icons-optimized/pause-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "pause-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/pause-fill.svg b/icons-optimized/pause-fill.svg deleted file mode 100644 index e9b1c7b8..00000000 --- a/icons-optimized/pause-fill.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons-optimized/play-fill.json b/icons-optimized/play-fill.json deleted file mode 100644 index ba8969ca..00000000 --- a/icons-optimized/play-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "play-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/play-fill.svg b/icons-optimized/play-fill.svg deleted file mode 100644 index 555d2cee..00000000 --- a/icons-optimized/play-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/icons-optimized/recull.json b/icons-optimized/recull.json new file mode 100644 index 00000000..298e0d5e --- /dev/null +++ b/icons-optimized/recull.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "recull" +} \ No newline at end of file diff --git a/icons-original/_mix/recull.svg b/icons-optimized/recull.svg similarity index 56% rename from icons-original/_mix/recull.svg rename to icons-optimized/recull.svg index a2df2175..788da6ef 100644 --- a/icons-original/_mix/recull.svg +++ b/icons-optimized/recull.svg @@ -1,9 +1,34 @@ - - - - - - - - + + + + + + + + diff --git a/icons-optimized/sparkle.json b/icons-optimized/sparkle.json new file mode 100644 index 00000000..7a37bec3 --- /dev/null +++ b/icons-optimized/sparkle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "sparkle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/sparkle.svg b/icons-optimized/sparkle.svg new file mode 100644 index 00000000..0db30c49 --- /dev/null +++ b/icons-optimized/sparkle.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/star-fill-off.json b/icons-optimized/star-fill-off.json new file mode 100644 index 00000000..022d8fbc --- /dev/null +++ b/icons-optimized/star-fill-off.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "star-fill-off" +} \ No newline at end of file diff --git a/icons-optimized/star-fill-off.svg b/icons-optimized/star-fill-off.svg new file mode 100644 index 00000000..ab87402b --- /dev/null +++ b/icons-optimized/star-fill-off.svg @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/icons-optimized/star-fill.json b/icons-optimized/star-fill.json new file mode 100644 index 00000000..70663e8a --- /dev/null +++ b/icons-optimized/star-fill.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "star-fill", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/star-fill.svg b/icons-optimized/star-fill.svg new file mode 100644 index 00000000..ee001f02 --- /dev/null +++ b/icons-optimized/star-fill.svg @@ -0,0 +1,9 @@ + + + diff --git a/icons-optimized/upload-c1-cat.json b/icons-optimized/upload-c1-cat.json new file mode 100644 index 00000000..76f1255b --- /dev/null +++ b/icons-optimized/upload-c1-cat.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-c1-cat", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/upload-c1-cat.svg b/icons-optimized/upload-c1-cat.svg new file mode 100644 index 00000000..544c7bea --- /dev/null +++ b/icons-optimized/upload-c1-cat.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/upload-lr-cat.json b/icons-optimized/upload-lr-cat.json new file mode 100644 index 00000000..cd184bc6 --- /dev/null +++ b/icons-optimized/upload-lr-cat.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-lr-cat", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/upload-lr-cat.svg b/icons-optimized/upload-lr-cat.svg new file mode 100644 index 00000000..a1c7a4fa --- /dev/null +++ b/icons-optimized/upload-lr-cat.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-original/fill/aftershoot-logo.svg b/icons-original/_fill/aftershoot-logo.svg similarity index 100% rename from icons-original/fill/aftershoot-logo.svg rename to icons-original/_fill/aftershoot-logo.svg diff --git a/icons-original/fill/apple.svg b/icons-original/_fill/apple.svg similarity index 100% rename from icons-original/fill/apple.svg rename to icons-original/_fill/apple.svg diff --git a/icons-original/fill/arrow-curve-fill.svg b/icons-original/_fill/arrow-curve-fill.svg similarity index 100% rename from icons-original/fill/arrow-curve-fill.svg rename to icons-original/_fill/arrow-curve-fill.svg diff --git a/icons-original/fill/circle-fill.svg b/icons-original/_fill/circle-fill.svg similarity index 100% rename from icons-original/fill/circle-fill.svg rename to icons-original/_fill/circle-fill.svg diff --git a/icons-original/fill/crown-2-fill.svg b/icons-original/_fill/crown-2-fill.svg similarity index 100% rename from icons-original/fill/crown-2-fill.svg rename to icons-original/_fill/crown-2-fill.svg diff --git a/icons-original/fill/di/fail-di.svg b/icons-original/_fill/di/fail-di.svg similarity index 100% rename from icons-original/fill/di/fail-di.svg rename to icons-original/_fill/di/fail-di.svg diff --git a/icons-original/fill/facebook.svg b/icons-original/_fill/facebook.svg similarity index 100% rename from icons-original/fill/facebook.svg rename to icons-original/_fill/facebook.svg diff --git a/icons-original/fill/grid-view-1.svg b/icons-original/_fill/grid-view-1.svg similarity index 100% rename from icons-original/fill/grid-view-1.svg rename to icons-original/_fill/grid-view-1.svg diff --git a/icons-original/fill/grid-view-2.svg b/icons-original/_fill/grid-view-2.svg similarity index 100% rename from icons-original/fill/grid-view-2.svg rename to icons-original/_fill/grid-view-2.svg diff --git a/icons-original/fill/key-duplicate.svg b/icons-original/_fill/key-duplicate.svg similarity index 84% rename from icons-original/fill/key-duplicate.svg rename to icons-original/_fill/key-duplicate.svg index 2d5e73a7..c035c80e 100644 --- a/icons-original/fill/key-duplicate.svg +++ b/icons-original/_fill/key-duplicate.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/fill/list-fill.svg b/icons-original/_fill/list-fill.svg similarity index 100% rename from icons-original/fill/list-fill.svg rename to icons-original/_fill/list-fill.svg diff --git a/icons-original/fill/loupe-fill.svg b/icons-original/_fill/loupe-fill.svg similarity index 100% rename from icons-original/fill/loupe-fill.svg rename to icons-original/_fill/loupe-fill.svg diff --git a/icons-original/fill/palette-fill.svg b/icons-original/_fill/palette-fill.svg similarity index 100% rename from icons-original/fill/palette-fill.svg rename to icons-original/_fill/palette-fill.svg diff --git a/icons-original/fill/pause-fill.svg b/icons-original/_fill/pause-fill.svg similarity index 100% rename from icons-original/fill/pause-fill.svg rename to icons-original/_fill/pause-fill.svg diff --git a/icons-original/fill/play-fill.svg b/icons-original/_fill/play-fill.svg similarity index 100% rename from icons-original/fill/play-fill.svg rename to icons-original/_fill/play-fill.svg diff --git a/icons-original/fill/scissors.svg b/icons-original/_fill/scissors.svg similarity index 100% rename from icons-original/fill/scissors.svg rename to icons-original/_fill/scissors.svg diff --git a/icons-original/_mix/image-border.svg b/icons-original/_mix/image-border.svg deleted file mode 100644 index 15711c35..00000000 --- a/icons-original/_mix/image-border.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons-original/_mix/layout-sidebar-right-mix.svg b/icons-original/_mix/layout-sidebar-right-mix.svg deleted file mode 100644 index ea3bf838..00000000 --- a/icons-original/_mix/layout-sidebar-right-mix.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons-original/_mix/mouse-left-2.svg b/icons-original/_mix/mouse-left-2.svg deleted file mode 100644 index 9600cd1c..00000000 --- a/icons-original/_mix/mouse-left-2.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons-original/_mix/none-selected.svg b/icons-original/_mix/none-selected.svg deleted file mode 100644 index c105521f..00000000 --- a/icons-original/_mix/none-selected.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons-original/_mix/star-fill.svg b/icons-original/_mix/star-fill.svg deleted file mode 100644 index 29496555..00000000 --- a/icons-original/_mix/star-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/icons-original/_mix/Crown Play.svg b/icons-original/mix/Crown Play.svg similarity index 100% rename from icons-original/_mix/Crown Play.svg rename to icons-original/mix/Crown Play.svg diff --git a/icons-original/_mix/collection.svg b/icons-original/mix/collection.svg similarity index 100% rename from icons-original/_mix/collection.svg rename to icons-original/mix/collection.svg diff --git a/icons-original/fill/di/alert-circle-fill.svg b/icons-original/mix/dicolor/alert-circle-fill.svg similarity index 66% rename from icons-original/fill/di/alert-circle-fill.svg rename to icons-original/mix/dicolor/alert-circle-fill.svg index c6a0e24c..2669a3e3 100644 --- a/icons-original/fill/di/alert-circle-fill.svg +++ b/icons-original/mix/dicolor/alert-circle-fill.svg @@ -1,8 +1,8 @@ - - + + diff --git a/icons-original/fill/di/alert-triangle-fill.svg b/icons-original/mix/dicolor/alert-triangle-fill.svg similarity index 100% rename from icons-original/fill/di/alert-triangle-fill.svg rename to icons-original/mix/dicolor/alert-triangle-fill.svg diff --git a/icons-original/fill/di/atom-di.svg b/icons-original/mix/dicolor/atom-di.svg similarity index 100% rename from icons-original/fill/di/atom-di.svg rename to icons-original/mix/dicolor/atom-di.svg diff --git a/icons-original/_mix/check_box_empty.svg b/icons-original/mix/dicolor/check_box_empty.svg similarity index 100% rename from icons-original/_mix/check_box_empty.svg rename to icons-original/mix/dicolor/check_box_empty.svg diff --git a/icons-original/_mix/no-duplicate.svg b/icons-original/mix/dicolor/no-duplicate.svg similarity index 100% rename from icons-original/_mix/no-duplicate.svg rename to icons-original/mix/dicolor/no-duplicate.svg diff --git a/icons-original/fill/di/play-di.svg b/icons-original/mix/dicolor/play-di.svg similarity index 100% rename from icons-original/fill/di/play-di.svg rename to icons-original/mix/dicolor/play-di.svg diff --git a/icons-original/_mix/star - 0.svg b/icons-original/mix/dicolor/star - 0.svg similarity index 100% rename from icons-original/_mix/star - 0.svg rename to icons-original/mix/dicolor/star - 0.svg diff --git a/icons-original/_mix/star - 1.svg b/icons-original/mix/dicolor/star - 1.svg similarity index 100% rename from icons-original/_mix/star - 1.svg rename to icons-original/mix/dicolor/star - 1.svg diff --git a/icons-original/_mix/star - 2.svg b/icons-original/mix/dicolor/star - 2.svg similarity index 100% rename from icons-original/_mix/star - 2.svg rename to icons-original/mix/dicolor/star - 2.svg diff --git a/icons-original/_mix/star - 3.svg b/icons-original/mix/dicolor/star - 3.svg similarity index 100% rename from icons-original/_mix/star - 3.svg rename to icons-original/mix/dicolor/star - 3.svg diff --git a/icons-original/_mix/star - 4.svg b/icons-original/mix/dicolor/star - 4.svg similarity index 100% rename from icons-original/_mix/star - 4.svg rename to icons-original/mix/dicolor/star - 4.svg diff --git a/icons-original/_mix/star - 5.svg b/icons-original/mix/dicolor/star - 5.svg similarity index 100% rename from icons-original/_mix/star - 5.svg rename to icons-original/mix/dicolor/star - 5.svg diff --git a/icons-original/fill/di/success-di.svg b/icons-original/mix/dicolor/success-di.svg similarity index 100% rename from icons-original/fill/di/success-di.svg rename to icons-original/mix/dicolor/success-di.svg diff --git a/icons-original/_mix/flag-fill.svg b/icons-original/mix/flag-fill.svg similarity index 100% rename from icons-original/_mix/flag-fill.svg rename to icons-original/mix/flag-fill.svg diff --git a/icons-original/_mix/folder-fill.svg b/icons-original/mix/folder-fill.svg similarity index 100% rename from icons-original/_mix/folder-fill.svg rename to icons-original/mix/folder-fill.svg diff --git a/icons-original/mix/image-border.svg b/icons-original/mix/image-border.svg new file mode 100644 index 00000000..b05d5d4a --- /dev/null +++ b/icons-original/mix/image-border.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/none-selected.svg b/icons-original/mix/none-selected.svg new file mode 100644 index 00000000..527b091a --- /dev/null +++ b/icons-original/mix/none-selected.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/_mix/sparkle.svg b/icons-original/mix/sparkle.svg similarity index 100% rename from icons-original/_mix/sparkle.svg rename to icons-original/mix/sparkle.svg diff --git a/icons-original/mix/star-fill.svg b/icons-original/mix/star-fill.svg new file mode 100644 index 00000000..39205e36 --- /dev/null +++ b/icons-original/mix/star-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/_mix/upload-c1-cat.svg b/icons-original/mix/upload-c1-cat.svg similarity index 89% rename from icons-original/_mix/upload-c1-cat.svg rename to icons-original/mix/upload-c1-cat.svg index 391bd22f..c1c9176d 100644 --- a/icons-original/_mix/upload-c1-cat.svg +++ b/icons-original/mix/upload-c1-cat.svg @@ -1,10 +1,10 @@ - + - - - + + + diff --git a/icons-original/_mix/upload-lr-cat.svg b/icons-original/mix/upload-lr-cat.svg similarity index 82% rename from icons-original/_mix/upload-lr-cat.svg rename to icons-original/mix/upload-lr-cat.svg index 8fe98e6d..0a6c5774 100644 --- a/icons-original/_mix/upload-lr-cat.svg +++ b/icons-original/mix/upload-lr-cat.svg @@ -1,10 +1,10 @@ - + - - - + + + diff --git a/icons-original/no-change/folder-fill.svg b/icons-original/no-change/folder-fill.svg new file mode 100644 index 00000000..f71f05ec --- /dev/null +++ b/icons-original/no-change/folder-fill.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-original/_mix/home-mix.svg b/icons-original/no-change/home-mix.svg similarity index 91% rename from icons-original/_mix/home-mix.svg rename to icons-original/no-change/home-mix.svg index ca927aca..85074bc2 100644 --- a/icons-original/_mix/home-mix.svg +++ b/icons-original/no-change/home-mix.svg @@ -1,14 +1,14 @@ - - + + - - + + - + diff --git a/icons-original/no-change/layout-sidebar-right-mix.svg b/icons-original/no-change/layout-sidebar-right-mix.svg new file mode 100644 index 00000000..fe07984f --- /dev/null +++ b/icons-original/no-change/layout-sidebar-right-mix.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/no-change/mouse-left-2.svg b/icons-original/no-change/mouse-left-2.svg new file mode 100644 index 00000000..2a594c7c --- /dev/null +++ b/icons-original/no-change/mouse-left-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/no-change/recull.svg b/icons-original/no-change/recull.svg new file mode 100644 index 00000000..baec406e --- /dev/null +++ b/icons-original/no-change/recull.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons-original/_mix/star-off-fill.svg b/icons-original/no-change/star-fill-off.svg similarity index 60% rename from icons-original/_mix/star-off-fill.svg rename to icons-original/no-change/star-fill-off.svg index 5dd1a153..426b4183 100644 --- a/icons-original/_mix/star-off-fill.svg +++ b/icons-original/no-change/star-fill-off.svg @@ -1,9 +1,9 @@ - + - - + + diff --git a/package.json b/package.json index 5ef7e8be..c1c77be5 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons remove:dir", + "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons-test && node ./scripts/removeDir.mjs --targetDir ./icons-optimized", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index edead97e..5ff22797 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -54,7 +54,6 @@ async function buildIcons() { outputDirectory: path.join(OUTPUT_DIR, STORIES_OUTPUT_FOLDER_NAME), iconNodes: svgObjs, iconOutputFolderName: OUTPUT_FOLDER_NAME, - storyGroupName: 'omega', metadata: svgMetadata, }) } diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index c969a525..422f1753 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -1,32 +1,46 @@ import { toPascalCase } from './helpers.mjs' -export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = 'testing', iconType }) => { +export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing', iconType }) => { const iconNamePascalCase = toPascalCase(iconName) - const forFill = isFillIcon - ? ` export const FillColor: Story = { - args: { - fillColor: "red", - }, - }` - : '' - const forColorTemplate = iconType === 'outline' ? ` - export const Red: Story = { + export const Color: Story = { args: { color: 'red', }, }` : ` - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } ` + const forMixTemplate = + iconType === 'mix' + ? ` + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + ` + : '' + + const forFillTemplate = + iconType === 'fill' + ? ` + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + ` + : '' + return `import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' @@ -35,7 +49,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' const meta: Meta = { component: ${iconNamePascalCase}, - title: '${storyGroupName}/${iconNamePascalCase}', + title: '${iconType}/${iconNamePascalCase}', decorators: [ (Story) => (
@@ -63,6 +77,7 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' export const Default: Story = {} ${forColorTemplate} + ${forMixTemplate} export const inActive: Story = { args: { @@ -82,8 +97,6 @@ export default ({ iconName, iconOutputFolderName, isFillIcon, storyGroupName = ' }, } - ${forFill} - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index ff66c91d..eaa7bc95 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -9,11 +9,11 @@ import { parseSync, stringify } from 'svgson' * @returns {Promise} An optimized svg */ async function optimizeSvg(svg, path, iconType) { - // const removeAttrsMapping = { - // outline: '(stroke|stroke-width)', - // fill: '(stroke-width)', - // mix: '(stroke-width)', - // } + const removeAttrsMapping = { + outline: '(stroke|stroke-width)', + fill: '(stroke-width)', + mix: '(stroke-width)', + } const plugins = [ { @@ -29,7 +29,7 @@ async function optimizeSvg(svg, path, iconType) { { name: 'removeAttrs', params: { - attrs: '(stroke|stroke-width|style)', + attrs: removeAttrsMapping[iconType], }, }, { @@ -57,10 +57,35 @@ async function optimizeSvg(svg, path, iconType) { }, } + const customPlugInUpdateStrokeValue = { + name: 'updateStrokeValue', + type: 'visitor', + fn: (ast) => { + const visit = (node) => { + if (node.attributes && node.attributes.stroke) { + if (!node.attributes?.noChange) { + node.attributes.stroke = 'currentColor' + } + } + if (node.children) { + for (const child of node.children) { + visit(child) + } + } + } + visit(ast) + }, + } + if (iconType === 'fill') { plugins.push(customPlugInUpdateFillValue) } + if (iconType === 'mix') { + plugins.push(customPlugInUpdateFillValue) + plugins.push(customPlugInUpdateStrokeValue) + } + if (iconType === 'no-change') { return svg } diff --git a/scripts/writeSvgObjsxxx.mjs b/scripts/writeSvgObjsxxx.mjs deleted file mode 100644 index 53063b74..00000000 --- a/scripts/writeSvgObjsxxx.mjs +++ /dev/null @@ -1,51 +0,0 @@ -import fs from 'fs' -import path from 'path' -import { readSvgDirectory } from './helpers.mjs' -import renderIconsObject from './renderIconsObject.mjs' - -const currentDir = process.cwd() -const ICONS_DIR = path.resolve(currentDir, './icons') -const svgFiles = readSvgDirectory(ICONS_DIR) -const icons = renderIconsObject(svgFiles, ICONS_DIR, true) - -const iconObjDirectory = path.resolve(currentDir, 'icons-objs') - -if (fs.existsSync(iconObjDirectory)) { - fs.rmSync(iconObjDirectory, { recursive: true, force: true }) -} - -if (!fs.existsSync(iconObjDirectory)) { - fs.mkdirSync(iconObjDirectory, { recursive: true }) -} - -const writeObjFiles = Object.entries(icons).map(async ([iconName, { attributes, children }]) => { - const location = path.resolve(iconObjDirectory, `${iconName}.obj.json`) - const svgLocation = path.resolve(iconObjDirectory, `${iconName}.new.json`) - - const svgObj = { - objName: iconName, - originalAttributes: attributes, - originalSvgChildren: children, - } - - const childrenSvg = { - name: 'g', - type: 'element', - value: '', - parent: null, - children: children, - } - - const output = JSON.stringify(svgObj, null, 2) - const childrenContent = JSON.stringify(childrenSvg, null, 2) - - await fs.promises.writeFile(location, output, 'utf-8') - await fs.promises.writeFile(svgLocation, childrenContent, 'utf-8') -}) - -try { - await Promise.all(writeObjFiles) - console.log('Successfully write', icons.length, 'svg objs.') -} catch (error) { - throw new Error(`Something went wrong generating iconNode files,\n ${error}`) -} diff --git a/src/icons-test/Crown Play.tsx b/src/icons-test/Crown Play.tsx new file mode 100644 index 00000000..7fcb0810 --- /dev/null +++ b/src/icons-test/Crown Play.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CrownPlay = createASIcon( + "CrownPlay", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default CrownPlay; diff --git a/src/icons-test/aftershoot-logo.tsx b/src/icons-test/aftershoot-logo.tsx deleted file mode 100644 index 668afe71..00000000 --- a/src/icons-test/aftershoot-logo.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AftershootLogo = createASIcon( - "AftershootLogo", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , - "fill", -); - -export default AftershootLogo; diff --git a/src/icons-test/apple.tsx b/src/icons-test/apple.tsx deleted file mode 100644 index 203c7ce9..00000000 --- a/src/icons-test/apple.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Apple = createASIcon( - "Apple", - { - xmlns: "http://www.w3.org/2000/svg", - viewBox: "0 0 17 20", - }, - - - , - "fill", -); - -export default Apple; diff --git a/src/icons-test/arrow-curve-fill.tsx b/src/icons-test/arrow-curve-fill.tsx deleted file mode 100644 index dfbad672..00000000 --- a/src/icons-test/arrow-curve-fill.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowCurveFill = createASIcon( - "ArrowCurveFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 16 11", - }, - - - , - "fill", -); - -export default ArrowCurveFill; diff --git a/src/icons-test/circle-fill.tsx b/src/icons-test/circle-fill.tsx deleted file mode 100644 index 99c34350..00000000 --- a/src/icons-test/circle-fill.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CircleFill = createASIcon( - "CircleFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , - "fill", -); - -export default CircleFill; diff --git a/src/icons-test/collection.tsx b/src/icons-test/collection.tsx new file mode 100644 index 00000000..ebd6d755 --- /dev/null +++ b/src/icons-test/collection.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Collection = createASIcon( + "Collection", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 25 24", + }, + + + + + + + + + + + , + "mix", +); + +export default Collection; diff --git a/src/icons-test/crown-2-fill.tsx b/src/icons-test/crown-2-fill.tsx deleted file mode 100644 index ccee50d6..00000000 --- a/src/icons-test/crown-2-fill.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Crown2Fill = createASIcon( - "Crown2Fill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "fill", -); - -export default Crown2Fill; diff --git a/src/icons-test/facebook.tsx b/src/icons-test/facebook.tsx deleted file mode 100644 index e372218a..00000000 --- a/src/icons-test/facebook.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Facebook = createASIcon( - "Facebook", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , - "fill", -); - -export default Facebook; diff --git a/src/icons-test/flag-fill.tsx b/src/icons-test/flag-fill.tsx new file mode 100644 index 00000000..d454a466 --- /dev/null +++ b/src/icons-test/flag-fill.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FlagFill = createASIcon( + "FlagFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 20 20", + }, + + + + + + + + + + + , + "mix", +); + +export default FlagFill; diff --git a/src/icons-test/folder-fill.tsx b/src/icons-test/folder-fill.tsx new file mode 100644 index 00000000..e9cf822e --- /dev/null +++ b/src/icons-test/folder-fill.tsx @@ -0,0 +1,47 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderFill = createASIcon( + "FolderFill", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + + + + + , + "no-change", +); + +export default FolderFill; diff --git a/src/icons-test/grid-view-1.tsx b/src/icons-test/grid-view-1.tsx deleted file mode 100644 index bc46c0c5..00000000 --- a/src/icons-test/grid-view-1.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const GridView1 = createASIcon( - "GridView1", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - , - "fill", -); - -export default GridView1; diff --git a/src/icons-test/grid-view-2.tsx b/src/icons-test/grid-view-2.tsx deleted file mode 100644 index a21c5aa8..00000000 --- a/src/icons-test/grid-view-2.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const GridView2 = createASIcon( - "GridView2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - , - "fill", -); - -export default GridView2; diff --git a/src/icons-test/home-mix.tsx b/src/icons-test/home-mix.tsx new file mode 100644 index 00000000..35221a70 --- /dev/null +++ b/src/icons-test/home-mix.tsx @@ -0,0 +1,58 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const HomeMix = createASIcon( + "HomeMix", + { + width: "21", + height: "20", + viewBox: "0 0 21 20", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + + + , + "no-change", +); + +export default HomeMix; diff --git a/src/icons-test/image-border.tsx b/src/icons-test/image-border.tsx new file mode 100644 index 00000000..3d26e1e8 --- /dev/null +++ b/src/icons-test/image-border.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ImageBorder = createASIcon( + "ImageBorder", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default ImageBorder; diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts index 0b90251b..b7709176 100644 --- a/src/icons-test/index.ts +++ b/src/icons-test/index.ts @@ -1,16 +1,17 @@ -export { default as AftershootLogo } from './aftershoot-logo'; -export { default as Apple } from './apple'; -export { default as ArrowCurveFill } from './arrow-curve-fill'; -export { default as CircleFill } from './circle-fill'; -export { default as Crown2Fill } from './crown-2-fill'; -export { default as Facebook } from './facebook'; -export { default as GridView1 } from './grid-view-1'; -export { default as GridView2 } from './grid-view-2'; -export { default as KeyDuplicate } from './key-duplicate'; -export { default as ListFill } from './list-fill'; -export { default as LoupeFill } from './loupe-fill'; -export { default as PaletteFill } from './palette-fill'; -export { default as PauseFill } from './pause-fill'; -export { default as PlayFill } from './play-fill'; +export { default as CrownPlay } from './Crown Play'; +export { default as Collection } from './collection'; +export { default as FlagFill } from './flag-fill'; +export { default as FolderFill } from './folder-fill'; +export { default as HomeMix } from './home-mix'; +export { default as ImageBorder } from './image-border'; +export { default as LayoutSidebarRightMix } from './layout-sidebar-right-mix'; +export { default as MouseLeft2 } from './mouse-left-2'; +export { default as NoneSelected } from './none-selected'; +export { default as Recull } from './recull'; export { default as Scissors } from './scissors'; +export { default as Sparkle } from './sparkle'; +export { default as StarFillOff } from './star-fill-off'; +export { default as StarFill } from './star-fill'; +export { default as UploadC1Cat } from './upload-c1-cat'; +export { default as UploadLrCat } from './upload-lr-cat'; diff --git a/src/icons-test/key-duplicate.tsx b/src/icons-test/key-duplicate.tsx deleted file mode 100644 index b8ccdc0a..00000000 --- a/src/icons-test/key-duplicate.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const KeyDuplicate = createASIcon( - "KeyDuplicate", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "fill", -); - -export default KeyDuplicate; diff --git a/src/icons-test/layout-sidebar-right-mix.tsx b/src/icons-test/layout-sidebar-right-mix.tsx new file mode 100644 index 00000000..5b2432df --- /dev/null +++ b/src/icons-test/layout-sidebar-right-mix.tsx @@ -0,0 +1,43 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LayoutSidebarRightMix = createASIcon( + "LayoutSidebarRightMix", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + , + "no-change", +); + +export default LayoutSidebarRightMix; diff --git a/src/icons-test/list-fill.tsx b/src/icons-test/list-fill.tsx deleted file mode 100644 index 23f8fad6..00000000 --- a/src/icons-test/list-fill.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ListFill = createASIcon( - "ListFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "fill", -); - -export default ListFill; diff --git a/src/icons-test/loupe-fill.tsx b/src/icons-test/loupe-fill.tsx deleted file mode 100644 index b81811b4..00000000 --- a/src/icons-test/loupe-fill.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LoupeFill = createASIcon( - "LoupeFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "fill", -); - -export default LoupeFill; diff --git a/src/icons-test/mouse-left-2.tsx b/src/icons-test/mouse-left-2.tsx new file mode 100644 index 00000000..89792e97 --- /dev/null +++ b/src/icons-test/mouse-left-2.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseLeft2 = createASIcon( + "MouseLeft2", + { + width: "48", + height: "48", + viewBox: "0 0 48 48", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + , + "no-change", +); + +export default MouseLeft2; diff --git a/src/icons-test/none-selected.tsx b/src/icons-test/none-selected.tsx new file mode 100644 index 00000000..ce189361 --- /dev/null +++ b/src/icons-test/none-selected.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const NoneSelected = createASIcon( + "NoneSelected", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "mix", +); + +export default NoneSelected; diff --git a/src/icons-test/palette-fill.tsx b/src/icons-test/palette-fill.tsx deleted file mode 100644 index d3c2d69e..00000000 --- a/src/icons-test/palette-fill.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PaletteFill = createASIcon( - "PaletteFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , - "fill", -); - -export default PaletteFill; diff --git a/src/icons-test/pause-fill.tsx b/src/icons-test/pause-fill.tsx deleted file mode 100644 index 984339be..00000000 --- a/src/icons-test/pause-fill.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PauseFill = createASIcon( - "PauseFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "fill", -); - -export default PauseFill; diff --git a/src/icons-test/play-fill.tsx b/src/icons-test/play-fill.tsx deleted file mode 100644 index 947b4b6c..00000000 --- a/src/icons-test/play-fill.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PlayFill = createASIcon( - "PlayFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , - "fill", -); - -export default PlayFill; diff --git a/src/icons-test/recull.tsx b/src/icons-test/recull.tsx new file mode 100644 index 00000000..0c8e2139 --- /dev/null +++ b/src/icons-test/recull.tsx @@ -0,0 +1,46 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Recull = createASIcon( + "Recull", + { + width: "46", + height: "46", + viewBox: "0 0 46 46", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + , + "no-change", +); + +export default Recull; diff --git a/src/icons-test/sparkle.tsx b/src/icons-test/sparkle.tsx new file mode 100644 index 00000000..adf3710d --- /dev/null +++ b/src/icons-test/sparkle.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Sparkle = createASIcon( + "Sparkle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default Sparkle; diff --git a/src/icons-test/star-fill-off.tsx b/src/icons-test/star-fill-off.tsx new file mode 100644 index 00000000..e4ccef52 --- /dev/null +++ b/src/icons-test/star-fill-off.tsx @@ -0,0 +1,41 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarFillOff = createASIcon( + "StarFillOff", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + , + "no-change", +); + +export default StarFillOff; diff --git a/src/icons-test/star-fill.tsx b/src/icons-test/star-fill.tsx new file mode 100644 index 00000000..551f7e45 --- /dev/null +++ b/src/icons-test/star-fill.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarFill = createASIcon( + "StarFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 38 38", + }, + + + , + "mix", +); + +export default StarFill; diff --git a/src/icons-test/upload-c1-cat.tsx b/src/icons-test/upload-c1-cat.tsx new file mode 100644 index 00000000..1efa954a --- /dev/null +++ b/src/icons-test/upload-c1-cat.tsx @@ -0,0 +1,52 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadC1Cat = createASIcon( + "UploadC1Cat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , + "mix", +); + +export default UploadC1Cat; diff --git a/src/icons-test/upload-lr-cat.tsx b/src/icons-test/upload-lr-cat.tsx new file mode 100644 index 00000000..1d85f484 --- /dev/null +++ b/src/icons-test/upload-lr-cat.tsx @@ -0,0 +1,52 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadLrCat = createASIcon( + "UploadLrCat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , + "mix", +); + +export default UploadLrCat; diff --git a/src/stories/Collection.stories.tsx b/src/stories/Collection.stories.tsx new file mode 100644 index 00000000..74e20921 --- /dev/null +++ b/src/stories/Collection.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Collection from '../icons-test/collection' + + const meta: Meta = { + component: Collection, + title: 'mix/Collection', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CrownPlay.stories.tsx b/src/stories/CrownPlay.stories.tsx new file mode 100644 index 00000000..aeebac4b --- /dev/null +++ b/src/stories/CrownPlay.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CrownPlay from '../icons-test/Crown Play' + + const meta: Meta = { + component: CrownPlay, + title: 'mix/CrownPlay', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FlagFill.stories.tsx b/src/stories/FlagFill.stories.tsx new file mode 100644 index 00000000..cba1c1eb --- /dev/null +++ b/src/stories/FlagFill.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagFill from '../icons-test/flag-fill' + + const meta: Meta = { + component: FlagFill, + title: 'mix/FlagFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleFill.stories.tsx b/src/stories/FolderFill.stories.tsx similarity index 88% rename from src/stories/CircleFill.stories.tsx rename to src/stories/FolderFill.stories.tsx index 95c25ab4..1459efae 100644 --- a/src/stories/CircleFill.stories.tsx +++ b/src/stories/FolderFill.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CircleFill from '../icons-test/circle-fill' + import FolderFill from '../icons-test/folder-fill' - const meta: Meta = { - component: CircleFill, - title: 'omega/CircleFill', + const meta: Meta = { + component: FolderFill, + title: 'no-change/FolderFill', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/GridView1.stories.tsx b/src/stories/GridView1.stories.tsx deleted file mode 100644 index e5acb595..00000000 --- a/src/stories/GridView1.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridView1 from '../icons-test/grid-view-1' - - const meta: Meta = { - component: GridView1, - title: 'omega/GridView1', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/GridView2.stories.tsx b/src/stories/GridView2.stories.tsx deleted file mode 100644 index f2678480..00000000 --- a/src/stories/GridView2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridView2 from '../icons-test/grid-view-2' - - const meta: Meta = { - component: GridView2, - title: 'omega/GridView2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Facebook.stories.tsx b/src/stories/HomeMix.stories.tsx similarity index 88% rename from src/stories/Facebook.stories.tsx rename to src/stories/HomeMix.stories.tsx index 09b63f59..e9bc8399 100644 --- a/src/stories/Facebook.stories.tsx +++ b/src/stories/HomeMix.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Facebook from '../icons-test/facebook' + import HomeMix from '../icons-test/home-mix' - const meta: Meta = { - component: Facebook, - title: 'omega/Facebook', + const meta: Meta = { + component: HomeMix, + title: 'no-change/HomeMix', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/ImageBorder.stories.tsx b/src/stories/ImageBorder.stories.tsx new file mode 100644 index 00000000..d0c814d4 --- /dev/null +++ b/src/stories/ImageBorder.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ImageBorder from '../icons-test/image-border' + + const meta: Meta = { + component: ImageBorder, + title: 'mix/ImageBorder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/KeyDuplicate.stories.tsx b/src/stories/KeyDuplicate.stories.tsx deleted file mode 100644 index 48be6297..00000000 --- a/src/stories/KeyDuplicate.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import KeyDuplicate from '../icons-test/key-duplicate' - - const meta: Meta = { - component: KeyDuplicate, - title: 'omega/KeyDuplicate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AftershootLogo.stories.tsx b/src/stories/LayoutSidebarRightMix.stories.tsx similarity index 85% rename from src/stories/AftershootLogo.stories.tsx rename to src/stories/LayoutSidebarRightMix.stories.tsx index 8e1653af..0f5767ff 100644 --- a/src/stories/AftershootLogo.stories.tsx +++ b/src/stories/LayoutSidebarRightMix.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AftershootLogo from '../icons-test/aftershoot-logo' + import LayoutSidebarRightMix from '../icons-test/layout-sidebar-right-mix' - const meta: Meta = { - component: AftershootLogo, - title: 'omega/AftershootLogo', + const meta: Meta = { + component: LayoutSidebarRightMix, + title: 'no-change/LayoutSidebarRightMix', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/ListFill.stories.tsx b/src/stories/ListFill.stories.tsx deleted file mode 100644 index 7b96f928..00000000 --- a/src/stories/ListFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ListFill from '../icons-test/list-fill' - - const meta: Meta = { - component: ListFill, - title: 'omega/ListFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LoupeFill.stories.tsx b/src/stories/LoupeFill.stories.tsx deleted file mode 100644 index efcf19c4..00000000 --- a/src/stories/LoupeFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LoupeFill from '../icons-test/loupe-fill' - - const meta: Meta = { - component: LoupeFill, - title: 'omega/LoupeFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Crown2Fill.stories.tsx b/src/stories/MouseLeft2.stories.tsx similarity index 88% rename from src/stories/Crown2Fill.stories.tsx rename to src/stories/MouseLeft2.stories.tsx index 40186ff0..8ff88415 100644 --- a/src/stories/Crown2Fill.stories.tsx +++ b/src/stories/MouseLeft2.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Crown2Fill from '../icons-test/crown-2-fill' + import MouseLeft2 from '../icons-test/mouse-left-2' - const meta: Meta = { - component: Crown2Fill, - title: 'omega/Crown2Fill', + const meta: Meta = { + component: MouseLeft2, + title: 'no-change/MouseLeft2', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/NoneSelected.stories.tsx b/src/stories/NoneSelected.stories.tsx new file mode 100644 index 00000000..b433c17f --- /dev/null +++ b/src/stories/NoneSelected.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoneSelected from '../icons-test/none-selected' + + const meta: Meta = { + component: NoneSelected, + title: 'mix/NoneSelected', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PaletteFill.stories.tsx b/src/stories/PaletteFill.stories.tsx deleted file mode 100644 index 52c4ae99..00000000 --- a/src/stories/PaletteFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PaletteFill from '../icons-test/palette-fill' - - const meta: Meta = { - component: PaletteFill, - title: 'omega/PaletteFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PauseFill.stories.tsx b/src/stories/PauseFill.stories.tsx deleted file mode 100644 index fe381b2e..00000000 --- a/src/stories/PauseFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PauseFill from '../icons-test/pause-fill' - - const meta: Meta = { - component: PauseFill, - title: 'omega/PauseFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PlayFill.stories.tsx b/src/stories/PlayFill.stories.tsx deleted file mode 100644 index 6ff578b9..00000000 --- a/src/stories/PlayFill.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PlayFill from '../icons-test/play-fill' - - const meta: Meta = { - component: PlayFill, - title: 'omega/PlayFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Apple.stories.tsx b/src/stories/Recull.stories.tsx similarity index 89% rename from src/stories/Apple.stories.tsx rename to src/stories/Recull.stories.tsx index 2b2006ba..1dbea36f 100644 --- a/src/stories/Apple.stories.tsx +++ b/src/stories/Recull.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Apple from '../icons-test/apple' + import Recull from '../icons-test/recull' - const meta: Meta = { - component: Apple, - title: 'omega/Apple', + const meta: Meta = { + component: Recull, + title: 'no-change/Recull', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/Scissors.stories.tsx b/src/stories/Scissors.stories.tsx index d02e55a9..e35c477b 100644 --- a/src/stories/Scissors.stories.tsx +++ b/src/stories/Scissors.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: Scissors, - title: 'omega/Scissors', + title: 'no-change/Scissors', decorators: [ (Story) => (
@@ -40,6 +40,7 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + export const inActive: Story = { args: { @@ -59,8 +60,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/ArrowCurveFill.stories.tsx b/src/stories/Sparkle.stories.tsx similarity index 82% rename from src/stories/ArrowCurveFill.stories.tsx rename to src/stories/Sparkle.stories.tsx index 5e47aa22..8489b682 100644 --- a/src/stories/ArrowCurveFill.stories.tsx +++ b/src/stories/Sparkle.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowCurveFill from '../icons-test/arrow-curve-fill' + import Sparkle from '../icons-test/sparkle' - const meta: Meta = { - component: ArrowCurveFill, - title: 'omega/ArrowCurveFill', + const meta: Meta = { + component: Sparkle, + title: 'mix/Sparkle', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} @@ -40,6 +40,13 @@ import type { Meta, StoryObj } from '@storybook/react' }, } + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + export const inActive: Story = { args: { @@ -59,8 +66,6 @@ import type { Meta, StoryObj } from '@storybook/react' }, } - - export const ClassName: Story = { args: { className: 'text-red-400 stroke-1 hover:text-blue-400', diff --git a/src/stories/StarFill.stories.tsx b/src/stories/StarFill.stories.tsx new file mode 100644 index 00000000..5ce22284 --- /dev/null +++ b/src/stories/StarFill.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarFill from '../icons-test/star-fill' + + const meta: Meta = { + component: StarFill, + title: 'mix/StarFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarFillOff.stories.tsx b/src/stories/StarFillOff.stories.tsx new file mode 100644 index 00000000..00adfb7e --- /dev/null +++ b/src/stories/StarFillOff.stories.tsx @@ -0,0 +1,69 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarFillOff from '../icons-test/star-fill-off' + + const meta: Meta = { + component: StarFillOff, + title: 'no-change/StarFillOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadC1Cat.stories.tsx b/src/stories/UploadC1Cat.stories.tsx new file mode 100644 index 00000000..7af9147a --- /dev/null +++ b/src/stories/UploadC1Cat.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadC1Cat from '../icons-test/upload-c1-cat' + + const meta: Meta = { + component: UploadC1Cat, + title: 'mix/UploadC1Cat', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadLrCat.stories.tsx b/src/stories/UploadLrCat.stories.tsx new file mode 100644 index 00000000..fc662d20 --- /dev/null +++ b/src/stories/UploadLrCat.stories.tsx @@ -0,0 +1,75 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadLrCat from '../icons-test/upload-lr-cat' + + const meta: Meta = { + component: UploadLrCat, + title: 'mix/UploadLrCat', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Red: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 013ce324..42eef3ba 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -637,20 +637,20 @@ video { background-color: transparent; } -.fill-current { - fill: currentColor; -} - .stroke-\[\#fff\] { stroke: #fff; } +.stroke-\[1\.5px\] { + stroke-width: 1.5px; +} + .stroke-1 { stroke-width: 1; } -.stroke-\[1\.5px\] { - stroke-width: 1.5px; +.stroke-\[2px\] { + stroke-width: 2px; } .p-2 { @@ -667,24 +667,19 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-red-400 { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); -} - .text-white { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-red-500 { +.text-red-400 { --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); + color: rgb(248 113 113 / var(--tw-text-opacity)); } -.text-\[\#555555\] { +.text-red-500 { --tw-text-opacity: 1; - color: rgb(85 85 85 / var(--tw-text-opacity)); + color: rgb(239 68 68 / var(--tw-text-opacity)); } .outline { From 392508a828ec8dc4c42833854075a478b3746896 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Mon, 3 Jun 2024 15:33:06 +0530 Subject: [PATCH 25/34] update: accent icons --- icons-metadata/alert-circle-fill.json | 4 + icons-metadata/alert-triangle-fill.json | 4 + icons-metadata/atom-di.json | 4 + icons-metadata/check_box_empty.json | 4 + icons-metadata/no-duplicate.json | 4 + icons-metadata/play-di.json | 4 + icons-metadata/star - 0.json | 4 + icons-metadata/star - 1.json | 4 + icons-metadata/star - 2.json | 4 + icons-metadata/star - 3.json | 4 + icons-metadata/star - 4.json | 4 + icons-metadata/star - 5.json | 4 + icons-metadata/success-di.json | 4 + icons-optimized/Crown Play.json | 9 --- icons-optimized/Crown Play.svg | 10 --- icons-optimized/alert-circle-fill.svg | 34 +++++++++ icons-optimized/alert-triangle-fill.svg | 19 +++++ icons-optimized/atom-di.svg | 26 +++++++ icons-optimized/check_box_empty.svg | 18 +++++ icons-optimized/collection.json | 9 --- icons-optimized/collection.svg | 24 ------ icons-optimized/flag-fill.json | 9 --- icons-optimized/flag-fill.svg | 16 ---- icons-optimized/folder-fill.json | 4 - icons-optimized/folder-fill.svg | 37 --------- icons-optimized/home-mix.json | 4 - icons-optimized/home-mix.svg | 42 ----------- icons-optimized/image-border.json | 9 --- icons-optimized/image-border.svg | 11 --- icons-optimized/layout-sidebar-right-mix.json | 4 - icons-optimized/layout-sidebar-right-mix.svg | 32 -------- icons-optimized/mouse-left-2.json | 4 - icons-optimized/mouse-left-2.svg | 31 -------- icons-optimized/no-duplicate.svg | 30 ++++++++ icons-optimized/none-selected.json | 9 --- icons-optimized/none-selected.svg | 25 ------- icons-optimized/play-di.svg | 16 ++++ icons-optimized/recull.json | 4 - icons-optimized/recull.svg | 34 --------- icons-optimized/scissors.json | 4 - icons-optimized/scissors.svg | 14 ---- icons-optimized/sparkle.json | 9 --- icons-optimized/sparkle.svg | 11 --- icons-optimized/star - 0.svg | 27 +++++++ icons-optimized/star - 1.svg | 27 +++++++ icons-optimized/star - 2.svg | 27 +++++++ icons-optimized/star - 3.svg | 27 +++++++ icons-optimized/star - 4.svg | 27 +++++++ icons-optimized/star - 5.svg | 27 +++++++ icons-optimized/star-fill-off.json | 4 - icons-optimized/star-fill-off.svg | 30 -------- icons-optimized/star-fill.json | 9 --- icons-optimized/star-fill.svg | 9 --- icons-optimized/success-di.svg | 19 +++++ icons-optimized/upload-c1-cat.json | 9 --- icons-optimized/upload-c1-cat.svg | 38 ---------- icons-optimized/upload-lr-cat.json | 9 --- icons-optimized/upload-lr-cat.svg | 38 ---------- icons-original/{_weird => _img}/cup.svg | 0 icons-original/{_weird => _img}/goodies.svg | 0 icons-original/_mix/check-box-empty.svg | 4 + icons-original/{mix => _mix}/collection.svg | 0 icons-original/{mix => _mix}/flag-fill.svg | 0 icons-original/{mix => _mix}/folder-fill.svg | 0 icons-original/{mix => _mix}/image-border.svg | 0 .../{mix => _mix}/none-selected.svg | 0 .../{mix/Crown Play.svg => _mix/play.svg} | 0 icons-original/{mix => _mix}/sparkle.svg | 0 icons-original/{mix => _mix}/star-fill.svg | 0 .../{mix => _mix}/upload-c1-cat.svg | 0 .../{mix => _mix}/upload-lr-cat.svg | 0 ...ftershoot_edit.svg => aftershoot-edit.svg} | 0 ...{facebook_color.svg => facebook-color.svg} | 0 .../alert-circle-accent.svg} | 6 +- .../alert-triangle-accent.svg} | 2 +- .../atom-di.svg => accent/atom-accent.svg} | 6 +- .../{_weird => accent}/check_box.svg | 6 +- .../circle-cross-accent.svg} | 2 +- .../{mix/dicolor => accent}/no-duplicate.svg | 8 +- .../dicolor/play-di.svg => accent/player.svg} | 4 +- .../{mix/dicolor => accent}/star - 0.svg | 2 +- .../{mix/dicolor => accent}/star - 1.svg | 2 +- .../{mix/dicolor => accent}/star - 2.svg | 2 +- .../{mix/dicolor => accent}/star - 3.svg | 2 +- .../{mix/dicolor => accent}/star - 4.svg | 2 +- .../{mix/dicolor => accent}/star - 5.svg | 2 +- .../{mix/dicolor => accent}/success-di.svg | 2 +- .../{_fill => fill}/aftershoot-logo.svg | 0 icons-original/{_fill => fill}/apple.svg | 0 .../{_fill => fill}/arrow-curve-fill.svg | 0 .../{_fill => fill}/circle-fill.svg | 0 .../{_fill => fill}/crown-2-fill.svg | 0 icons-original/{_fill => fill}/facebook.svg | 0 .../{_fill => fill}/grid-view-1.svg | 0 .../{_fill => fill}/grid-view-2.svg | 0 .../{_fill => fill}/key-duplicate.svg | 0 icons-original/{_fill => fill}/list-fill.svg | 0 icons-original/{_fill => fill}/loupe-fill.svg | 0 .../{_fill => fill}/palette-fill.svg | 0 icons-original/{_fill => fill}/pause-fill.svg | 0 icons-original/{_fill => fill}/play-fill.svg | 0 icons-original/{_fill => fill}/scissors.svg | 0 .../mix/dicolor/check_box_empty.svg | 4 - .../aftershoot-credit.svg | 0 .../{_weird => no-change}/google-color.svg | 0 .../{_weird => no-change}/grab-hand.svg | 0 icons-original/{_weird => no-change}/logo.svg | 0 package.json | 4 +- scripts/buildIcons.mjs | 5 +- scripts/exportStoryTemplate.mjs | 13 ++++ scripts/generateIconFiles.mjs | 9 +++ scripts/processSvg.mjs | 3 +- scripts/writeSvgChildren.mjs | 2 + scripts/writeSvgMetadata.mjs | 15 +++- src/Icon.ts | 5 +- src/icons-test/Crown Play.tsx | 29 ------- src/icons-test/alert-circle-fill.tsx | 44 +++++++++++ src/icons-test/alert-triangle-fill.tsx | 31 ++++++++ src/icons-test/atom-di.tsx | 39 ++++++++++ src/icons-test/check_box_empty.tsx | 36 +++++++++ src/icons-test/collection.tsx | 38 ---------- src/icons-test/flag-fill.tsx | 30 -------- src/icons-test/folder-fill.tsx | 47 ------------ src/icons-test/home-mix.tsx | 58 -------------- src/icons-test/image-border.tsx | 27 ------- src/icons-test/index.ts | 29 ++++--- src/icons-test/layout-sidebar-right-mix.tsx | 43 ----------- src/icons-test/mouse-left-2.tsx | 42 ----------- src/icons-test/no-duplicate.tsx | 44 +++++++++++ src/icons-test/none-selected.tsx | 39 ---------- src/icons-test/play-di.tsx | 28 +++++++ src/icons-test/recull.tsx | 46 ------------ src/icons-test/scissors.tsx | 36 --------- src/icons-test/sparkle.tsx | 27 ------- src/icons-test/star - 0.tsx | 37 +++++++++ src/icons-test/star - 1.tsx | 37 +++++++++ src/icons-test/star - 2.tsx | 37 +++++++++ src/icons-test/star - 3.tsx | 37 +++++++++ src/icons-test/star - 4.tsx | 37 +++++++++ src/icons-test/star - 5.tsx | 37 +++++++++ src/icons-test/star-fill-off.tsx | 41 ---------- src/icons-test/star-fill.tsx | 24 ------ src/icons-test/success-di.tsx | 31 ++++++++ src/icons-test/upload-c1-cat.tsx | 52 ------------- src/icons-test/upload-lr-cat.tsx | 52 ------------- src/stories/AlertCircleFill.stories.tsx | 71 ++++++++++++++++++ src/stories/AlertTriangleFill.stories.tsx | 71 ++++++++++++++++++ ...cissors.stories.tsx => AtomDi.stories.tsx} | 14 ++-- src/stories/CheckBoxEmpty.stories.tsx | 71 ++++++++++++++++++ src/stories/Collection.stories.tsx | 75 ------------------- src/stories/CrownPlay.stories.tsx | 75 ------------------- src/stories/FlagFill.stories.tsx | 75 ------------------- src/stories/ImageBorder.stories.tsx | 75 ------------------- src/stories/LayoutSidebarRightMix.stories.tsx | 69 ----------------- src/stories/NoDuplicate.stories.tsx | 71 ++++++++++++++++++ src/stories/NoneSelected.stories.tsx | 75 ------------------- ...derFill.stories.tsx => PlayDi.stories.tsx} | 14 ++-- src/stories/Sparkle.stories.tsx | 75 ------------------- .../{Recull.stories.tsx => Star0.stories.tsx} | 14 ++-- ...{HomeMix.stories.tsx => Star1.stories.tsx} | 14 ++-- src/stories/Star2.stories.tsx | 71 ++++++++++++++++++ src/stories/Star3.stories.tsx | 71 ++++++++++++++++++ src/stories/Star4.stories.tsx | 71 ++++++++++++++++++ src/stories/Star5.stories.tsx | 71 ++++++++++++++++++ src/stories/StarFill.stories.tsx | 75 ------------------- src/stories/StarFillOff.stories.tsx | 69 ----------------- ...eft2.stories.tsx => SuccessDi.stories.tsx} | 14 ++-- src/stories/UploadC1Cat.stories.tsx | 75 ------------------- src/stories/UploadLrCat.stories.tsx | 75 ------------------- svg-children/alert-circle-fill.svg | 1 + svg-children/alert-triangle-fill.svg | 1 + svg-children/atom-di.svg | 1 + svg-children/check_box_empty.svg | 1 + svg-children/no-duplicate.svg | 2 + svg-children/play-di.svg | 1 + svg-children/star - 0.svg | 1 + svg-children/star - 1.svg | 1 + svg-children/star - 2.svg | 1 + svg-children/star - 3.svg | 1 + svg-children/star - 4.svg | 1 + svg-children/star - 5.svg | 1 + svg-children/success-di.svg | 1 + 182 files changed, 1560 insertions(+), 2039 deletions(-) create mode 100644 icons-metadata/alert-circle-fill.json create mode 100644 icons-metadata/alert-triangle-fill.json create mode 100644 icons-metadata/atom-di.json create mode 100644 icons-metadata/check_box_empty.json create mode 100644 icons-metadata/no-duplicate.json create mode 100644 icons-metadata/play-di.json create mode 100644 icons-metadata/star - 0.json create mode 100644 icons-metadata/star - 1.json create mode 100644 icons-metadata/star - 2.json create mode 100644 icons-metadata/star - 3.json create mode 100644 icons-metadata/star - 4.json create mode 100644 icons-metadata/star - 5.json create mode 100644 icons-metadata/success-di.json delete mode 100644 icons-optimized/Crown Play.json delete mode 100644 icons-optimized/Crown Play.svg create mode 100644 icons-optimized/alert-circle-fill.svg create mode 100644 icons-optimized/alert-triangle-fill.svg create mode 100644 icons-optimized/atom-di.svg create mode 100644 icons-optimized/check_box_empty.svg delete mode 100644 icons-optimized/collection.json delete mode 100644 icons-optimized/collection.svg delete mode 100644 icons-optimized/flag-fill.json delete mode 100644 icons-optimized/flag-fill.svg delete mode 100644 icons-optimized/folder-fill.json delete mode 100644 icons-optimized/folder-fill.svg delete mode 100644 icons-optimized/home-mix.json delete mode 100644 icons-optimized/home-mix.svg delete mode 100644 icons-optimized/image-border.json delete mode 100644 icons-optimized/image-border.svg delete mode 100644 icons-optimized/layout-sidebar-right-mix.json delete mode 100644 icons-optimized/layout-sidebar-right-mix.svg delete mode 100644 icons-optimized/mouse-left-2.json delete mode 100644 icons-optimized/mouse-left-2.svg create mode 100644 icons-optimized/no-duplicate.svg delete mode 100644 icons-optimized/none-selected.json delete mode 100644 icons-optimized/none-selected.svg create mode 100644 icons-optimized/play-di.svg delete mode 100644 icons-optimized/recull.json delete mode 100644 icons-optimized/recull.svg delete mode 100644 icons-optimized/scissors.json delete mode 100644 icons-optimized/scissors.svg delete mode 100644 icons-optimized/sparkle.json delete mode 100644 icons-optimized/sparkle.svg create mode 100644 icons-optimized/star - 0.svg create mode 100644 icons-optimized/star - 1.svg create mode 100644 icons-optimized/star - 2.svg create mode 100644 icons-optimized/star - 3.svg create mode 100644 icons-optimized/star - 4.svg create mode 100644 icons-optimized/star - 5.svg delete mode 100644 icons-optimized/star-fill-off.json delete mode 100644 icons-optimized/star-fill-off.svg delete mode 100644 icons-optimized/star-fill.json delete mode 100644 icons-optimized/star-fill.svg create mode 100644 icons-optimized/success-di.svg delete mode 100644 icons-optimized/upload-c1-cat.json delete mode 100644 icons-optimized/upload-c1-cat.svg delete mode 100644 icons-optimized/upload-lr-cat.json delete mode 100644 icons-optimized/upload-lr-cat.svg rename icons-original/{_weird => _img}/cup.svg (100%) rename icons-original/{_weird => _img}/goodies.svg (100%) create mode 100644 icons-original/_mix/check-box-empty.svg rename icons-original/{mix => _mix}/collection.svg (100%) rename icons-original/{mix => _mix}/flag-fill.svg (100%) rename icons-original/{mix => _mix}/folder-fill.svg (100%) rename icons-original/{mix => _mix}/image-border.svg (100%) rename icons-original/{mix => _mix}/none-selected.svg (100%) rename icons-original/{mix/Crown Play.svg => _mix/play.svg} (100%) rename icons-original/{mix => _mix}/sparkle.svg (100%) rename icons-original/{mix => _mix}/star-fill.svg (100%) rename icons-original/{mix => _mix}/upload-c1-cat.svg (100%) rename icons-original/{mix => _mix}/upload-lr-cat.svg (100%) rename icons-original/_weird/{aftershoot_edit.svg => aftershoot-edit.svg} (100%) rename icons-original/_weird/{facebook_color.svg => facebook-color.svg} (100%) rename icons-original/{mix/dicolor/alert-circle-fill.svg => accent/alert-circle-accent.svg} (78%) rename icons-original/{mix/dicolor/alert-triangle-fill.svg => accent/alert-triangle-accent.svg} (50%) rename icons-original/{mix/dicolor/atom-di.svg => accent/atom-accent.svg} (87%) rename icons-original/{_weird => accent}/check_box.svg (69%) rename icons-original/{_fill/di/fail-di.svg => accent/circle-cross-accent.svg} (93%) rename icons-original/{mix/dicolor => accent}/no-duplicate.svg (83%) rename icons-original/{mix/dicolor/play-di.svg => accent/player.svg} (96%) rename icons-original/{mix/dicolor => accent}/star - 0.svg (96%) rename icons-original/{mix/dicolor => accent}/star - 1.svg (97%) rename icons-original/{mix/dicolor => accent}/star - 2.svg (95%) rename icons-original/{mix/dicolor => accent}/star - 3.svg (98%) rename icons-original/{mix/dicolor => accent}/star - 4.svg (97%) rename icons-original/{mix/dicolor => accent}/star - 5.svg (97%) rename icons-original/{mix/dicolor => accent}/success-di.svg (96%) rename icons-original/{_fill => fill}/aftershoot-logo.svg (100%) rename icons-original/{_fill => fill}/apple.svg (100%) rename icons-original/{_fill => fill}/arrow-curve-fill.svg (100%) rename icons-original/{_fill => fill}/circle-fill.svg (100%) rename icons-original/{_fill => fill}/crown-2-fill.svg (100%) rename icons-original/{_fill => fill}/facebook.svg (100%) rename icons-original/{_fill => fill}/grid-view-1.svg (100%) rename icons-original/{_fill => fill}/grid-view-2.svg (100%) rename icons-original/{_fill => fill}/key-duplicate.svg (100%) rename icons-original/{_fill => fill}/list-fill.svg (100%) rename icons-original/{_fill => fill}/loupe-fill.svg (100%) rename icons-original/{_fill => fill}/palette-fill.svg (100%) rename icons-original/{_fill => fill}/pause-fill.svg (100%) rename icons-original/{_fill => fill}/play-fill.svg (100%) rename icons-original/{_fill => fill}/scissors.svg (100%) delete mode 100644 icons-original/mix/dicolor/check_box_empty.svg rename icons-original/{_weird => no-change}/aftershoot-credit.svg (100%) rename icons-original/{_weird => no-change}/google-color.svg (100%) rename icons-original/{_weird => no-change}/grab-hand.svg (100%) rename icons-original/{_weird => no-change}/logo.svg (100%) delete mode 100644 src/icons-test/Crown Play.tsx create mode 100644 src/icons-test/alert-circle-fill.tsx create mode 100644 src/icons-test/alert-triangle-fill.tsx create mode 100644 src/icons-test/atom-di.tsx create mode 100644 src/icons-test/check_box_empty.tsx delete mode 100644 src/icons-test/collection.tsx delete mode 100644 src/icons-test/flag-fill.tsx delete mode 100644 src/icons-test/folder-fill.tsx delete mode 100644 src/icons-test/home-mix.tsx delete mode 100644 src/icons-test/image-border.tsx delete mode 100644 src/icons-test/layout-sidebar-right-mix.tsx delete mode 100644 src/icons-test/mouse-left-2.tsx create mode 100644 src/icons-test/no-duplicate.tsx delete mode 100644 src/icons-test/none-selected.tsx create mode 100644 src/icons-test/play-di.tsx delete mode 100644 src/icons-test/recull.tsx delete mode 100644 src/icons-test/scissors.tsx delete mode 100644 src/icons-test/sparkle.tsx create mode 100644 src/icons-test/star - 0.tsx create mode 100644 src/icons-test/star - 1.tsx create mode 100644 src/icons-test/star - 2.tsx create mode 100644 src/icons-test/star - 3.tsx create mode 100644 src/icons-test/star - 4.tsx create mode 100644 src/icons-test/star - 5.tsx delete mode 100644 src/icons-test/star-fill-off.tsx delete mode 100644 src/icons-test/star-fill.tsx create mode 100644 src/icons-test/success-di.tsx delete mode 100644 src/icons-test/upload-c1-cat.tsx delete mode 100644 src/icons-test/upload-lr-cat.tsx create mode 100644 src/stories/AlertCircleFill.stories.tsx create mode 100644 src/stories/AlertTriangleFill.stories.tsx rename src/stories/{Scissors.stories.tsx => AtomDi.stories.tsx} (86%) create mode 100644 src/stories/CheckBoxEmpty.stories.tsx delete mode 100644 src/stories/Collection.stories.tsx delete mode 100644 src/stories/CrownPlay.stories.tsx delete mode 100644 src/stories/FlagFill.stories.tsx delete mode 100644 src/stories/ImageBorder.stories.tsx delete mode 100644 src/stories/LayoutSidebarRightMix.stories.tsx create mode 100644 src/stories/NoDuplicate.stories.tsx delete mode 100644 src/stories/NoneSelected.stories.tsx rename src/stories/{FolderFill.stories.tsx => PlayDi.stories.tsx} (86%) delete mode 100644 src/stories/Sparkle.stories.tsx rename src/stories/{Recull.stories.tsx => Star0.stories.tsx} (87%) rename src/stories/{HomeMix.stories.tsx => Star1.stories.tsx} (87%) create mode 100644 src/stories/Star2.stories.tsx create mode 100644 src/stories/Star3.stories.tsx create mode 100644 src/stories/Star4.stories.tsx create mode 100644 src/stories/Star5.stories.tsx delete mode 100644 src/stories/StarFill.stories.tsx delete mode 100644 src/stories/StarFillOff.stories.tsx rename src/stories/{MouseLeft2.stories.tsx => SuccessDi.stories.tsx} (86%) delete mode 100644 src/stories/UploadC1Cat.stories.tsx delete mode 100644 src/stories/UploadLrCat.stories.tsx create mode 100644 svg-children/alert-circle-fill.svg create mode 100644 svg-children/alert-triangle-fill.svg create mode 100644 svg-children/atom-di.svg create mode 100644 svg-children/check_box_empty.svg create mode 100644 svg-children/no-duplicate.svg create mode 100644 svg-children/play-di.svg create mode 100644 svg-children/star - 0.svg create mode 100644 svg-children/star - 1.svg create mode 100644 svg-children/star - 2.svg create mode 100644 svg-children/star - 3.svg create mode 100644 svg-children/star - 4.svg create mode 100644 svg-children/star - 5.svg create mode 100644 svg-children/success-di.svg diff --git a/icons-metadata/alert-circle-fill.json b/icons-metadata/alert-circle-fill.json new file mode 100644 index 00000000..a62f6c10 --- /dev/null +++ b/icons-metadata/alert-circle-fill.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-circle-fill" +} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-fill.json b/icons-metadata/alert-triangle-fill.json new file mode 100644 index 00000000..61d1c716 --- /dev/null +++ b/icons-metadata/alert-triangle-fill.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-triangle-fill" +} \ No newline at end of file diff --git a/icons-metadata/atom-di.json b/icons-metadata/atom-di.json new file mode 100644 index 00000000..187d6ad9 --- /dev/null +++ b/icons-metadata/atom-di.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "atom-di" +} \ No newline at end of file diff --git a/icons-metadata/check_box_empty.json b/icons-metadata/check_box_empty.json new file mode 100644 index 00000000..b19c4f71 --- /dev/null +++ b/icons-metadata/check_box_empty.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "check_box_empty" +} \ No newline at end of file diff --git a/icons-metadata/no-duplicate.json b/icons-metadata/no-duplicate.json new file mode 100644 index 00000000..bc079dd4 --- /dev/null +++ b/icons-metadata/no-duplicate.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "no-duplicate" +} \ No newline at end of file diff --git a/icons-metadata/play-di.json b/icons-metadata/play-di.json new file mode 100644 index 00000000..dd783094 --- /dev/null +++ b/icons-metadata/play-di.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "play-di" +} \ No newline at end of file diff --git a/icons-metadata/star - 0.json b/icons-metadata/star - 0.json new file mode 100644 index 00000000..2e28e9e3 --- /dev/null +++ b/icons-metadata/star - 0.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 0" +} \ No newline at end of file diff --git a/icons-metadata/star - 1.json b/icons-metadata/star - 1.json new file mode 100644 index 00000000..36c6a394 --- /dev/null +++ b/icons-metadata/star - 1.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 1" +} \ No newline at end of file diff --git a/icons-metadata/star - 2.json b/icons-metadata/star - 2.json new file mode 100644 index 00000000..e4f6b507 --- /dev/null +++ b/icons-metadata/star - 2.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 2" +} \ No newline at end of file diff --git a/icons-metadata/star - 3.json b/icons-metadata/star - 3.json new file mode 100644 index 00000000..f180762b --- /dev/null +++ b/icons-metadata/star - 3.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 3" +} \ No newline at end of file diff --git a/icons-metadata/star - 4.json b/icons-metadata/star - 4.json new file mode 100644 index 00000000..6ef6af15 --- /dev/null +++ b/icons-metadata/star - 4.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 4" +} \ No newline at end of file diff --git a/icons-metadata/star - 5.json b/icons-metadata/star - 5.json new file mode 100644 index 00000000..9e8ce8d8 --- /dev/null +++ b/icons-metadata/star - 5.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 5" +} \ No newline at end of file diff --git a/icons-metadata/success-di.json b/icons-metadata/success-di.json new file mode 100644 index 00000000..f5fbac73 --- /dev/null +++ b/icons-metadata/success-di.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "success-di" +} \ No newline at end of file diff --git a/icons-optimized/Crown Play.json b/icons-optimized/Crown Play.json deleted file mode 100644 index 4b5de5b2..00000000 --- a/icons-optimized/Crown Play.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "Crown Play", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/Crown Play.svg b/icons-optimized/Crown Play.svg deleted file mode 100644 index 9da4813f..00000000 --- a/icons-optimized/Crown Play.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/icons-optimized/alert-circle-fill.svg b/icons-optimized/alert-circle-fill.svg new file mode 100644 index 00000000..1f96ec84 --- /dev/null +++ b/icons-optimized/alert-circle-fill.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + diff --git a/icons-optimized/alert-triangle-fill.svg b/icons-optimized/alert-triangle-fill.svg new file mode 100644 index 00000000..1a796d10 --- /dev/null +++ b/icons-optimized/alert-triangle-fill.svg @@ -0,0 +1,19 @@ + + + + diff --git a/icons-optimized/atom-di.svg b/icons-optimized/atom-di.svg new file mode 100644 index 00000000..f2e05201 --- /dev/null +++ b/icons-optimized/atom-di.svg @@ -0,0 +1,26 @@ + + + + + diff --git a/icons-optimized/check_box_empty.svg b/icons-optimized/check_box_empty.svg new file mode 100644 index 00000000..ff7ef25f --- /dev/null +++ b/icons-optimized/check_box_empty.svg @@ -0,0 +1,18 @@ + + + + diff --git a/icons-optimized/collection.json b/icons-optimized/collection.json deleted file mode 100644 index e0771f88..00000000 --- a/icons-optimized/collection.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "collection", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/collection.svg b/icons-optimized/collection.svg deleted file mode 100644 index 0a9c6a46..00000000 --- a/icons-optimized/collection.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/flag-fill.json b/icons-optimized/flag-fill.json deleted file mode 100644 index dcc79f8a..00000000 --- a/icons-optimized/flag-fill.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "flag-fill", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/flag-fill.svg b/icons-optimized/flag-fill.svg deleted file mode 100644 index 4c7da1f9..00000000 --- a/icons-optimized/flag-fill.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/folder-fill.json b/icons-optimized/folder-fill.json deleted file mode 100644 index 7ee05eee..00000000 --- a/icons-optimized/folder-fill.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "folder-fill" -} \ No newline at end of file diff --git a/icons-optimized/folder-fill.svg b/icons-optimized/folder-fill.svg deleted file mode 100644 index c4aab553..00000000 --- a/icons-optimized/folder-fill.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/icons-optimized/home-mix.json b/icons-optimized/home-mix.json deleted file mode 100644 index 3732de18..00000000 --- a/icons-optimized/home-mix.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "home-mix" -} \ No newline at end of file diff --git a/icons-optimized/home-mix.svg b/icons-optimized/home-mix.svg deleted file mode 100644 index 1de9fffc..00000000 --- a/icons-optimized/home-mix.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons-optimized/image-border.json b/icons-optimized/image-border.json deleted file mode 100644 index 13f0d57b..00000000 --- a/icons-optimized/image-border.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "image-border", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/image-border.svg b/icons-optimized/image-border.svg deleted file mode 100644 index ec6f86ce..00000000 --- a/icons-optimized/image-border.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/icons-optimized/layout-sidebar-right-mix.json b/icons-optimized/layout-sidebar-right-mix.json deleted file mode 100644 index adb6ee9e..00000000 --- a/icons-optimized/layout-sidebar-right-mix.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "layout-sidebar-right-mix" -} \ No newline at end of file diff --git a/icons-optimized/layout-sidebar-right-mix.svg b/icons-optimized/layout-sidebar-right-mix.svg deleted file mode 100644 index 16931fb3..00000000 --- a/icons-optimized/layout-sidebar-right-mix.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - diff --git a/icons-optimized/mouse-left-2.json b/icons-optimized/mouse-left-2.json deleted file mode 100644 index 7a3ed2e9..00000000 --- a/icons-optimized/mouse-left-2.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "mouse-left-2" -} \ No newline at end of file diff --git a/icons-optimized/mouse-left-2.svg b/icons-optimized/mouse-left-2.svg deleted file mode 100644 index ea50ef1d..00000000 --- a/icons-optimized/mouse-left-2.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - diff --git a/icons-optimized/no-duplicate.svg b/icons-optimized/no-duplicate.svg new file mode 100644 index 00000000..b5a96093 --- /dev/null +++ b/icons-optimized/no-duplicate.svg @@ -0,0 +1,30 @@ + + + + + + diff --git a/icons-optimized/none-selected.json b/icons-optimized/none-selected.json deleted file mode 100644 index 13495d35..00000000 --- a/icons-optimized/none-selected.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "none-selected", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/none-selected.svg b/icons-optimized/none-selected.svg deleted file mode 100644 index b4743f11..00000000 --- a/icons-optimized/none-selected.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - diff --git a/icons-optimized/play-di.svg b/icons-optimized/play-di.svg new file mode 100644 index 00000000..3ce0539e --- /dev/null +++ b/icons-optimized/play-di.svg @@ -0,0 +1,16 @@ + + + + diff --git a/icons-optimized/recull.json b/icons-optimized/recull.json deleted file mode 100644 index 298e0d5e..00000000 --- a/icons-optimized/recull.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "recull" -} \ No newline at end of file diff --git a/icons-optimized/recull.svg b/icons-optimized/recull.svg deleted file mode 100644 index 788da6ef..00000000 --- a/icons-optimized/recull.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - diff --git a/icons-optimized/scissors.json b/icons-optimized/scissors.json deleted file mode 100644 index 116b7e4e..00000000 --- a/icons-optimized/scissors.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "scissors" -} \ No newline at end of file diff --git a/icons-optimized/scissors.svg b/icons-optimized/scissors.svg deleted file mode 100644 index 9a3e4565..00000000 --- a/icons-optimized/scissors.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/icons-optimized/sparkle.json b/icons-optimized/sparkle.json deleted file mode 100644 index 7a37bec3..00000000 --- a/icons-optimized/sparkle.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "sparkle", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/sparkle.svg b/icons-optimized/sparkle.svg deleted file mode 100644 index 0db30c49..00000000 --- a/icons-optimized/sparkle.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/icons-optimized/star - 0.svg b/icons-optimized/star - 0.svg new file mode 100644 index 00000000..ac7e926d --- /dev/null +++ b/icons-optimized/star - 0.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star - 1.svg b/icons-optimized/star - 1.svg new file mode 100644 index 00000000..ba11393b --- /dev/null +++ b/icons-optimized/star - 1.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star - 2.svg b/icons-optimized/star - 2.svg new file mode 100644 index 00000000..363c488f --- /dev/null +++ b/icons-optimized/star - 2.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star - 3.svg b/icons-optimized/star - 3.svg new file mode 100644 index 00000000..1538f673 --- /dev/null +++ b/icons-optimized/star - 3.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star - 4.svg b/icons-optimized/star - 4.svg new file mode 100644 index 00000000..0a916297 --- /dev/null +++ b/icons-optimized/star - 4.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star - 5.svg b/icons-optimized/star - 5.svg new file mode 100644 index 00000000..cfc497aa --- /dev/null +++ b/icons-optimized/star - 5.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/icons-optimized/star-fill-off.json b/icons-optimized/star-fill-off.json deleted file mode 100644 index 022d8fbc..00000000 --- a/icons-optimized/star-fill-off.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "star-fill-off" -} \ No newline at end of file diff --git a/icons-optimized/star-fill-off.svg b/icons-optimized/star-fill-off.svg deleted file mode 100644 index ab87402b..00000000 --- a/icons-optimized/star-fill-off.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - diff --git a/icons-optimized/star-fill.json b/icons-optimized/star-fill.json deleted file mode 100644 index 70663e8a..00000000 --- a/icons-optimized/star-fill.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "star-fill", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/star-fill.svg b/icons-optimized/star-fill.svg deleted file mode 100644 index ee001f02..00000000 --- a/icons-optimized/star-fill.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/icons-optimized/success-di.svg b/icons-optimized/success-di.svg new file mode 100644 index 00000000..8329a18f --- /dev/null +++ b/icons-optimized/success-di.svg @@ -0,0 +1,19 @@ + + + + diff --git a/icons-optimized/upload-c1-cat.json b/icons-optimized/upload-c1-cat.json deleted file mode 100644 index 76f1255b..00000000 --- a/icons-optimized/upload-c1-cat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "upload-c1-cat", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/upload-c1-cat.svg b/icons-optimized/upload-c1-cat.svg deleted file mode 100644 index 544c7bea..00000000 --- a/icons-optimized/upload-c1-cat.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons-optimized/upload-lr-cat.json b/icons-optimized/upload-lr-cat.json deleted file mode 100644 index cd184bc6..00000000 --- a/icons-optimized/upload-lr-cat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "upload-lr-cat", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-optimized/upload-lr-cat.svg b/icons-optimized/upload-lr-cat.svg deleted file mode 100644 index a1c7a4fa..00000000 --- a/icons-optimized/upload-lr-cat.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/icons-original/_weird/cup.svg b/icons-original/_img/cup.svg similarity index 100% rename from icons-original/_weird/cup.svg rename to icons-original/_img/cup.svg diff --git a/icons-original/_weird/goodies.svg b/icons-original/_img/goodies.svg similarity index 100% rename from icons-original/_weird/goodies.svg rename to icons-original/_img/goodies.svg diff --git a/icons-original/_mix/check-box-empty.svg b/icons-original/_mix/check-box-empty.svg new file mode 100644 index 00000000..f4183270 --- /dev/null +++ b/icons-original/_mix/check-box-empty.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/mix/collection.svg b/icons-original/_mix/collection.svg similarity index 100% rename from icons-original/mix/collection.svg rename to icons-original/_mix/collection.svg diff --git a/icons-original/mix/flag-fill.svg b/icons-original/_mix/flag-fill.svg similarity index 100% rename from icons-original/mix/flag-fill.svg rename to icons-original/_mix/flag-fill.svg diff --git a/icons-original/mix/folder-fill.svg b/icons-original/_mix/folder-fill.svg similarity index 100% rename from icons-original/mix/folder-fill.svg rename to icons-original/_mix/folder-fill.svg diff --git a/icons-original/mix/image-border.svg b/icons-original/_mix/image-border.svg similarity index 100% rename from icons-original/mix/image-border.svg rename to icons-original/_mix/image-border.svg diff --git a/icons-original/mix/none-selected.svg b/icons-original/_mix/none-selected.svg similarity index 100% rename from icons-original/mix/none-selected.svg rename to icons-original/_mix/none-selected.svg diff --git a/icons-original/mix/Crown Play.svg b/icons-original/_mix/play.svg similarity index 100% rename from icons-original/mix/Crown Play.svg rename to icons-original/_mix/play.svg diff --git a/icons-original/mix/sparkle.svg b/icons-original/_mix/sparkle.svg similarity index 100% rename from icons-original/mix/sparkle.svg rename to icons-original/_mix/sparkle.svg diff --git a/icons-original/mix/star-fill.svg b/icons-original/_mix/star-fill.svg similarity index 100% rename from icons-original/mix/star-fill.svg rename to icons-original/_mix/star-fill.svg diff --git a/icons-original/mix/upload-c1-cat.svg b/icons-original/_mix/upload-c1-cat.svg similarity index 100% rename from icons-original/mix/upload-c1-cat.svg rename to icons-original/_mix/upload-c1-cat.svg diff --git a/icons-original/mix/upload-lr-cat.svg b/icons-original/_mix/upload-lr-cat.svg similarity index 100% rename from icons-original/mix/upload-lr-cat.svg rename to icons-original/_mix/upload-lr-cat.svg diff --git a/icons-original/_weird/aftershoot_edit.svg b/icons-original/_weird/aftershoot-edit.svg similarity index 100% rename from icons-original/_weird/aftershoot_edit.svg rename to icons-original/_weird/aftershoot-edit.svg diff --git a/icons-original/_weird/facebook_color.svg b/icons-original/_weird/facebook-color.svg similarity index 100% rename from icons-original/_weird/facebook_color.svg rename to icons-original/_weird/facebook-color.svg diff --git a/icons-original/mix/dicolor/alert-circle-fill.svg b/icons-original/accent/alert-circle-accent.svg similarity index 78% rename from icons-original/mix/dicolor/alert-circle-fill.svg rename to icons-original/accent/alert-circle-accent.svg index 2669a3e3..3dc01945 100644 --- a/icons-original/mix/dicolor/alert-circle-fill.svg +++ b/icons-original/accent/alert-circle-accent.svg @@ -1,8 +1,8 @@ - - - + + + diff --git a/icons-original/mix/dicolor/alert-triangle-fill.svg b/icons-original/accent/alert-triangle-accent.svg similarity index 50% rename from icons-original/mix/dicolor/alert-triangle-fill.svg rename to icons-original/accent/alert-triangle-accent.svg index 54bf27e2..205210db 100644 --- a/icons-original/mix/dicolor/alert-triangle-fill.svg +++ b/icons-original/accent/alert-triangle-accent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons-original/mix/dicolor/atom-di.svg b/icons-original/accent/atom-accent.svg similarity index 87% rename from icons-original/mix/dicolor/atom-di.svg rename to icons-original/accent/atom-accent.svg index 9c559dee..1ed93f48 100644 --- a/icons-original/mix/dicolor/atom-di.svg +++ b/icons-original/accent/atom-accent.svg @@ -1,5 +1,5 @@ - - - + + + diff --git a/icons-original/_weird/check_box.svg b/icons-original/accent/check_box.svg similarity index 69% rename from icons-original/_weird/check_box.svg rename to icons-original/accent/check_box.svg index 0ecd46cf..745b7a25 100644 --- a/icons-original/_weird/check_box.svg +++ b/icons-original/accent/check_box.svg @@ -1,6 +1,6 @@ - - + + - + diff --git a/icons-original/_fill/di/fail-di.svg b/icons-original/accent/circle-cross-accent.svg similarity index 93% rename from icons-original/_fill/di/fail-di.svg rename to icons-original/accent/circle-cross-accent.svg index a2f7cebb..902989c3 100644 --- a/icons-original/_fill/di/fail-di.svg +++ b/icons-original/accent/circle-cross-accent.svg @@ -1,5 +1,5 @@ - + diff --git a/icons-original/mix/dicolor/no-duplicate.svg b/icons-original/accent/no-duplicate.svg similarity index 83% rename from icons-original/mix/dicolor/no-duplicate.svg rename to icons-original/accent/no-duplicate.svg index 3c12871e..14d02f80 100644 --- a/icons-original/mix/dicolor/no-duplicate.svg +++ b/icons-original/accent/no-duplicate.svg @@ -1,7 +1,7 @@ - - - + + - + diff --git a/icons-original/mix/dicolor/play-di.svg b/icons-original/accent/player.svg similarity index 96% rename from icons-original/mix/dicolor/play-di.svg rename to icons-original/accent/player.svg index 481869b4..90114d3f 100644 --- a/icons-original/mix/dicolor/play-di.svg +++ b/icons-original/accent/player.svg @@ -1,4 +1,4 @@ - - + + diff --git a/icons-original/mix/dicolor/star - 0.svg b/icons-original/accent/star - 0.svg similarity index 96% rename from icons-original/mix/dicolor/star - 0.svg rename to icons-original/accent/star - 0.svg index a1361e19..b17e23ea 100644 --- a/icons-original/mix/dicolor/star - 0.svg +++ b/icons-original/accent/star - 0.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/star - 1.svg b/icons-original/accent/star - 1.svg similarity index 97% rename from icons-original/mix/dicolor/star - 1.svg rename to icons-original/accent/star - 1.svg index a338b888..dcb3dae0 100644 --- a/icons-original/mix/dicolor/star - 1.svg +++ b/icons-original/accent/star - 1.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/star - 2.svg b/icons-original/accent/star - 2.svg similarity index 95% rename from icons-original/mix/dicolor/star - 2.svg rename to icons-original/accent/star - 2.svg index 90568106..8facddbf 100644 --- a/icons-original/mix/dicolor/star - 2.svg +++ b/icons-original/accent/star - 2.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/star - 3.svg b/icons-original/accent/star - 3.svg similarity index 98% rename from icons-original/mix/dicolor/star - 3.svg rename to icons-original/accent/star - 3.svg index cf57e521..823bda14 100644 --- a/icons-original/mix/dicolor/star - 3.svg +++ b/icons-original/accent/star - 3.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/star - 4.svg b/icons-original/accent/star - 4.svg similarity index 97% rename from icons-original/mix/dicolor/star - 4.svg rename to icons-original/accent/star - 4.svg index 050780da..41668cc3 100644 --- a/icons-original/mix/dicolor/star - 4.svg +++ b/icons-original/accent/star - 4.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/star - 5.svg b/icons-original/accent/star - 5.svg similarity index 97% rename from icons-original/mix/dicolor/star - 5.svg rename to icons-original/accent/star - 5.svg index 6710501b..9b0c85f0 100644 --- a/icons-original/mix/dicolor/star - 5.svg +++ b/icons-original/accent/star - 5.svg @@ -1,7 +1,7 @@ - + diff --git a/icons-original/mix/dicolor/success-di.svg b/icons-original/accent/success-di.svg similarity index 96% rename from icons-original/mix/dicolor/success-di.svg rename to icons-original/accent/success-di.svg index 4021c4b5..c920bbc0 100644 --- a/icons-original/mix/dicolor/success-di.svg +++ b/icons-original/accent/success-di.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/_fill/aftershoot-logo.svg b/icons-original/fill/aftershoot-logo.svg similarity index 100% rename from icons-original/_fill/aftershoot-logo.svg rename to icons-original/fill/aftershoot-logo.svg diff --git a/icons-original/_fill/apple.svg b/icons-original/fill/apple.svg similarity index 100% rename from icons-original/_fill/apple.svg rename to icons-original/fill/apple.svg diff --git a/icons-original/_fill/arrow-curve-fill.svg b/icons-original/fill/arrow-curve-fill.svg similarity index 100% rename from icons-original/_fill/arrow-curve-fill.svg rename to icons-original/fill/arrow-curve-fill.svg diff --git a/icons-original/_fill/circle-fill.svg b/icons-original/fill/circle-fill.svg similarity index 100% rename from icons-original/_fill/circle-fill.svg rename to icons-original/fill/circle-fill.svg diff --git a/icons-original/_fill/crown-2-fill.svg b/icons-original/fill/crown-2-fill.svg similarity index 100% rename from icons-original/_fill/crown-2-fill.svg rename to icons-original/fill/crown-2-fill.svg diff --git a/icons-original/_fill/facebook.svg b/icons-original/fill/facebook.svg similarity index 100% rename from icons-original/_fill/facebook.svg rename to icons-original/fill/facebook.svg diff --git a/icons-original/_fill/grid-view-1.svg b/icons-original/fill/grid-view-1.svg similarity index 100% rename from icons-original/_fill/grid-view-1.svg rename to icons-original/fill/grid-view-1.svg diff --git a/icons-original/_fill/grid-view-2.svg b/icons-original/fill/grid-view-2.svg similarity index 100% rename from icons-original/_fill/grid-view-2.svg rename to icons-original/fill/grid-view-2.svg diff --git a/icons-original/_fill/key-duplicate.svg b/icons-original/fill/key-duplicate.svg similarity index 100% rename from icons-original/_fill/key-duplicate.svg rename to icons-original/fill/key-duplicate.svg diff --git a/icons-original/_fill/list-fill.svg b/icons-original/fill/list-fill.svg similarity index 100% rename from icons-original/_fill/list-fill.svg rename to icons-original/fill/list-fill.svg diff --git a/icons-original/_fill/loupe-fill.svg b/icons-original/fill/loupe-fill.svg similarity index 100% rename from icons-original/_fill/loupe-fill.svg rename to icons-original/fill/loupe-fill.svg diff --git a/icons-original/_fill/palette-fill.svg b/icons-original/fill/palette-fill.svg similarity index 100% rename from icons-original/_fill/palette-fill.svg rename to icons-original/fill/palette-fill.svg diff --git a/icons-original/_fill/pause-fill.svg b/icons-original/fill/pause-fill.svg similarity index 100% rename from icons-original/_fill/pause-fill.svg rename to icons-original/fill/pause-fill.svg diff --git a/icons-original/_fill/play-fill.svg b/icons-original/fill/play-fill.svg similarity index 100% rename from icons-original/_fill/play-fill.svg rename to icons-original/fill/play-fill.svg diff --git a/icons-original/_fill/scissors.svg b/icons-original/fill/scissors.svg similarity index 100% rename from icons-original/_fill/scissors.svg rename to icons-original/fill/scissors.svg diff --git a/icons-original/mix/dicolor/check_box_empty.svg b/icons-original/mix/dicolor/check_box_empty.svg deleted file mode 100644 index f0ea55e9..00000000 --- a/icons-original/mix/dicolor/check_box_empty.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons-original/_weird/aftershoot-credit.svg b/icons-original/no-change/aftershoot-credit.svg similarity index 100% rename from icons-original/_weird/aftershoot-credit.svg rename to icons-original/no-change/aftershoot-credit.svg diff --git a/icons-original/_weird/google-color.svg b/icons-original/no-change/google-color.svg similarity index 100% rename from icons-original/_weird/google-color.svg rename to icons-original/no-change/google-color.svg diff --git a/icons-original/_weird/grab-hand.svg b/icons-original/no-change/grab-hand.svg similarity index 100% rename from icons-original/_weird/grab-hand.svg rename to icons-original/no-change/grab-hand.svg diff --git a/icons-original/_weird/logo.svg b/icons-original/no-change/logo.svg similarity index 100% rename from icons-original/_weird/logo.svg rename to icons-original/no-change/logo.svg diff --git a/package.json b/package.json index c1c77be5..ce481c3e 100644 --- a/package.json +++ b/package.json @@ -16,11 +16,11 @@ "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "o:svgs": "node ./scripts/optimizeSvgs.mjs", - "gen:metadata": "node ./scripts/writeSvgMetadata.mjs", + "gen:metadata": "node ./scripts/writeSvgMetadata.mjs --outpuDir ./icons-metadata", "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", - "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons remove:dir", + "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons", "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons-test && node ./scripts/removeDir.mjs --targetDir ./icons-optimized", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index 5ff22797..7b365521 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -14,6 +14,7 @@ const cliArguments = getArgumentOptions(process.argv.slice(2)) const currentDir = getCurrentDirPath(import.meta.url) const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') +const ICONS_META_DIR = path.resolve(currentDir, '../icons-metadata') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) @@ -28,10 +29,10 @@ const { renderUniqueKey = false, iconFileExtension = '.tsx', exportFileName = 'i async function buildIcons() { const svgFiles = readSvgDirectory(ICONS_DIR) - const svgMetada = readSvgMetadata(ICONS_DIR) + const svgMetada = readSvgMetadata(ICONS_META_DIR) const svgObjs = renderIconsObject(svgFiles, ICONS_DIR, renderUniqueKey) - const svgMetadata = renderMetadataObj(svgMetada, ICONS_DIR) + const svgMetadata = renderMetadataObj(svgMetada, ICONS_META_DIR) generateIconFiles({ outputFolderName: OUTPUT_FOLDER_NAME, diff --git a/scripts/exportStoryTemplate.mjs b/scripts/exportStoryTemplate.mjs index 422f1753..39a80c6c 100644 --- a/scripts/exportStoryTemplate.mjs +++ b/scripts/exportStoryTemplate.mjs @@ -41,6 +41,17 @@ export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing', ic ` : '' + const forMixDiTemplate = + iconType === 'mix-di' || iconType === 'no-change' + ? ` + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + ` + : `` + return `import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' @@ -78,6 +89,8 @@ export default ({ iconName, iconOutputFolderName, storyGroupName = 'testing', ic ${forColorTemplate} ${forMixTemplate} + ${forFillTemplate} + ${forMixDiTemplate} export const inActive: Story = { args: { diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index 9e044d00..a2acb9cc 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -21,7 +21,16 @@ export default async ({ outputFolderName, svgObjs, outputDirectory, template, ic } const writeIconFiles = svgs.map(async (svgName) => { + const outputDir = path.resolve(iconsDistDirectory, svgMetadata[svgName].icon_type) + + // if (!fs.existsSync(outputDir)) { + // fs.mkdirSync(outputDir, { recursive: true }) + // } + + // console.log('out dir', outputDir) + const location = path.join(iconsDistDirectory, `${svgName}${iconFileExtension}`) + const componentName = toPascalCase(svgName) let { attributes: originalAttributes, children } = svgObjs[svgName] diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index eaa7bc95..61865f36 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -13,6 +13,7 @@ async function optimizeSvg(svg, path, iconType) { outline: '(stroke|stroke-width)', fill: '(stroke-width)', mix: '(stroke-width)', + 'mix-di': '(stroke-width)', } const plugins = [ @@ -86,7 +87,7 @@ async function optimizeSvg(svg, path, iconType) { plugins.push(customPlugInUpdateStrokeValue) } - if (iconType === 'no-change') { + if (iconType === 'no-change' || iconType === 'accent') { return svg } diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs index 86ee10d9..b95b22e5 100644 --- a/scripts/writeSvgChildren.mjs +++ b/scripts/writeSvgChildren.mjs @@ -33,6 +33,8 @@ const writeSvgChildren = svgs.map(async (svgName) => { const output = stringify(childrenSvgGroup) + console.log('child--->', output) + await fs.promises.writeFile(location, output, 'utf-8') try { diff --git a/scripts/writeSvgMetadata.mjs b/scripts/writeSvgMetadata.mjs index 245fc3d2..347adeee 100644 --- a/scripts/writeSvgMetadata.mjs +++ b/scripts/writeSvgMetadata.mjs @@ -1,5 +1,7 @@ import fs from 'fs' +import getArgumentOptions from 'minimist' import path, { basename } from 'path' + import { getDirectories, readSvgDirectory } from './helpers.mjs' const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) @@ -8,13 +10,18 @@ const INPUT_ICON_DIR = UNICON_CONFIG.icon_input_dir const svgProcessOptions = UNICON_CONFIG.svg_process_options const ICONS_INPUT_BASE_PATH = path.resolve(process.cwd(), INPUT_ICON_DIR) -const OUTPUT_OPTIMIZED_ICONS_DIR = path.resolve(process.cwd(), 'icons-optimized') const ICON_DIRS = await getDirectories(ICONS_INPUT_BASE_PATH) +const cliArguments = getArgumentOptions(process.argv.slice(2)) + +const { outpuDir = '/icons-metadata' } = cliArguments + +const OUTPUT_DIR = path.resolve(process.cwd(), outpuDir) + // Ensure the optimized directory exists -if (!fs.existsSync(OUTPUT_OPTIMIZED_ICONS_DIR)) { - fs.mkdirSync(OUTPUT_OPTIMIZED_ICONS_DIR, { recursive: true }) +if (!fs.existsSync(OUTPUT_DIR)) { + fs.mkdirSync(OUTPUT_DIR, { recursive: true }) } console.log(`Writing Metadata...`) @@ -42,7 +49,7 @@ const writeFiles = async () => { const content = JSON.stringify(svgJSON, null, 2) const jsonName = baseName + '.json' - fs.writeFileSync(path.join(OUTPUT_OPTIMIZED_ICONS_DIR, jsonName), content, 'utf-8') + fs.writeFileSync(path.join(OUTPUT_DIR, jsonName), content, 'utf-8') } } } diff --git a/src/Icon.ts b/src/Icon.ts index 2e40b069..5670dd94 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -7,6 +7,7 @@ interface IconComponentProps extends ASIProps { originalAttributes: any svgChildren: any svgType: string + accentColor?: string } /** @@ -18,15 +19,16 @@ interface IconComponentProps extends ASIProps { const Icon = forwardRef( ( { + originalAttributes, color = 'currentColor', size, inActive = false, fillColor = 'none', className, children, - originalAttributes, svgChildren, svgType, + accentColor, ...rest }, ref, @@ -40,6 +42,7 @@ const Icon = forwardRef( ...(svgType === 'outline' && { stroke: inActive ? '#777777' : color }), ...(size ? { style: { width: size, height: 'auto' } } : {}), fill: fillColor, + accentColor, className: cn( `w-[24px] h-[24px] shrink-0 `, svgType === 'outline' && 'stroke-[1.5px]', diff --git a/src/icons-test/Crown Play.tsx b/src/icons-test/Crown Play.tsx deleted file mode 100644 index 7fcb0810..00000000 --- a/src/icons-test/Crown Play.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CrownPlay = createASIcon( - "CrownPlay", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "mix", -); - -export default CrownPlay; diff --git a/src/icons-test/alert-circle-fill.tsx b/src/icons-test/alert-circle-fill.tsx new file mode 100644 index 00000000..fb0ec39d --- /dev/null +++ b/src/icons-test/alert-circle-fill.tsx @@ -0,0 +1,44 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertCircleFill = createASIcon( + "AlertCircleFill", + { + width: "21", + height: "20", + viewBox: "0 0 21 20", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + , + "accent", +); + +export default AlertCircleFill; diff --git a/src/icons-test/alert-triangle-fill.tsx b/src/icons-test/alert-triangle-fill.tsx new file mode 100644 index 00000000..5f202f32 --- /dev/null +++ b/src/icons-test/alert-triangle-fill.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertTriangleFill = createASIcon( + "AlertTriangleFill", + { + width: "54", + height: "46", + viewBox: "0 0 54 46", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default AlertTriangleFill; diff --git a/src/icons-test/atom-di.tsx b/src/icons-test/atom-di.tsx new file mode 100644 index 00000000..1f3a183d --- /dev/null +++ b/src/icons-test/atom-di.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AtomDi = createASIcon( + "AtomDi", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + , + "accent", +); + +export default AtomDi; diff --git a/src/icons-test/check_box_empty.tsx b/src/icons-test/check_box_empty.tsx new file mode 100644 index 00000000..5f943d48 --- /dev/null +++ b/src/icons-test/check_box_empty.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckBoxEmpty = createASIcon( + "CheckBoxEmpty", + { + width: "16", + height: "16", + viewBox: "0 0 16 16", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default CheckBoxEmpty; diff --git a/src/icons-test/collection.tsx b/src/icons-test/collection.tsx deleted file mode 100644 index ebd6d755..00000000 --- a/src/icons-test/collection.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Collection = createASIcon( - "Collection", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 25 24", - }, - - - - - - - - - - - , - "mix", -); - -export default Collection; diff --git a/src/icons-test/flag-fill.tsx b/src/icons-test/flag-fill.tsx deleted file mode 100644 index d454a466..00000000 --- a/src/icons-test/flag-fill.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FlagFill = createASIcon( - "FlagFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 20 20", - }, - - - - - - - - - - - , - "mix", -); - -export default FlagFill; diff --git a/src/icons-test/folder-fill.tsx b/src/icons-test/folder-fill.tsx deleted file mode 100644 index e9cf822e..00000000 --- a/src/icons-test/folder-fill.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderFill = createASIcon( - "FolderFill", - { - width: "24", - height: "24", - viewBox: "0 0 24 24", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - - - - - - - - , - "no-change", -); - -export default FolderFill; diff --git a/src/icons-test/home-mix.tsx b/src/icons-test/home-mix.tsx deleted file mode 100644 index 35221a70..00000000 --- a/src/icons-test/home-mix.tsx +++ /dev/null @@ -1,58 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const HomeMix = createASIcon( - "HomeMix", - { - width: "21", - height: "20", - viewBox: "0 0 21 20", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - - - - - - , - "no-change", -); - -export default HomeMix; diff --git a/src/icons-test/image-border.tsx b/src/icons-test/image-border.tsx deleted file mode 100644 index 3d26e1e8..00000000 --- a/src/icons-test/image-border.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ImageBorder = createASIcon( - "ImageBorder", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "mix", -); - -export default ImageBorder; diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts index b7709176..d65d950e 100644 --- a/src/icons-test/index.ts +++ b/src/icons-test/index.ts @@ -1,17 +1,14 @@ -export { default as CrownPlay } from './Crown Play'; -export { default as Collection } from './collection'; -export { default as FlagFill } from './flag-fill'; -export { default as FolderFill } from './folder-fill'; -export { default as HomeMix } from './home-mix'; -export { default as ImageBorder } from './image-border'; -export { default as LayoutSidebarRightMix } from './layout-sidebar-right-mix'; -export { default as MouseLeft2 } from './mouse-left-2'; -export { default as NoneSelected } from './none-selected'; -export { default as Recull } from './recull'; -export { default as Scissors } from './scissors'; -export { default as Sparkle } from './sparkle'; -export { default as StarFillOff } from './star-fill-off'; -export { default as StarFill } from './star-fill'; -export { default as UploadC1Cat } from './upload-c1-cat'; -export { default as UploadLrCat } from './upload-lr-cat'; +export { default as AlertCircleFill } from './alert-circle-fill'; +export { default as AlertTriangleFill } from './alert-triangle-fill'; +export { default as AtomDi } from './atom-di'; +export { default as CheckBoxEmpty } from './check_box_empty'; +export { default as NoDuplicate } from './no-duplicate'; +export { default as PlayDi } from './play-di'; +export { default as Star0 } from './star - 0'; +export { default as Star1 } from './star - 1'; +export { default as Star2 } from './star - 2'; +export { default as Star3 } from './star - 3'; +export { default as Star4 } from './star - 4'; +export { default as Star5 } from './star - 5'; +export { default as SuccessDi } from './success-di'; diff --git a/src/icons-test/layout-sidebar-right-mix.tsx b/src/icons-test/layout-sidebar-right-mix.tsx deleted file mode 100644 index 5b2432df..00000000 --- a/src/icons-test/layout-sidebar-right-mix.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LayoutSidebarRightMix = createASIcon( - "LayoutSidebarRightMix", - { - width: "24", - height: "24", - viewBox: "0 0 24 24", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - , - "no-change", -); - -export default LayoutSidebarRightMix; diff --git a/src/icons-test/mouse-left-2.tsx b/src/icons-test/mouse-left-2.tsx deleted file mode 100644 index 89792e97..00000000 --- a/src/icons-test/mouse-left-2.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MouseLeft2 = createASIcon( - "MouseLeft2", - { - width: "48", - height: "48", - viewBox: "0 0 48 48", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - , - "no-change", -); - -export default MouseLeft2; diff --git a/src/icons-test/no-duplicate.tsx b/src/icons-test/no-duplicate.tsx new file mode 100644 index 00000000..07c6e0fa --- /dev/null +++ b/src/icons-test/no-duplicate.tsx @@ -0,0 +1,44 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const NoDuplicate = createASIcon( + "NoDuplicate", + { + width: "32", + height: "32", + viewBox: "0 0 32 32", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + "stroke-width": "1", + }, + + + + + + , + "accent", +); + +export default NoDuplicate; diff --git a/src/icons-test/none-selected.tsx b/src/icons-test/none-selected.tsx deleted file mode 100644 index ce189361..00000000 --- a/src/icons-test/none-selected.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const NoneSelected = createASIcon( - "NoneSelected", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , - "mix", -); - -export default NoneSelected; diff --git a/src/icons-test/play-di.tsx b/src/icons-test/play-di.tsx new file mode 100644 index 00000000..30a3693f --- /dev/null +++ b/src/icons-test/play-di.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PlayDi = createASIcon( + "PlayDi", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default PlayDi; diff --git a/src/icons-test/recull.tsx b/src/icons-test/recull.tsx deleted file mode 100644 index 0c8e2139..00000000 --- a/src/icons-test/recull.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Recull = createASIcon( - "Recull", - { - width: "46", - height: "46", - viewBox: "0 0 46 46", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - , - "no-change", -); - -export default Recull; diff --git a/src/icons-test/scissors.tsx b/src/icons-test/scissors.tsx deleted file mode 100644 index 30785a61..00000000 --- a/src/icons-test/scissors.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Scissors = createASIcon( - "Scissors", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - - - , - "no-change", -); - -export default Scissors; diff --git a/src/icons-test/sparkle.tsx b/src/icons-test/sparkle.tsx deleted file mode 100644 index adf3710d..00000000 --- a/src/icons-test/sparkle.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Sparkle = createASIcon( - "Sparkle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , - "mix", -); - -export default Sparkle; diff --git a/src/icons-test/star - 0.tsx b/src/icons-test/star - 0.tsx new file mode 100644 index 00000000..3a19c307 --- /dev/null +++ b/src/icons-test/star - 0.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star0 = createASIcon( + "Star0", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star0; diff --git a/src/icons-test/star - 1.tsx b/src/icons-test/star - 1.tsx new file mode 100644 index 00000000..e95adb68 --- /dev/null +++ b/src/icons-test/star - 1.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star1 = createASIcon( + "Star1", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star1; diff --git a/src/icons-test/star - 2.tsx b/src/icons-test/star - 2.tsx new file mode 100644 index 00000000..6379c5af --- /dev/null +++ b/src/icons-test/star - 2.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star2 = createASIcon( + "Star2", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star2; diff --git a/src/icons-test/star - 3.tsx b/src/icons-test/star - 3.tsx new file mode 100644 index 00000000..941ec522 --- /dev/null +++ b/src/icons-test/star - 3.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star3 = createASIcon( + "Star3", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star3; diff --git a/src/icons-test/star - 4.tsx b/src/icons-test/star - 4.tsx new file mode 100644 index 00000000..baa90a2e --- /dev/null +++ b/src/icons-test/star - 4.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star4 = createASIcon( + "Star4", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star4; diff --git a/src/icons-test/star - 5.tsx b/src/icons-test/star - 5.tsx new file mode 100644 index 00000000..8313aa74 --- /dev/null +++ b/src/icons-test/star - 5.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star5 = createASIcon( + "Star5", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + , + "accent", +); + +export default Star5; diff --git a/src/icons-test/star-fill-off.tsx b/src/icons-test/star-fill-off.tsx deleted file mode 100644 index e4ccef52..00000000 --- a/src/icons-test/star-fill-off.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StarFillOff = createASIcon( - "StarFillOff", - { - width: "24", - height: "24", - viewBox: "0 0 24 24", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - }, - - - - - - - - - , - "no-change", -); - -export default StarFillOff; diff --git a/src/icons-test/star-fill.tsx b/src/icons-test/star-fill.tsx deleted file mode 100644 index 551f7e45..00000000 --- a/src/icons-test/star-fill.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StarFill = createASIcon( - "StarFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 38 38", - }, - - - , - "mix", -); - -export default StarFill; diff --git a/src/icons-test/success-di.tsx b/src/icons-test/success-di.tsx new file mode 100644 index 00000000..71e4b646 --- /dev/null +++ b/src/icons-test/success-di.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SuccessDi = createASIcon( + "SuccessDi", + { + width: "38", + height: "38", + viewBox: "0 0 38 38", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default SuccessDi; diff --git a/src/icons-test/upload-c1-cat.tsx b/src/icons-test/upload-c1-cat.tsx deleted file mode 100644 index 1efa954a..00000000 --- a/src/icons-test/upload-c1-cat.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UploadC1Cat = createASIcon( - "UploadC1Cat", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - - - - - - , - "mix", -); - -export default UploadC1Cat; diff --git a/src/icons-test/upload-lr-cat.tsx b/src/icons-test/upload-lr-cat.tsx deleted file mode 100644 index 1d85f484..00000000 --- a/src/icons-test/upload-lr-cat.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UploadLrCat = createASIcon( - "UploadLrCat", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - - - - - - , - "mix", -); - -export default UploadLrCat; diff --git a/src/stories/AlertCircleFill.stories.tsx b/src/stories/AlertCircleFill.stories.tsx new file mode 100644 index 00000000..a2ca12c3 --- /dev/null +++ b/src/stories/AlertCircleFill.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertCircleFill from '../icons-test/alert-circle-fill' + + const meta: Meta = { + component: AlertCircleFill, + title: 'accent/AlertCircleFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangleFill.stories.tsx b/src/stories/AlertTriangleFill.stories.tsx new file mode 100644 index 00000000..f20b4b18 --- /dev/null +++ b/src/stories/AlertTriangleFill.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertTriangleFill from '../icons-test/alert-triangle-fill' + + const meta: Meta = { + component: AlertTriangleFill, + title: 'accent/AlertTriangleFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Scissors.stories.tsx b/src/stories/AtomDi.stories.tsx similarity index 86% rename from src/stories/Scissors.stories.tsx rename to src/stories/AtomDi.stories.tsx index e35c477b..5f8ef7db 100644 --- a/src/stories/Scissors.stories.tsx +++ b/src/stories/AtomDi.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Scissors from '../icons-test/scissors' + import AtomDi from '../icons-test/atom-di' - const meta: Meta = { - component: Scissors, - title: 'no-change/Scissors', + const meta: Meta = { + component: AtomDi, + title: 'accent/AtomDi', decorators: [ (Story) => (
@@ -29,18 +29,20 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } + + export const inActive: Story = { args: { diff --git a/src/stories/CheckBoxEmpty.stories.tsx b/src/stories/CheckBoxEmpty.stories.tsx new file mode 100644 index 00000000..a091308d --- /dev/null +++ b/src/stories/CheckBoxEmpty.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckBoxEmpty from '../icons-test/check_box_empty' + + const meta: Meta = { + component: CheckBoxEmpty, + title: 'accent/CheckBoxEmpty', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Collection.stories.tsx b/src/stories/Collection.stories.tsx deleted file mode 100644 index 74e20921..00000000 --- a/src/stories/Collection.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Collection from '../icons-test/collection' - - const meta: Meta = { - component: Collection, - title: 'mix/Collection', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CrownPlay.stories.tsx b/src/stories/CrownPlay.stories.tsx deleted file mode 100644 index aeebac4b..00000000 --- a/src/stories/CrownPlay.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CrownPlay from '../icons-test/Crown Play' - - const meta: Meta = { - component: CrownPlay, - title: 'mix/CrownPlay', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FlagFill.stories.tsx b/src/stories/FlagFill.stories.tsx deleted file mode 100644 index cba1c1eb..00000000 --- a/src/stories/FlagFill.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FlagFill from '../icons-test/flag-fill' - - const meta: Meta = { - component: FlagFill, - title: 'mix/FlagFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ImageBorder.stories.tsx b/src/stories/ImageBorder.stories.tsx deleted file mode 100644 index d0c814d4..00000000 --- a/src/stories/ImageBorder.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ImageBorder from '../icons-test/image-border' - - const meta: Meta = { - component: ImageBorder, - title: 'mix/ImageBorder', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LayoutSidebarRightMix.stories.tsx b/src/stories/LayoutSidebarRightMix.stories.tsx deleted file mode 100644 index 0f5767ff..00000000 --- a/src/stories/LayoutSidebarRightMix.stories.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LayoutSidebarRightMix from '../icons-test/layout-sidebar-right-mix' - - const meta: Meta = { - component: LayoutSidebarRightMix, - title: 'no-change/LayoutSidebarRightMix', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/NoDuplicate.stories.tsx b/src/stories/NoDuplicate.stories.tsx new file mode 100644 index 00000000..a82236a7 --- /dev/null +++ b/src/stories/NoDuplicate.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoDuplicate from '../icons-test/no-duplicate' + + const meta: Meta = { + component: NoDuplicate, + title: 'accent/NoDuplicate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/NoneSelected.stories.tsx b/src/stories/NoneSelected.stories.tsx deleted file mode 100644 index b433c17f..00000000 --- a/src/stories/NoneSelected.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import NoneSelected from '../icons-test/none-selected' - - const meta: Meta = { - component: NoneSelected, - title: 'mix/NoneSelected', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderFill.stories.tsx b/src/stories/PlayDi.stories.tsx similarity index 86% rename from src/stories/FolderFill.stories.tsx rename to src/stories/PlayDi.stories.tsx index 1459efae..56979c1a 100644 --- a/src/stories/FolderFill.stories.tsx +++ b/src/stories/PlayDi.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderFill from '../icons-test/folder-fill' + import PlayDi from '../icons-test/play-di' - const meta: Meta = { - component: FolderFill, - title: 'no-change/FolderFill', + const meta: Meta = { + component: PlayDi, + title: 'accent/PlayDi', decorators: [ (Story) => (
@@ -29,18 +29,20 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } + + export const inActive: Story = { args: { diff --git a/src/stories/Sparkle.stories.tsx b/src/stories/Sparkle.stories.tsx deleted file mode 100644 index 8489b682..00000000 --- a/src/stories/Sparkle.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Sparkle from '../icons-test/sparkle' - - const meta: Meta = { - component: Sparkle, - title: 'mix/Sparkle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Recull.stories.tsx b/src/stories/Star0.stories.tsx similarity index 87% rename from src/stories/Recull.stories.tsx rename to src/stories/Star0.stories.tsx index 1dbea36f..81d17e20 100644 --- a/src/stories/Recull.stories.tsx +++ b/src/stories/Star0.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Recull from '../icons-test/recull' + import Star0 from '../icons-test/star - 0' - const meta: Meta = { - component: Recull, - title: 'no-change/Recull', + const meta: Meta = { + component: Star0, + title: 'accent/Star0', decorators: [ (Story) => (
@@ -29,18 +29,20 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } + + export const inActive: Story = { args: { diff --git a/src/stories/HomeMix.stories.tsx b/src/stories/Star1.stories.tsx similarity index 87% rename from src/stories/HomeMix.stories.tsx rename to src/stories/Star1.stories.tsx index e9bc8399..a6b535c8 100644 --- a/src/stories/HomeMix.stories.tsx +++ b/src/stories/Star1.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import HomeMix from '../icons-test/home-mix' + import Star1 from '../icons-test/star - 1' - const meta: Meta = { - component: HomeMix, - title: 'no-change/HomeMix', + const meta: Meta = { + component: Star1, + title: 'accent/Star1', decorators: [ (Story) => (
@@ -29,18 +29,20 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } + + export const inActive: Story = { args: { diff --git a/src/stories/Star2.stories.tsx b/src/stories/Star2.stories.tsx new file mode 100644 index 00000000..ed98227d --- /dev/null +++ b/src/stories/Star2.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star2 from '../icons-test/star - 2' + + const meta: Meta = { + component: Star2, + title: 'accent/Star2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star3.stories.tsx b/src/stories/Star3.stories.tsx new file mode 100644 index 00000000..a5761181 --- /dev/null +++ b/src/stories/Star3.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star3 from '../icons-test/star - 3' + + const meta: Meta = { + component: Star3, + title: 'accent/Star3', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star4.stories.tsx b/src/stories/Star4.stories.tsx new file mode 100644 index 00000000..f95f114f --- /dev/null +++ b/src/stories/Star4.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star4 from '../icons-test/star - 4' + + const meta: Meta = { + component: Star4, + title: 'accent/Star4', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star5.stories.tsx b/src/stories/Star5.stories.tsx new file mode 100644 index 00000000..e353f0ef --- /dev/null +++ b/src/stories/Star5.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star5 from '../icons-test/star - 5' + + const meta: Meta = { + component: Star5, + title: 'accent/Star5', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarFill.stories.tsx b/src/stories/StarFill.stories.tsx deleted file mode 100644 index 5ce22284..00000000 --- a/src/stories/StarFill.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarFill from '../icons-test/star-fill' - - const meta: Meta = { - component: StarFill, - title: 'mix/StarFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/StarFillOff.stories.tsx b/src/stories/StarFillOff.stories.tsx deleted file mode 100644 index 00adfb7e..00000000 --- a/src/stories/StarFillOff.stories.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarFillOff from '../icons-test/star-fill-off' - - const meta: Meta = { - component: StarFillOff, - title: 'no-change/StarFillOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MouseLeft2.stories.tsx b/src/stories/SuccessDi.stories.tsx similarity index 86% rename from src/stories/MouseLeft2.stories.tsx rename to src/stories/SuccessDi.stories.tsx index 8ff88415..348580b0 100644 --- a/src/stories/MouseLeft2.stories.tsx +++ b/src/stories/SuccessDi.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MouseLeft2 from '../icons-test/mouse-left-2' + import SuccessDi from '../icons-test/success-di' - const meta: Meta = { - component: MouseLeft2, - title: 'no-change/MouseLeft2', + const meta: Meta = { + component: SuccessDi, + title: 'accent/SuccessDi', decorators: [ (Story) => (
@@ -29,18 +29,20 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} - export const Red: Story = { + export const Color: Story = { args: { className: 'text-red-500', }, } + + export const inActive: Story = { args: { diff --git a/src/stories/UploadC1Cat.stories.tsx b/src/stories/UploadC1Cat.stories.tsx deleted file mode 100644 index 7af9147a..00000000 --- a/src/stories/UploadC1Cat.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UploadC1Cat from '../icons-test/upload-c1-cat' - - const meta: Meta = { - component: UploadC1Cat, - title: 'mix/UploadC1Cat', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UploadLrCat.stories.tsx b/src/stories/UploadLrCat.stories.tsx deleted file mode 100644 index fc662d20..00000000 --- a/src/stories/UploadLrCat.stories.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UploadLrCat from '../icons-test/upload-lr-cat' - - const meta: Meta = { - component: UploadLrCat, - title: 'mix/UploadLrCat', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Red: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/svg-children/alert-circle-fill.svg b/svg-children/alert-circle-fill.svg new file mode 100644 index 00000000..e2d6ded4 --- /dev/null +++ b/svg-children/alert-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/alert-triangle-fill.svg b/svg-children/alert-triangle-fill.svg new file mode 100644 index 00000000..fef069c5 --- /dev/null +++ b/svg-children/alert-triangle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/atom-di.svg b/svg-children/atom-di.svg new file mode 100644 index 00000000..7c510e69 --- /dev/null +++ b/svg-children/atom-di.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/check_box_empty.svg b/svg-children/check_box_empty.svg new file mode 100644 index 00000000..991dd4f0 --- /dev/null +++ b/svg-children/check_box_empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/no-duplicate.svg b/svg-children/no-duplicate.svg new file mode 100644 index 00000000..25d55f9d --- /dev/null +++ b/svg-children/no-duplicate.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/svg-children/play-di.svg b/svg-children/play-di.svg new file mode 100644 index 00000000..8b7e7e11 --- /dev/null +++ b/svg-children/play-di.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 0.svg b/svg-children/star - 0.svg new file mode 100644 index 00000000..7c184b5f --- /dev/null +++ b/svg-children/star - 0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 1.svg b/svg-children/star - 1.svg new file mode 100644 index 00000000..4327073c --- /dev/null +++ b/svg-children/star - 1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 2.svg b/svg-children/star - 2.svg new file mode 100644 index 00000000..57ff2acd --- /dev/null +++ b/svg-children/star - 2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 3.svg b/svg-children/star - 3.svg new file mode 100644 index 00000000..84d41cea --- /dev/null +++ b/svg-children/star - 3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 4.svg b/svg-children/star - 4.svg new file mode 100644 index 00000000..880b6302 --- /dev/null +++ b/svg-children/star - 4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/star - 5.svg b/svg-children/star - 5.svg new file mode 100644 index 00000000..81d23cb9 --- /dev/null +++ b/svg-children/star - 5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg-children/success-di.svg b/svg-children/success-di.svg new file mode 100644 index 00000000..fe0d39b9 --- /dev/null +++ b/svg-children/success-di.svg @@ -0,0 +1 @@ + \ No newline at end of file From 91ddb5e188709d62cfe5dd1b4b4ce00ab9f69b37 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Mon, 3 Jun 2024 17:21:14 +0530 Subject: [PATCH 26/34] generate icons --- icons-metadata/Import.json | 9 + icons-metadata/adjustments-horizontal.json | 9 + icons-metadata/adjustments.json | 9 + icons-metadata/aftershoot-credit.json | 4 + icons-metadata/aftershoot-logo.json | 7 + icons-metadata/alarm.json | 9 + icons-metadata/alert-circle-accent.json | 4 + icons-metadata/alert-circle-fill.json | 4 - icons-metadata/alert-circle.json | 9 + icons-metadata/alert-octagon.json | 9 + icons-metadata/alert-triangle-accent.json | 4 + icons-metadata/alert-triangle-fill.json | 4 - icons-metadata/alert-triangle.json | 9 + icons-metadata/apple.json | 7 + icons-metadata/arrow-curve-fill.json | 7 + icons-metadata/arrow-down.json | 9 + icons-metadata/arrow-left.json | 9 + icons-metadata/arrow-narrow-left.json | 9 + icons-metadata/arrow-narrow-right.json | 9 + icons-metadata/arrow-right.json | 9 + icons-metadata/arrow-sort-2.json | 9 + icons-metadata/arrow-up.json | 9 + icons-metadata/arrows-diagonal.json | 9 + icons-metadata/arrows-sort.json | 9 + .../{atom-di.json => atom-accent.json} | 2 +- icons-metadata/atom.json | 9 + icons-metadata/ban.json | 9 + icons-metadata/bell-minus.json | 9 + icons-metadata/bell-off.json | 9 + icons-metadata/bell-plus.json | 9 + icons-metadata/bell-ringing-2.json | 9 + icons-metadata/bell-ringing.json | 9 + icons-metadata/bell-x.json | 9 + icons-metadata/bell.json | 9 + icons-metadata/brand-facebook.json | 9 + icons-metadata/brand-github.json | 9 + icons-metadata/brand-instagram.json | 9 + icons-metadata/brand-twitter.json | 9 + icons-metadata/brand-whatsapp.json | 9 + icons-metadata/brand-youtube.json | 9 + icons-metadata/bulb-off.json | 9 + icons-metadata/bulb.json | 9 + icons-metadata/check-box-empty.json | 9 + icons-metadata/check.json | 9 + icons-metadata/checkbox-blue-accent.json | 4 + icons-metadata/checkbox-green-accent.json | 4 + .../checkbox-partial-blue-accent.json | 4 + icons-metadata/chevron-down.json | 9 + icons-metadata/chevron-left.json | 9 + icons-metadata/chevron-right.json | 9 + icons-metadata/chevron-up.json | 9 + icons-metadata/chevrons-left.json | 9 + icons-metadata/chevrons-right.json | 9 + icons-metadata/circle-check-2.json | 9 + icons-metadata/circle-check.json | 9 + icons-metadata/circle-cross-accent.json | 4 + icons-metadata/circle-fill.json | 7 + icons-metadata/circle.json | 9 + icons-metadata/clock.json | 9 + icons-metadata/cloud-upload-accent.json | 4 + icons-metadata/cloud-upload.json | 9 + icons-metadata/collection.json | 9 + icons-metadata/color-swatch.json | 9 + icons-metadata/confetti.json | 9 + icons-metadata/copy.json | 9 + icons-metadata/crown-2-fill.json | 7 + icons-metadata/crown.json | 9 + icons-metadata/currency-dollar.json | 9 + icons-metadata/current-location.json | 9 + icons-metadata/device-desktop-analytics.json | 9 + icons-metadata/device-desktop-off.json | 9 + icons-metadata/device-desktop.json | 9 + icons-metadata/device-laptop.json | 9 + icons-metadata/device-tv.json | 9 + icons-metadata/diamond.json | 9 + icons-metadata/discount-2.json | 9 + icons-metadata/discount.json | 9 + icons-metadata/disk.json | 9 + icons-metadata/dots-vertical.json | 9 + ...ck_box_empty.json => download-accent.json} | 2 +- icons-metadata/download.json | 9 + icons-metadata/edit-icon.json | 4 + icons-metadata/edit.json | 9 + icons-metadata/external-link.json | 9 + icons-metadata/eye-check.json | 9 + icons-metadata/eye-off.json | 9 + icons-metadata/eye.json | 9 + icons-metadata/facebook.json | 7 + icons-metadata/file-download.json | 9 + icons-metadata/file-export.json | 9 + icons-metadata/file-report.json | 9 + icons-metadata/file-search.json | 9 + icons-metadata/filter-off.json | 9 + icons-metadata/filter.json | 9 + icons-metadata/flag-fill.json | 9 + icons-metadata/flag-off.json | 9 + icons-metadata/flag.json | 9 + icons-metadata/folder-download.json | 9 + icons-metadata/folder-eye.json | 9 + icons-metadata/folder-fill.json | 4 + icons-metadata/folder-minus.json | 9 + icons-metadata/folder-off.json | 9 + icons-metadata/folder-plus.json | 9 + icons-metadata/folder-upload.json | 9 + icons-metadata/folder-x.json | 9 + icons-metadata/folder.json | 9 + icons-metadata/folders.json | 9 + icons-metadata/google-color.json | 4 + icons-metadata/grab-hand.json | 4 + icons-metadata/grid-dots.json | 9 + icons-metadata/grid-view-1.json | 7 + icons-metadata/grid-view-2.json | 7 + icons-metadata/home-2.json | 9 + icons-metadata/home-mix.json | 4 + icons-metadata/image-border.json | 9 + icons-metadata/info-circle.json | 9 + icons-metadata/info-cirlce-2.json | 9 + icons-metadata/info-square.json | 9 + icons-metadata/info.json | 9 + icons-metadata/key-2.json | 9 + icons-metadata/key-duplicate.json | 9 + icons-metadata/key.json | 9 + icons-metadata/layout-sidebar-right-mix.json | 4 + icons-metadata/link.json | 9 + icons-metadata/list-fill.json | 7 + icons-metadata/loader.json | 9 + icons-metadata/lock-2.json | 9 + icons-metadata/lock-off.json | 9 + icons-metadata/lock-open.json | 9 + icons-metadata/lock.json | 9 + icons-metadata/loop.json | 9 + icons-metadata/loupe-fill.json | 7 + icons-metadata/mail.json | 9 + icons-metadata/map-2.json | 9 + icons-metadata/map-pin-off.json | 9 + icons-metadata/map-pin.json | 9 + icons-metadata/minus.json | 9 + icons-metadata/mood-crazy-happy.json | 9 + icons-metadata/mood-empty.json | 9 + icons-metadata/mood-gray.json | 4 + icons-metadata/mood-sad.json | 9 + icons-metadata/mood-smile.json | 9 + icons-metadata/mood.json | 4 + icons-metadata/mouse-left-2.json | 4 + icons-metadata/mouse-left.json | 9 + icons-metadata/mouse-right.json | 9 + icons-metadata/no-duplicate.json | 9 +- icons-metadata/none-selected.json | 9 + icons-metadata/palette-fill.json | 7 + icons-metadata/palette.json | 9 + icons-metadata/pause-fill.json | 7 + icons-metadata/photo-off-2.json | 9 + icons-metadata/photo-off.json | 9 + icons-metadata/photo-stack.json | 9 + icons-metadata/photo.json | 9 + icons-metadata/pinned.json | 9 + icons-metadata/play-fill.json | 7 + icons-metadata/play.json | 9 + icons-metadata/{play-di.json => player.json} | 2 +- icons-metadata/plus.json | 9 + icons-metadata/question-mark.json | 9 + icons-metadata/recull.json | 4 + icons-metadata/redeem.json | 9 + icons-metadata/refresh-2.json | 9 + icons-metadata/refresh-alert.json | 9 + icons-metadata/refresh.json | 9 + icons-metadata/reload-alert.json | 9 + icons-metadata/rotate-clockwise.json | 9 + icons-metadata/rotate.json | 9 + icons-metadata/scissors.json | 4 + icons-metadata/search.json | 9 + icons-metadata/share.json | 9 + icons-metadata/shopping-cart-discount.json | 9 + icons-metadata/shopping-cart.json | 9 + icons-metadata/sort-ascending-2.json | 9 + icons-metadata/sort-ascending-letters.json | 9 + icons-metadata/sort-ascending-numbers.json | 9 + icons-metadata/sort-ascending.json | 9 + icons-metadata/sort-descending-2.json | 9 + icons-metadata/sort-descending-letters.json | 9 + icons-metadata/sort-descending-numbers.json | 9 + icons-metadata/sort-descending.json | 9 + icons-metadata/sparkle.json | 9 + icons-metadata/spray.json | 9 + icons-metadata/spray_2.json | 9 + icons-metadata/stack-double.json | 9 + icons-metadata/stack-triple.json | 9 + icons-metadata/star-fill-off.json | 4 + icons-metadata/star-fill.json | 9 + icons-metadata/star-off.json | 9 + icons-metadata/star.json | 9 + icons-metadata/thumb-down.json | 9 + icons-metadata/thumb-up.json | 9 + icons-metadata/trash-off.json | 9 + icons-metadata/trash.json | 9 + icons-metadata/unlink.json | 9 + icons-metadata/upload-2.json | 9 + icons-metadata/upload-accent.json | 4 + icons-metadata/upload-c1-cat.json | 9 + icons-metadata/upload-lr-cat.json | 9 + icons-metadata/upload.json | 9 + icons-metadata/user-check.json | 9 + icons-metadata/user-exclamation.json | 9 + icons-metadata/user-minus.json | 9 + icons-metadata/user-off.json | 9 + icons-metadata/user-plus.json | 9 + icons-metadata/user-x.json | 9 + icons-metadata/user.json | 9 + icons-metadata/users.json | 9 + icons-metadata/view-all.json | 9 + icons-metadata/viewfinder.json | 9 + icons-metadata/wifi-1.json | 9 + icons-metadata/wifi-2.json | 9 + icons-metadata/wifi-off.json | 9 + icons-metadata/wifi.json | 9 + icons-metadata/world.json | 9 + icons-metadata/writing.json | 9 + icons-metadata/x.json | 9 + icons-metadata/zoom-in.json | 9 + icons-metadata/zoom-out.json | 9 + icons-metadata/zoom-question.json | 9 + icons-optimized/Import.svg | 12 + icons-optimized/adjustments-horizontal.svg | 18 ++ icons-optimized/adjustments.svg | 18 ++ icons-optimized/aftershoot-credit.svg | 40 ++++ icons-optimized/aftershoot-logo.svg | 6 + icons-optimized/alarm.svg | 13 + ...ircle-fill.svg => alert-circle-accent.svg} | 0 icons-optimized/alert-circle.svg | 12 + icons-optimized/alert-octagon.svg | 12 + ...gle-fill.svg => alert-triangle-accent.svg} | 0 icons-optimized/alert-triangle.svg | 11 + icons-optimized/apple.svg | 6 + icons-optimized/arrow-curve-fill.svg | 6 + icons-optimized/arrow-down.svg | 12 + icons-optimized/arrow-left.svg | 12 + icons-optimized/arrow-narrow-left.svg | 12 + icons-optimized/arrow-narrow-right.svg | 12 + icons-optimized/arrow-right.svg | 12 + icons-optimized/arrow-sort-2.svg | 7 + icons-optimized/arrow-up.svg | 12 + icons-optimized/arrows-diagonal.svg | 13 + icons-optimized/arrows-sort.svg | 11 + .../{atom-di.svg => atom-accent.svg} | 2 +- icons-optimized/atom.svg | 12 + icons-optimized/ban.svg | 11 + icons-optimized/bell-minus.svg | 12 + icons-optimized/bell-off.svg | 12 + icons-optimized/bell-plus.svg | 13 + icons-optimized/bell-ringing-2.svg | 11 + icons-optimized/bell-ringing.svg | 13 + icons-optimized/bell-x.svg | 12 + icons-optimized/bell.svg | 11 + icons-optimized/brand-facebook.svg | 14 ++ icons-optimized/brand-github.svg | 14 ++ icons-optimized/brand-instagram.svg | 12 + icons-optimized/brand-twitter.svg | 14 ++ icons-optimized/brand-whatsapp.svg | 11 + icons-optimized/brand-youtube.svg | 11 + icons-optimized/bulb-off.svg | 11 + icons-optimized/bulb.svg | 12 + icons-optimized/check-box-empty.svg | 4 + icons-optimized/check.svg | 10 + icons-optimized/check_box_empty.svg | 18 -- icons-optimized/checkbox-blue-accent.svg | 25 ++ icons-optimized/checkbox-green-accent.svg | 25 ++ .../checkbox-partial-blue-accent.svg | 26 ++ icons-optimized/chevron-down.svg | 10 + icons-optimized/chevron-left.svg | 10 + icons-optimized/chevron-right.svg | 10 + icons-optimized/chevron-up.svg | 10 + icons-optimized/chevrons-left.svg | 11 + icons-optimized/chevrons-right.svg | 11 + icons-optimized/circle-check-2.svg | 12 + icons-optimized/circle-check.svg | 11 + icons-optimized/circle-cross-accent.svg | 20 ++ icons-optimized/circle-fill.svg | 6 + icons-optimized/circle.svg | 14 ++ icons-optimized/clock.svg | 11 + icons-optimized/cloud-upload-accent.svg | 22 ++ icons-optimized/cloud-upload.svg | 12 + icons-optimized/collection.svg | 24 ++ icons-optimized/color-swatch.svg | 13 + icons-optimized/confetti.svg | 19 ++ icons-optimized/copy.svg | 11 + icons-optimized/crown-2-fill.svg | 12 + icons-optimized/crown.svg | 14 ++ icons-optimized/currency-dollar.svg | 11 + icons-optimized/current-location.svg | 15 ++ icons-optimized/device-desktop-analytics.svg | 17 ++ icons-optimized/device-desktop-off.svg | 14 ++ icons-optimized/device-desktop.svg | 12 + icons-optimized/device-laptop.svg | 11 + icons-optimized/device-tv.svg | 11 + icons-optimized/diamond.svg | 11 + icons-optimized/discount-2.svg | 13 + icons-optimized/discount.svg | 13 + icons-optimized/disk.svg | 14 ++ icons-optimized/dots-vertical.svg | 17 ++ icons-optimized/download-accent.svg | 22 ++ icons-optimized/download.svg | 12 + icons-optimized/edit-icon.svg | 85 +++++++ icons-optimized/edit.svg | 12 + icons-optimized/external-link.svg | 12 + icons-optimized/eye-check.svg | 12 + icons-optimized/eye-off.svg | 12 + icons-optimized/eye.svg | 11 + icons-optimized/facebook.svg | 6 + icons-optimized/file-download.svg | 13 + icons-optimized/file-export.svg | 11 + icons-optimized/file-report.svg | 13 + icons-optimized/file-search.svg | 13 + icons-optimized/filter-off.svg | 11 + icons-optimized/filter.svg | 14 ++ icons-optimized/flag-fill.svg | 16 ++ icons-optimized/flag-off.svg | 11 + icons-optimized/flag.svg | 14 ++ icons-optimized/folder-download.svg | 12 + icons-optimized/folder-eye.svg | 16 ++ icons-optimized/folder-fill.svg | 24 ++ icons-optimized/folder-minus.svg | 11 + icons-optimized/folder-off.svg | 11 + icons-optimized/folder-plus.svg | 12 + icons-optimized/folder-upload.svg | 12 + icons-optimized/folder-x.svg | 11 + icons-optimized/folder.svg | 14 ++ icons-optimized/folders.svg | 11 + icons-optimized/google-color.svg | 31 +++ icons-optimized/grab-hand.svg | 16 ++ icons-optimized/grid-dots.svg | 18 ++ icons-optimized/grid-view-1.svg | 19 ++ icons-optimized/grid-view-2.svg | 20 ++ icons-optimized/home-2.svg | 27 +++ icons-optimized/home-mix.svg | 33 +++ icons-optimized/image-border.svg | 11 + icons-optimized/info-circle.svg | 12 + icons-optimized/info-cirlce-2.svg | 14 ++ icons-optimized/info-square.svg | 12 + icons-optimized/info.svg | 4 + icons-optimized/key-2.svg | 7 + icons-optimized/key-duplicate.svg | 12 + icons-optimized/key.svg | 13 + icons-optimized/layout-sidebar-right-mix.svg | 17 ++ icons-optimized/link.svg | 11 + icons-optimized/list-fill.svg | 11 + icons-optimized/loader.svg | 17 ++ icons-optimized/lock-2.svg | 11 + icons-optimized/lock-off.svg | 13 + icons-optimized/lock-open.svg | 12 + icons-optimized/lock.svg | 12 + icons-optimized/loop.svg | 24 ++ icons-optimized/loupe-fill.svg | 10 + icons-optimized/mail.svg | 11 + icons-optimized/map-2.svg | 14 ++ icons-optimized/map-pin-off.svg | 12 + icons-optimized/map-pin.svg | 11 + icons-optimized/minus.svg | 3 + icons-optimized/mood-crazy-happy.svg | 15 ++ icons-optimized/mood-empty.svg | 13 + icons-optimized/mood-gray.svg | 24 ++ icons-optimized/mood-sad.svg | 13 + icons-optimized/mood-smile.svg | 13 + icons-optimized/mood.svg | 24 ++ icons-optimized/mouse-left-2.svg | 14 ++ icons-optimized/mouse-left.svg | 11 + icons-optimized/mouse-right.svg | 11 + icons-optimized/no-duplicate.svg | 26 +- icons-optimized/none-selected.svg | 25 ++ icons-optimized/palette-fill.svg | 6 + icons-optimized/palette.svg | 13 + icons-optimized/pause-fill.svg | 10 + icons-optimized/photo-off-2.svg | 13 + icons-optimized/photo-off.svg | 14 ++ icons-optimized/photo-stack.svg | 14 ++ icons-optimized/photo.svg | 13 + icons-optimized/pinned.svg | 12 + icons-optimized/play-fill.svg | 6 + icons-optimized/play.svg | 10 + icons-optimized/{play-di.svg => player.svg} | 0 icons-optimized/plus.svg | 11 + icons-optimized/question-mark.svg | 11 + icons-optimized/recull.svg | 20 ++ icons-optimized/redeem.svg | 18 ++ icons-optimized/refresh-2.svg | 13 + icons-optimized/refresh-alert.svg | 14 ++ icons-optimized/refresh.svg | 14 ++ icons-optimized/reload-alert.svg | 7 + icons-optimized/rotate-clockwise.svg | 19 ++ icons-optimized/rotate.svg | 19 ++ icons-optimized/scissors.svg | 11 + icons-optimized/search.svg | 11 + icons-optimized/share.svg | 14 ++ icons-optimized/shopping-cart-discount.svg | 16 ++ icons-optimized/shopping-cart.svg | 13 + icons-optimized/sort-ascending-2.svg | 13 + icons-optimized/sort-ascending-letters.svg | 13 + icons-optimized/sort-ascending-numbers.svg | 14 ++ icons-optimized/sort-ascending.svg | 14 ++ icons-optimized/sort-descending-2.svg | 13 + icons-optimized/sort-descending-letters.svg | 13 + icons-optimized/sort-descending-numbers.svg | 14 ++ icons-optimized/sort-descending.svg | 14 ++ icons-optimized/sparkle.svg | 11 + icons-optimized/spray.svg | 8 + icons-optimized/spray_2.svg | 10 + icons-optimized/stack-double.svg | 11 + icons-optimized/stack-triple.svg | 12 + icons-optimized/star-fill-off.svg | 17 ++ icons-optimized/star-fill.svg | 9 + icons-optimized/star-off.svg | 11 + icons-optimized/star.svg | 14 ++ icons-optimized/thumb-down.svg | 14 ++ icons-optimized/thumb-up.svg | 14 ++ icons-optimized/trash-off.svg | 16 ++ icons-optimized/trash.svg | 14 ++ icons-optimized/unlink.svg | 15 ++ icons-optimized/upload-2.svg | 7 + icons-optimized/upload-accent.svg | 29 +++ icons-optimized/upload-c1-cat.svg | 38 +++ icons-optimized/upload-lr-cat.svg | 38 +++ icons-optimized/upload.svg | 12 + icons-optimized/user-check.svg | 12 + icons-optimized/user-exclamation.svg | 13 + icons-optimized/user-minus.svg | 12 + icons-optimized/user-off.svg | 12 + icons-optimized/user-plus.svg | 12 + icons-optimized/user-x.svg | 12 + icons-optimized/user.svg | 11 + icons-optimized/users.svg | 13 + icons-optimized/view-all.svg | 6 + icons-optimized/viewfinder.svg | 15 ++ icons-optimized/wifi-1.svg | 11 + icons-optimized/wifi-2.svg | 12 + icons-optimized/wifi-off.svg | 19 ++ icons-optimized/wifi.svg | 13 + icons-optimized/world.svg | 14 ++ icons-optimized/writing.svg | 7 + icons-optimized/x.svg | 11 + icons-optimized/zoom-in.svg | 13 + icons-optimized/zoom-out.svg | 12 + icons-optimized/zoom-question.svg | 13 + icons-original/_not-include/add_folder.svg | 1 - .../aftershoot-color-logo.svg} | 0 icons-original/_not-include/bulb.svg | 12 - ...check_box.svg => checkbox-blue-accent.svg} | 0 .../checkbox-green-accent.svg} | 4 +- .../checkbox-partial-blue-accent.svg} | 4 +- .../cloud-upload-accent.svg | 2 +- .../{_accent => accent}/download-accent.svg | 2 +- .../{_accent => accent}/upload-accent.svg | 4 +- .../{no-change => logo}/aftershoot-credit.svg | 0 .../edit-icon.svg} | 0 .../{no-change => logo}/google-color.svg | 0 .../{no-change => logo}/grab-hand.svg | 0 .../{_mix => mix}/check-box-empty.svg | 0 icons-original/{_mix => mix}/collection.svg | 0 icons-original/{_mix => mix}/flag-fill.svg | 0 icons-original/{_mix => mix}/folder-fill.svg | 0 icons-original/{_mix => mix}/image-border.svg | 0 .../{_mix => mix}/none-selected.svg | 0 icons-original/{_mix => mix}/play.svg | 0 icons-original/{_mix => mix}/sparkle.svg | 0 icons-original/{_mix => mix}/star-fill.svg | 0 .../{_mix => mix}/upload-c1-cat.svg | 0 .../{_mix => mix}/upload-lr-cat.svg | 0 .../mood_gray.svg => no-change/mood-gray.svg} | 0 .../{_accent => no-change}/mood.svg | 0 .../{_outline => outline}/Import.svg | 0 .../adjustments-horizontal.svg | 0 .../{_outline => outline}/adjustments.svg | 0 .../{_outline => outline}/alarm.svg | 0 .../{_outline => outline}/alert-circle.svg | 0 .../{_outline => outline}/alert-octagon.svg | 0 .../{_outline => outline}/alert-triangle.svg | 0 .../{_outline => outline}/arrow-down.svg | 0 .../{_outline => outline}/arrow-left.svg | 0 .../arrow-narrow-left.svg | 0 .../arrow-narrow-right.svg | 0 .../{_outline => outline}/arrow-right.svg | 0 .../{_outline => outline}/arrow-sort-2.svg | 0 .../{_outline => outline}/arrow-up.svg | 0 .../{_outline => outline}/arrows-diagonal.svg | 0 .../{_outline => outline}/arrows-sort.svg | 0 icons-original/{_outline => outline}/atom.svg | 0 icons-original/{_outline => outline}/ban.svg | 0 .../{_outline => outline}/bell-minus.svg | 0 .../{_outline => outline}/bell-off.svg | 0 .../{_outline => outline}/bell-plus.svg | 0 .../{_outline => outline}/bell-ringing-2.svg | 0 .../{_outline => outline}/bell-ringing.svg | 0 .../{_outline => outline}/bell-x.svg | 0 icons-original/{_outline => outline}/bell.svg | 0 .../{_outline => outline}/brand-facebook.svg | 0 .../{_outline => outline}/brand-github.svg | 0 .../{_outline => outline}/brand-instagram.svg | 0 .../{_outline => outline}/brand-twitter.svg | 0 .../{_outline => outline}/brand-whatsapp.svg | 0 .../{_outline => outline}/brand-youtube.svg | 0 .../{_outline => outline}/bulb-off.svg | 0 icons-original/{_outline => outline}/bulb.svg | 0 .../{_outline => outline}/check.svg | 0 .../{_outline => outline}/chevron-down.svg | 0 .../{_outline => outline}/chevron-left.svg | 0 .../{_outline => outline}/chevron-right.svg | 0 .../{_outline => outline}/chevron-up.svg | 0 .../{_outline => outline}/chevrons-left.svg | 0 .../{_outline => outline}/chevrons-right.svg | 0 .../{_outline => outline}/circle-check-2.svg | 0 .../{_outline => outline}/circle-check.svg | 0 .../{_outline => outline}/circle.svg | 0 .../{_outline => outline}/clock.svg | 0 .../{_outline => outline}/cloud-upload.svg | 0 .../{_outline => outline}/color-swatch.svg | 0 .../{_outline => outline}/confetti.svg | 0 icons-original/{_outline => outline}/copy.svg | 0 .../{_outline => outline}/crown.svg | 0 .../{_outline => outline}/currency-dollar.svg | 0 .../current-location.svg | 0 .../device-desktop-analytics.svg | 0 .../device-desktop-off.svg | 0 .../{_outline => outline}/device-desktop.svg | 0 .../{_outline => outline}/device-laptop.svg | 0 .../{_outline => outline}/device-tv.svg | 0 .../{_outline => outline}/diamond.svg | 0 .../{_outline => outline}/discount-2.svg | 0 .../{_outline => outline}/discount.svg | 0 icons-original/{_outline => outline}/disk.svg | 0 .../{_outline => outline}/dots-vertical.svg | 0 .../{_outline => outline}/download.svg | 0 icons-original/{_outline => outline}/edit.svg | 0 .../{_outline => outline}/external-link.svg | 0 .../{_outline => outline}/eye-check.svg | 0 .../{_outline => outline}/eye-off.svg | 0 icons-original/{_outline => outline}/eye.svg | 0 .../{_outline => outline}/file-download.svg | 0 .../{_outline => outline}/file-export.svg | 0 .../{_outline => outline}/file-report.svg | 0 .../{_outline => outline}/file-search.svg | 0 .../{_outline => outline}/filter-off.svg | 0 .../{_outline => outline}/filter.svg | 0 .../{_outline => outline}/flag-off.svg | 0 icons-original/{_outline => outline}/flag.svg | 0 .../{_outline => outline}/folder-download.svg | 0 .../{_outline => outline}/folder-eye.svg | 0 .../{_outline => outline}/folder-minus.svg | 0 .../{_outline => outline}/folder-off.svg | 0 .../{_outline => outline}/folder-plus.svg | 0 .../{_outline => outline}/folder-upload.svg | 0 .../{_outline => outline}/folder-x.svg | 0 .../{_outline => outline}/folder.svg | 0 .../{_outline => outline}/folders.svg | 0 .../{_outline => outline}/grid-dots.svg | 0 .../{_outline => outline}/home-2.svg | 0 .../{_outline => outline}/info-circle.svg | 0 .../{_outline => outline}/info-cirlce-2.svg | 0 .../{_outline => outline}/info-square.svg | 0 icons-original/{_outline => outline}/info.svg | 0 .../{_outline => outline}/key-2.svg | 0 .../{_outline => outline}/key-duplicate.svg | 0 icons-original/{_outline => outline}/key.svg | 0 icons-original/{_outline => outline}/link.svg | 0 .../{_outline => outline}/loader.svg | 0 .../{_outline => outline}/lock-2.svg | 0 .../{_outline => outline}/lock-off.svg | 0 .../{_outline => outline}/lock-open.svg | 0 icons-original/{_outline => outline}/lock.svg | 0 icons-original/{_outline => outline}/loop.svg | 0 icons-original/{_outline => outline}/mail.svg | 0 .../{_outline => outline}/map-2.svg | 0 .../{_outline => outline}/map-pin-off.svg | 0 .../{_outline => outline}/map-pin.svg | 0 .../{_outline => outline}/minus.svg | 0 .../mood-crazy-happy.svg | 0 .../{_outline => outline}/mood-empty.svg | 0 .../{_outline => outline}/mood-sad.svg | 0 .../{_outline => outline}/mood-smile.svg | 0 .../{_outline => outline}/mouse-left.svg | 0 .../{_outline => outline}/mouse-right.svg | 0 .../{_outline => outline}/no-duplicate.svg | 0 .../{_outline => outline}/palette.svg | 0 .../{_outline => outline}/photo-off-2.svg | 0 .../{_outline => outline}/photo-off.svg | 0 .../{_outline => outline}/photo-stack.svg | 0 .../{_outline => outline}/photo.svg | 0 .../{_outline => outline}/pinned.svg | 0 icons-original/{_outline => outline}/plus.svg | 0 .../{_outline => outline}/question-mark.svg | 0 .../{_outline => outline}/redeem.svg | 0 .../{_outline => outline}/refresh-2.svg | 0 .../{_outline => outline}/refresh-alert.svg | 0 .../{_outline => outline}/refresh.svg | 0 .../{_outline => outline}/reload-alert.svg | 0 .../rotate-clockwise.svg | 0 .../{_outline => outline}/rotate.svg | 0 .../{_outline => outline}/search.svg | 0 .../{_outline => outline}/share.svg | 0 .../shopping-cart-discount.svg | 0 .../{_outline => outline}/shopping-cart.svg | 0 .../sort-ascending-2.svg | 0 .../sort-ascending-letters.svg | 0 .../sort-ascending-numbers.svg | 0 .../{_outline => outline}/sort-ascending.svg | 0 .../sort-descending-2.svg | 0 .../sort-descending-letters.svg | 0 .../sort-descending-numbers.svg | 0 .../{_outline => outline}/sort-descending.svg | 0 .../{_outline => outline}/spray.svg | 0 .../{_outline => outline}/spray_2.svg | 0 .../{_outline => outline}/stack-double.svg | 0 .../{_outline => outline}/stack-triple.svg | 0 .../{_outline => outline}/star-off.svg | 0 icons-original/{_outline => outline}/star.svg | 0 .../{_outline => outline}/thumb-down.svg | 0 .../{_outline => outline}/thumb-up.svg | 0 .../{_outline => outline}/trash-off.svg | 0 .../{_outline => outline}/trash.svg | 0 .../{_outline => outline}/unlink.svg | 0 .../{_outline => outline}/upload-2.svg | 0 .../{_outline => outline}/upload.svg | 0 .../{_outline => outline}/user-check.svg | 0 .../user-exclamation.svg | 0 .../{_outline => outline}/user-minus.svg | 0 .../{_outline => outline}/user-off.svg | 0 .../{_outline => outline}/user-plus.svg | 0 .../{_outline => outline}/user-x.svg | 0 icons-original/{_outline => outline}/user.svg | 0 .../{_outline => outline}/users.svg | 0 .../{_outline => outline}/view-all.svg | 0 .../{_outline => outline}/viewfinder.svg | 0 .../{_outline => outline}/wifi-1.svg | 0 .../{_outline => outline}/wifi-2.svg | 0 .../{_outline => outline}/wifi-off.svg | 0 icons-original/{_outline => outline}/wifi.svg | 0 .../{_outline => outline}/world.svg | 0 .../{_outline => outline}/writing.svg | 0 icons-original/{_outline => outline}/x.svg | 0 .../{_outline => outline}/zoom-in.svg | 0 .../{_outline => outline}/zoom-out.svg | 0 .../{_outline => outline}/zoom-question.svg | 0 package.json | 4 +- scripts/buildIcons.mjs | 1 + scripts/generateIconFiles.mjs | 8 - scripts/processSvg.mjs | 9 +- scripts/writeSvgChildren.mjs | 2 - src/icons-test/Import.tsx | 31 +++ src/icons-test/adjustments-horizontal.tsx | 37 +++ src/icons-test/adjustments.tsx | 37 +++ src/icons-test/aftershoot-credit.tsx | 60 +++++ src/icons-test/aftershoot-logo.tsx | 21 ++ src/icons-test/alarm.tsx | 32 +++ ...ircle-fill.tsx => alert-circle-accent.tsx} | 6 +- src/icons-test/alert-circle.tsx | 31 +++ src/icons-test/alert-octagon.tsx | 31 +++ ...gle-fill.tsx => alert-triangle-accent.tsx} | 6 +- src/icons-test/alert-triangle.tsx | 30 +++ src/icons-test/apple.tsx | 20 ++ src/icons-test/arrow-curve-fill.tsx | 21 ++ src/icons-test/arrow-down.tsx | 31 +++ src/icons-test/arrow-left.tsx | 31 +++ src/icons-test/arrow-narrow-left.tsx | 31 +++ src/icons-test/arrow-narrow-right.tsx | 31 +++ src/icons-test/arrow-right.tsx | 31 +++ src/icons-test/arrow-sort-2.tsx | 22 ++ src/icons-test/arrow-up.tsx | 31 +++ src/icons-test/arrows-diagonal.tsx | 32 +++ src/icons-test/arrows-sort.tsx | 30 +++ .../{atom-di.tsx => atom-accent.tsx} | 10 +- src/icons-test/atom.tsx | 31 +++ src/icons-test/ban.tsx | 30 +++ src/icons-test/bell-minus.tsx | 31 +++ src/icons-test/bell-off.tsx | 31 +++ src/icons-test/bell-plus.tsx | 32 +++ src/icons-test/bell-ringing-2.tsx | 30 +++ src/icons-test/bell-ringing.tsx | 32 +++ src/icons-test/bell-x.tsx | 31 +++ src/icons-test/bell.tsx | 30 +++ src/icons-test/brand-facebook.tsx | 28 +++ src/icons-test/brand-github.tsx | 28 +++ src/icons-test/brand-instagram.tsx | 31 +++ src/icons-test/brand-twitter.tsx | 28 +++ src/icons-test/brand-whatsapp.tsx | 30 +++ src/icons-test/brand-youtube.tsx | 30 +++ src/icons-test/bulb-off.tsx | 30 +++ src/icons-test/bulb.tsx | 31 +++ ...heck_box_empty.tsx => check-box-empty.tsx} | 23 +- src/icons-test/check.tsx | 24 ++ src/icons-test/checkbox-blue-accent.tsx | 52 ++++ src/icons-test/checkbox-green-accent.tsx | 44 ++++ .../checkbox-partial-blue-accent.tsx | 53 +++++ src/icons-test/chevron-down.tsx | 24 ++ src/icons-test/chevron-left.tsx | 24 ++ src/icons-test/chevron-right.tsx | 24 ++ src/icons-test/chevron-up.tsx | 24 ++ src/icons-test/chevrons-left.tsx | 30 +++ src/icons-test/chevrons-right.tsx | 30 +++ src/icons-test/circle-check-2.tsx | 28 +++ src/icons-test/circle-check.tsx | 30 +++ src/icons-test/circle-cross-accent.tsx | 33 +++ src/icons-test/circle-fill.tsx | 21 ++ src/icons-test/circle.tsx | 28 +++ src/icons-test/clock.tsx | 30 +++ src/icons-test/cloud-upload-accent.tsx | 34 +++ src/icons-test/cloud-upload.tsx | 31 +++ src/icons-test/collection.tsx | 38 +++ src/icons-test/color-swatch.tsx | 32 +++ src/icons-test/confetti.tsx | 38 +++ src/icons-test/copy.tsx | 30 +++ src/icons-test/crown-2-fill.tsx | 28 +++ src/icons-test/crown.tsx | 28 +++ src/icons-test/currency-dollar.tsx | 30 +++ src/icons-test/current-location.tsx | 34 +++ src/icons-test/device-desktop-analytics.tsx | 36 +++ src/icons-test/device-desktop-off.tsx | 33 +++ src/icons-test/device-desktop.tsx | 31 +++ src/icons-test/device-laptop.tsx | 30 +++ src/icons-test/device-tv.tsx | 30 +++ src/icons-test/diamond.tsx | 30 +++ src/icons-test/discount-2.tsx | 32 +++ src/icons-test/discount.tsx | 32 +++ src/icons-test/disk.tsx | 40 ++++ src/icons-test/dots-vertical.tsx | 32 +++ src/icons-test/download-accent.tsx | 34 +++ src/icons-test/download.tsx | 31 +++ src/icons-test/edit-icon.tsx | 100 ++++++++ src/icons-test/edit.tsx | 31 +++ src/icons-test/external-link.tsx | 31 +++ src/icons-test/eye-check.tsx | 31 +++ src/icons-test/eye-off.tsx | 31 +++ src/icons-test/eye.tsx | 30 +++ src/icons-test/facebook.tsx | 21 ++ src/icons-test/file-download.tsx | 32 +++ src/icons-test/file-export.tsx | 30 +++ src/icons-test/file-report.tsx | 32 +++ src/icons-test/file-search.tsx | 32 +++ src/icons-test/filter-off.tsx | 30 +++ src/icons-test/filter.tsx | 28 +++ src/icons-test/flag-fill.tsx | 30 +++ src/icons-test/flag-off.tsx | 30 +++ src/icons-test/flag.tsx | 28 +++ src/icons-test/folder-download.tsx | 31 +++ src/icons-test/folder-eye.tsx | 30 +++ src/icons-test/folder-fill.tsx | 45 ++++ src/icons-test/folder-minus.tsx | 30 +++ src/icons-test/folder-off.tsx | 30 +++ src/icons-test/folder-plus.tsx | 31 +++ src/icons-test/folder-upload.tsx | 31 +++ src/icons-test/folder-x.tsx | 30 +++ src/icons-test/folder.tsx | 28 +++ src/icons-test/folders.tsx | 30 +++ src/icons-test/google-color.tsx | 41 ++++ src/icons-test/grab-hand.tsx | 28 +++ src/icons-test/grid-dots.tsx | 37 +++ src/icons-test/grid-view-1.tsx | 37 +++ src/icons-test/grid-view-2.tsx | 38 +++ src/icons-test/home-2.tsx | 41 ++++ src/icons-test/home-mix.tsx | 56 +++++ src/icons-test/image-border.tsx | 27 +++ src/icons-test/index.ts | 223 +++++++++++++++++- src/icons-test/info-circle.tsx | 31 +++ src/icons-test/info-cirlce-2.tsx | 33 +++ src/icons-test/info-square.tsx | 31 +++ src/icons-test/info.tsx | 28 +++ src/icons-test/key-2.tsx | 22 ++ src/icons-test/key-duplicate.tsx | 28 +++ src/icons-test/key.tsx | 32 +++ src/icons-test/layout-sidebar-right-mix.tsx | 39 +++ src/icons-test/link.tsx | 30 +++ src/icons-test/list-fill.tsx | 27 +++ src/icons-test/loader.tsx | 36 +++ src/icons-test/lock-2.tsx | 30 +++ src/icons-test/lock-off.tsx | 32 +++ src/icons-test/lock-open.tsx | 31 +++ src/icons-test/lock.tsx | 31 +++ src/icons-test/loop.tsx | 42 ++++ src/icons-test/loupe-fill.tsx | 26 ++ src/icons-test/mail.tsx | 30 +++ src/icons-test/map-2.tsx | 33 +++ src/icons-test/map-pin-off.tsx | 31 +++ src/icons-test/map-pin.tsx | 30 +++ src/icons-test/minus.tsx | 17 ++ src/icons-test/mood-crazy-happy.tsx | 34 +++ src/icons-test/mood-empty.tsx | 32 +++ src/icons-test/mood-gray.tsx | 40 ++++ src/icons-test/mood-sad.tsx | 32 +++ src/icons-test/mood-smile.tsx | 32 +++ src/icons-test/mood.tsx | 40 ++++ src/icons-test/mouse-left-2.tsx | 36 +++ src/icons-test/mouse-left.tsx | 27 +++ src/icons-test/mouse-right.tsx | 27 +++ src/icons-test/no-duplicate.tsx | 31 +-- src/icons-test/none-selected.tsx | 39 +++ src/icons-test/palette-fill.tsx | 21 ++ src/icons-test/palette.tsx | 32 +++ src/icons-test/pause-fill.tsx | 26 ++ src/icons-test/photo-off-2.tsx | 29 +++ src/icons-test/photo-off.tsx | 33 +++ src/icons-test/photo-stack.tsx | 33 +++ src/icons-test/photo.tsx | 32 +++ src/icons-test/pinned.tsx | 31 +++ src/icons-test/play-fill.tsx | 21 ++ src/icons-test/play.tsx | 29 +++ src/icons-test/{play-di.tsx => player.tsx} | 6 +- src/icons-test/plus.tsx | 30 +++ src/icons-test/question-mark.tsx | 30 +++ src/icons-test/recull.tsx | 43 ++++ src/icons-test/redeem.tsx | 40 ++++ src/icons-test/refresh-2.tsx | 34 +++ src/icons-test/refresh-alert.tsx | 28 +++ src/icons-test/refresh.tsx | 28 +++ src/icons-test/reload-alert.tsx | 22 ++ src/icons-test/rotate-clockwise.tsx | 33 +++ src/icons-test/rotate.tsx | 33 +++ src/icons-test/scissors.tsx | 33 +++ src/icons-test/search.tsx | 30 +++ src/icons-test/share.tsx | 33 +++ src/icons-test/shopping-cart-discount.tsx | 35 +++ src/icons-test/shopping-cart.tsx | 32 +++ src/icons-test/sort-ascending-2.tsx | 32 +++ src/icons-test/sort-ascending-letters.tsx | 32 +++ src/icons-test/sort-ascending-numbers.tsx | 33 +++ src/icons-test/sort-ascending.tsx | 33 +++ src/icons-test/sort-descending-2.tsx | 32 +++ src/icons-test/sort-descending-letters.tsx | 32 +++ src/icons-test/sort-descending-numbers.tsx | 33 +++ src/icons-test/sort-descending.tsx | 33 +++ src/icons-test/sparkle.tsx | 27 +++ src/icons-test/spray.tsx | 28 +++ src/icons-test/spray_2.tsx | 26 ++ src/icons-test/stack-double.tsx | 30 +++ src/icons-test/stack-triple.tsx | 31 +++ src/icons-test/star-fill-off.tsx | 39 +++ src/icons-test/star-fill.tsx | 24 ++ src/icons-test/star-off.tsx | 30 +++ src/icons-test/star.tsx | 28 +++ src/icons-test/thumb-down.tsx | 28 +++ src/icons-test/thumb-up.tsx | 28 +++ src/icons-test/trash-off.tsx | 35 +++ src/icons-test/trash.tsx | 33 +++ src/icons-test/unlink.tsx | 34 +++ src/icons-test/upload-2.tsx | 22 ++ src/icons-test/upload-accent.tsx | 42 ++++ src/icons-test/upload-c1-cat.tsx | 52 ++++ src/icons-test/upload-lr-cat.tsx | 52 ++++ src/icons-test/upload.tsx | 31 +++ src/icons-test/user-check.tsx | 31 +++ src/icons-test/user-exclamation.tsx | 32 +++ src/icons-test/user-minus.tsx | 31 +++ src/icons-test/user-off.tsx | 31 +++ src/icons-test/user-plus.tsx | 31 +++ src/icons-test/user-x.tsx | 31 +++ src/icons-test/user.tsx | 30 +++ src/icons-test/users.tsx | 32 +++ src/icons-test/view-all.tsx | 21 ++ src/icons-test/viewfinder.tsx | 34 +++ src/icons-test/wifi-1.tsx | 30 +++ src/icons-test/wifi-2.tsx | 31 +++ src/icons-test/wifi-off.tsx | 46 ++++ src/icons-test/wifi.tsx | 32 +++ src/icons-test/world.tsx | 33 +++ src/icons-test/writing.tsx | 22 ++ src/icons-test/x.tsx | 30 +++ src/icons-test/zoom-in.tsx | 32 +++ src/icons-test/zoom-out.tsx | 31 +++ src/icons-test/zoom-question.tsx | 32 +++ src/stories/Adjustments.stories.tsx | 70 ++++++ src/stories/AdjustmentsHorizontal.stories.tsx | 70 ++++++ ...ories.tsx => AftershootCredit.stories.tsx} | 10 +- src/stories/AftershootLogo.stories.tsx | 77 ++++++ src/stories/Alarm.stories.tsx | 70 ++++++ src/stories/AlertCircle.stories.tsx | 70 ++++++ src/stories/AlertCircleAccent.stories.tsx | 71 ++++++ src/stories/AlertOctagon.stories.tsx | 70 ++++++ src/stories/AlertTriangle.stories.tsx | 70 ++++++ src/stories/AlertTriangleAccent.stories.tsx | 71 ++++++ src/stories/Apple.stories.tsx | 77 ++++++ src/stories/ArrowCurveFill.stories.tsx | 77 ++++++ src/stories/ArrowDown.stories.tsx | 70 ++++++ src/stories/ArrowLeft.stories.tsx | 70 ++++++ src/stories/ArrowNarrowLeft.stories.tsx | 70 ++++++ src/stories/ArrowNarrowRight.stories.tsx | 70 ++++++ src/stories/ArrowRight.stories.tsx | 70 ++++++ src/stories/ArrowSort2.stories.tsx | 70 ++++++ src/stories/ArrowUp.stories.tsx | 70 ++++++ src/stories/ArrowsDiagonal.stories.tsx | 70 ++++++ src/stories/ArrowsSort.stories.tsx | 70 ++++++ src/stories/Atom.stories.tsx | 70 ++++++ ...ill.stories.tsx => AtomAccent.stories.tsx} | 10 +- src/stories/Ban.stories.tsx | 70 ++++++ src/stories/Bell.stories.tsx | 70 ++++++ src/stories/BellMinus.stories.tsx | 70 ++++++ src/stories/BellOff.stories.tsx | 70 ++++++ src/stories/BellPlus.stories.tsx | 70 ++++++ src/stories/BellRinging.stories.tsx | 70 ++++++ src/stories/BellRinging2.stories.tsx | 70 ++++++ src/stories/BellX.stories.tsx | 70 ++++++ src/stories/BrandFacebook.stories.tsx | 70 ++++++ src/stories/BrandGithub.stories.tsx | 70 ++++++ src/stories/BrandInstagram.stories.tsx | 70 ++++++ src/stories/BrandTwitter.stories.tsx | 70 ++++++ src/stories/BrandWhatsapp.stories.tsx | 70 ++++++ src/stories/BrandYoutube.stories.tsx | 70 ++++++ src/stories/Bulb.stories.tsx | 70 ++++++ src/stories/BulbOff.stories.tsx | 70 ++++++ src/stories/Check.stories.tsx | 70 ++++++ src/stories/CheckBoxEmpty.stories.tsx | 10 +- src/stories/CheckboxBlueAccent.stories.tsx | 71 ++++++ src/stories/CheckboxGreenAccent.stories.tsx | 71 ++++++ .../CheckboxPartialBlueAccent.stories.tsx | 71 ++++++ src/stories/ChevronDown.stories.tsx | 70 ++++++ src/stories/ChevronLeft.stories.tsx | 70 ++++++ src/stories/ChevronRight.stories.tsx | 70 ++++++ src/stories/ChevronUp.stories.tsx | 70 ++++++ src/stories/ChevronsLeft.stories.tsx | 70 ++++++ src/stories/ChevronsRight.stories.tsx | 70 ++++++ src/stories/Circle.stories.tsx | 70 ++++++ src/stories/CircleCheck.stories.tsx | 70 ++++++ src/stories/CircleCheck2.stories.tsx | 70 ++++++ src/stories/CircleCrossAccent.stories.tsx | 71 ++++++ src/stories/CircleFill.stories.tsx | 77 ++++++ src/stories/Clock.stories.tsx | 70 ++++++ src/stories/CloudUpload.stories.tsx | 70 ++++++ src/stories/CloudUploadAccent.stories.tsx | 71 ++++++ src/stories/Collection.stories.tsx | 77 ++++++ src/stories/ColorSwatch.stories.tsx | 70 ++++++ src/stories/Confetti.stories.tsx | 70 ++++++ src/stories/Copy.stories.tsx | 70 ++++++ src/stories/Crown.stories.tsx | 70 ++++++ src/stories/Crown2Fill.stories.tsx | 77 ++++++ src/stories/CurrencyDollar.stories.tsx | 70 ++++++ src/stories/CurrentLocation.stories.tsx | 70 ++++++ src/stories/DeviceDesktop.stories.tsx | 70 ++++++ .../DeviceDesktopAnalytics.stories.tsx | 70 ++++++ src/stories/DeviceDesktopOff.stories.tsx | 70 ++++++ src/stories/DeviceLaptop.stories.tsx | 70 ++++++ src/stories/DeviceTv.stories.tsx | 70 ++++++ src/stories/Diamond.stories.tsx | 70 ++++++ src/stories/Discount.stories.tsx | 70 ++++++ src/stories/Discount2.stories.tsx | 70 ++++++ src/stories/Disk.stories.tsx | 70 ++++++ src/stories/DotsVertical.stories.tsx | 70 ++++++ src/stories/Download.stories.tsx | 70 ++++++ src/stories/DownloadAccent.stories.tsx | 71 ++++++ src/stories/Edit.stories.tsx | 70 ++++++ ...layDi.stories.tsx => EditIcon.stories.tsx} | 10 +- src/stories/ExternalLink.stories.tsx | 70 ++++++ src/stories/Eye.stories.tsx | 70 ++++++ src/stories/EyeCheck.stories.tsx | 70 ++++++ src/stories/EyeOff.stories.tsx | 70 ++++++ src/stories/Facebook.stories.tsx | 77 ++++++ src/stories/FileDownload.stories.tsx | 70 ++++++ src/stories/FileExport.stories.tsx | 70 ++++++ src/stories/FileReport.stories.tsx | 70 ++++++ src/stories/FileSearch.stories.tsx | 70 ++++++ src/stories/Filter.stories.tsx | 70 ++++++ src/stories/FilterOff.stories.tsx | 70 ++++++ src/stories/Flag.stories.tsx | 70 ++++++ src/stories/FlagFill.stories.tsx | 77 ++++++ src/stories/FlagOff.stories.tsx | 70 ++++++ src/stories/Folder.stories.tsx | 70 ++++++ src/stories/FolderDownload.stories.tsx | 70 ++++++ src/stories/FolderEye.stories.tsx | 70 ++++++ src/stories/FolderFill.stories.tsx | 77 ++++++ src/stories/FolderMinus.stories.tsx | 70 ++++++ src/stories/FolderOff.stories.tsx | 70 ++++++ src/stories/FolderPlus.stories.tsx | 70 ++++++ src/stories/FolderUpload.stories.tsx | 70 ++++++ src/stories/FolderX.stories.tsx | 70 ++++++ src/stories/Folders.stories.tsx | 70 ++++++ src/stories/GoogleColor.stories.tsx | 71 ++++++ src/stories/GrabHand.stories.tsx | 71 ++++++ src/stories/GridDots.stories.tsx | 70 ++++++ src/stories/GridView1.stories.tsx | 77 ++++++ src/stories/GridView2.stories.tsx | 77 ++++++ src/stories/Home2.stories.tsx | 70 ++++++ src/stories/HomeMix.stories.tsx | 77 ++++++ src/stories/ImageBorder.stories.tsx | 77 ++++++ src/stories/Import.stories.tsx | 70 ++++++ src/stories/Info.stories.tsx | 70 ++++++ src/stories/InfoCircle.stories.tsx | 70 ++++++ src/stories/InfoCirlce2.stories.tsx | 70 ++++++ src/stories/InfoSquare.stories.tsx | 70 ++++++ src/stories/Key.stories.tsx | 70 ++++++ src/stories/Key2.stories.tsx | 70 ++++++ src/stories/KeyDuplicate.stories.tsx | 70 ++++++ src/stories/LayoutSidebarRightMix.stories.tsx | 77 ++++++ src/stories/Link.stories.tsx | 70 ++++++ src/stories/ListFill.stories.tsx | 77 ++++++ src/stories/Loader.stories.tsx | 70 ++++++ src/stories/Lock.stories.tsx | 70 ++++++ src/stories/Lock2.stories.tsx | 70 ++++++ src/stories/LockOff.stories.tsx | 70 ++++++ src/stories/LockOpen.stories.tsx | 70 ++++++ src/stories/Loop.stories.tsx | 70 ++++++ src/stories/LoupeFill.stories.tsx | 77 ++++++ src/stories/Mail.stories.tsx | 70 ++++++ src/stories/Map2.stories.tsx | 70 ++++++ src/stories/MapPin.stories.tsx | 70 ++++++ src/stories/MapPinOff.stories.tsx | 70 ++++++ src/stories/Minus.stories.tsx | 70 ++++++ src/stories/Mood.stories.tsx | 77 ++++++ src/stories/MoodCrazyHappy.stories.tsx | 70 ++++++ src/stories/MoodEmpty.stories.tsx | 70 ++++++ src/stories/MoodGray.stories.tsx | 77 ++++++ src/stories/MoodSad.stories.tsx | 70 ++++++ src/stories/MoodSmile.stories.tsx | 70 ++++++ src/stories/MouseLeft.stories.tsx | 70 ++++++ src/stories/MouseLeft2.stories.tsx | 77 ++++++ src/stories/MouseRight.stories.tsx | 70 ++++++ src/stories/NoDuplicate.stories.tsx | 9 +- src/stories/NoneSelected.stories.tsx | 77 ++++++ src/stories/Palette.stories.tsx | 70 ++++++ src/stories/PaletteFill.stories.tsx | 77 ++++++ src/stories/PauseFill.stories.tsx | 77 ++++++ src/stories/Photo.stories.tsx | 70 ++++++ src/stories/PhotoOff.stories.tsx | 70 ++++++ src/stories/PhotoOff2.stories.tsx | 70 ++++++ src/stories/PhotoStack.stories.tsx | 70 ++++++ src/stories/Pinned.stories.tsx | 70 ++++++ src/stories/Play.stories.tsx | 77 ++++++ src/stories/PlayFill.stories.tsx | 77 ++++++ ...{AtomDi.stories.tsx => Player.stories.tsx} | 10 +- src/stories/Plus.stories.tsx | 70 ++++++ src/stories/QuestionMark.stories.tsx | 70 ++++++ src/stories/Recull.stories.tsx | 77 ++++++ src/stories/Redeem.stories.tsx | 70 ++++++ src/stories/Refresh.stories.tsx | 70 ++++++ src/stories/Refresh2.stories.tsx | 70 ++++++ src/stories/RefreshAlert.stories.tsx | 70 ++++++ src/stories/ReloadAlert.stories.tsx | 70 ++++++ src/stories/Rotate.stories.tsx | 70 ++++++ src/stories/RotateClockwise.stories.tsx | 70 ++++++ src/stories/Scissors.stories.tsx | 77 ++++++ src/stories/Search.stories.tsx | 70 ++++++ src/stories/Share.stories.tsx | 70 ++++++ src/stories/ShoppingCart.stories.tsx | 70 ++++++ src/stories/ShoppingCartDiscount.stories.tsx | 70 ++++++ src/stories/SortAscending.stories.tsx | 70 ++++++ src/stories/SortAscending2.stories.tsx | 70 ++++++ src/stories/SortAscendingLetters.stories.tsx | 70 ++++++ src/stories/SortAscendingNumbers.stories.tsx | 70 ++++++ src/stories/SortDescending.stories.tsx | 70 ++++++ src/stories/SortDescending2.stories.tsx | 70 ++++++ src/stories/SortDescendingLetters.stories.tsx | 70 ++++++ src/stories/SortDescendingNumbers.stories.tsx | 70 ++++++ src/stories/Sparkle.stories.tsx | 77 ++++++ src/stories/Spray.stories.tsx | 70 ++++++ src/stories/Spray2.stories.tsx | 70 ++++++ src/stories/StackDouble.stories.tsx | 70 ++++++ src/stories/StackTriple.stories.tsx | 70 ++++++ src/stories/Star.stories.tsx | 70 ++++++ src/stories/StarFill.stories.tsx | 77 ++++++ src/stories/StarFillOff.stories.tsx | 77 ++++++ src/stories/StarOff.stories.tsx | 70 ++++++ src/stories/ThumbDown.stories.tsx | 70 ++++++ src/stories/ThumbUp.stories.tsx | 70 ++++++ src/stories/Trash.stories.tsx | 70 ++++++ src/stories/TrashOff.stories.tsx | 70 ++++++ src/stories/Unlink.stories.tsx | 70 ++++++ src/stories/Upload.stories.tsx | 70 ++++++ src/stories/Upload2.stories.tsx | 70 ++++++ src/stories/UploadAccent.stories.tsx | 71 ++++++ src/stories/UploadC1Cat.stories.tsx | 77 ++++++ src/stories/UploadLrCat.stories.tsx | 77 ++++++ src/stories/User.stories.tsx | 70 ++++++ src/stories/UserCheck.stories.tsx | 70 ++++++ src/stories/UserExclamation.stories.tsx | 70 ++++++ src/stories/UserMinus.stories.tsx | 70 ++++++ src/stories/UserOff.stories.tsx | 70 ++++++ src/stories/UserPlus.stories.tsx | 70 ++++++ src/stories/UserX.stories.tsx | 70 ++++++ src/stories/Users.stories.tsx | 70 ++++++ src/stories/ViewAll.stories.tsx | 70 ++++++ src/stories/Viewfinder.stories.tsx | 70 ++++++ src/stories/Wifi.stories.tsx | 70 ++++++ src/stories/Wifi1.stories.tsx | 70 ++++++ src/stories/Wifi2.stories.tsx | 70 ++++++ src/stories/WifiOff.stories.tsx | 70 ++++++ src/stories/World.stories.tsx | 70 ++++++ src/stories/Writing.stories.tsx | 70 ++++++ src/stories/X.stories.tsx | 70 ++++++ src/stories/ZoomIn.stories.tsx | 70 ++++++ src/stories/ZoomOut.stories.tsx | 70 ++++++ src/stories/ZoomQuestion.stories.tsx | 70 ++++++ src/styles/tailwind.css | 17 +- svg-children/alert-circle-fill.svg | 1 - svg-children/alert-triangle-fill.svg | 1 - svg-children/atom-di.svg | 1 - svg-children/check_box_empty.svg | 1 - svg-children/no-duplicate.svg | 2 - svg-children/play-di.svg | 1 - svg-children/star - 0.svg | 1 - svg-children/star - 1.svg | 1 - svg-children/star - 2.svg | 1 - svg-children/star - 3.svg | 1 - svg-children/star - 4.svg | 1 - svg-children/star - 5.svg | 1 - svg-children/success-di.svg | 1 - unicons.config.json | 1 + 1098 files changed, 27054 insertions(+), 188 deletions(-) create mode 100644 icons-metadata/Import.json create mode 100644 icons-metadata/adjustments-horizontal.json create mode 100644 icons-metadata/adjustments.json create mode 100644 icons-metadata/aftershoot-credit.json create mode 100644 icons-metadata/aftershoot-logo.json create mode 100644 icons-metadata/alarm.json create mode 100644 icons-metadata/alert-circle-accent.json delete mode 100644 icons-metadata/alert-circle-fill.json create mode 100644 icons-metadata/alert-circle.json create mode 100644 icons-metadata/alert-octagon.json create mode 100644 icons-metadata/alert-triangle-accent.json delete mode 100644 icons-metadata/alert-triangle-fill.json create mode 100644 icons-metadata/alert-triangle.json create mode 100644 icons-metadata/apple.json create mode 100644 icons-metadata/arrow-curve-fill.json create mode 100644 icons-metadata/arrow-down.json create mode 100644 icons-metadata/arrow-left.json create mode 100644 icons-metadata/arrow-narrow-left.json create mode 100644 icons-metadata/arrow-narrow-right.json create mode 100644 icons-metadata/arrow-right.json create mode 100644 icons-metadata/arrow-sort-2.json create mode 100644 icons-metadata/arrow-up.json create mode 100644 icons-metadata/arrows-diagonal.json create mode 100644 icons-metadata/arrows-sort.json rename icons-metadata/{atom-di.json => atom-accent.json} (53%) create mode 100644 icons-metadata/atom.json create mode 100644 icons-metadata/ban.json create mode 100644 icons-metadata/bell-minus.json create mode 100644 icons-metadata/bell-off.json create mode 100644 icons-metadata/bell-plus.json create mode 100644 icons-metadata/bell-ringing-2.json create mode 100644 icons-metadata/bell-ringing.json create mode 100644 icons-metadata/bell-x.json create mode 100644 icons-metadata/bell.json create mode 100644 icons-metadata/brand-facebook.json create mode 100644 icons-metadata/brand-github.json create mode 100644 icons-metadata/brand-instagram.json create mode 100644 icons-metadata/brand-twitter.json create mode 100644 icons-metadata/brand-whatsapp.json create mode 100644 icons-metadata/brand-youtube.json create mode 100644 icons-metadata/bulb-off.json create mode 100644 icons-metadata/bulb.json create mode 100644 icons-metadata/check-box-empty.json create mode 100644 icons-metadata/check.json create mode 100644 icons-metadata/checkbox-blue-accent.json create mode 100644 icons-metadata/checkbox-green-accent.json create mode 100644 icons-metadata/checkbox-partial-blue-accent.json create mode 100644 icons-metadata/chevron-down.json create mode 100644 icons-metadata/chevron-left.json create mode 100644 icons-metadata/chevron-right.json create mode 100644 icons-metadata/chevron-up.json create mode 100644 icons-metadata/chevrons-left.json create mode 100644 icons-metadata/chevrons-right.json create mode 100644 icons-metadata/circle-check-2.json create mode 100644 icons-metadata/circle-check.json create mode 100644 icons-metadata/circle-cross-accent.json create mode 100644 icons-metadata/circle-fill.json create mode 100644 icons-metadata/circle.json create mode 100644 icons-metadata/clock.json create mode 100644 icons-metadata/cloud-upload-accent.json create mode 100644 icons-metadata/cloud-upload.json create mode 100644 icons-metadata/collection.json create mode 100644 icons-metadata/color-swatch.json create mode 100644 icons-metadata/confetti.json create mode 100644 icons-metadata/copy.json create mode 100644 icons-metadata/crown-2-fill.json create mode 100644 icons-metadata/crown.json create mode 100644 icons-metadata/currency-dollar.json create mode 100644 icons-metadata/current-location.json create mode 100644 icons-metadata/device-desktop-analytics.json create mode 100644 icons-metadata/device-desktop-off.json create mode 100644 icons-metadata/device-desktop.json create mode 100644 icons-metadata/device-laptop.json create mode 100644 icons-metadata/device-tv.json create mode 100644 icons-metadata/diamond.json create mode 100644 icons-metadata/discount-2.json create mode 100644 icons-metadata/discount.json create mode 100644 icons-metadata/disk.json create mode 100644 icons-metadata/dots-vertical.json rename icons-metadata/{check_box_empty.json => download-accent.json} (50%) create mode 100644 icons-metadata/download.json create mode 100644 icons-metadata/edit-icon.json create mode 100644 icons-metadata/edit.json create mode 100644 icons-metadata/external-link.json create mode 100644 icons-metadata/eye-check.json create mode 100644 icons-metadata/eye-off.json create mode 100644 icons-metadata/eye.json create mode 100644 icons-metadata/facebook.json create mode 100644 icons-metadata/file-download.json create mode 100644 icons-metadata/file-export.json create mode 100644 icons-metadata/file-report.json create mode 100644 icons-metadata/file-search.json create mode 100644 icons-metadata/filter-off.json create mode 100644 icons-metadata/filter.json create mode 100644 icons-metadata/flag-fill.json create mode 100644 icons-metadata/flag-off.json create mode 100644 icons-metadata/flag.json create mode 100644 icons-metadata/folder-download.json create mode 100644 icons-metadata/folder-eye.json create mode 100644 icons-metadata/folder-fill.json create mode 100644 icons-metadata/folder-minus.json create mode 100644 icons-metadata/folder-off.json create mode 100644 icons-metadata/folder-plus.json create mode 100644 icons-metadata/folder-upload.json create mode 100644 icons-metadata/folder-x.json create mode 100644 icons-metadata/folder.json create mode 100644 icons-metadata/folders.json create mode 100644 icons-metadata/google-color.json create mode 100644 icons-metadata/grab-hand.json create mode 100644 icons-metadata/grid-dots.json create mode 100644 icons-metadata/grid-view-1.json create mode 100644 icons-metadata/grid-view-2.json create mode 100644 icons-metadata/home-2.json create mode 100644 icons-metadata/home-mix.json create mode 100644 icons-metadata/image-border.json create mode 100644 icons-metadata/info-circle.json create mode 100644 icons-metadata/info-cirlce-2.json create mode 100644 icons-metadata/info-square.json create mode 100644 icons-metadata/info.json create mode 100644 icons-metadata/key-2.json create mode 100644 icons-metadata/key-duplicate.json create mode 100644 icons-metadata/key.json create mode 100644 icons-metadata/layout-sidebar-right-mix.json create mode 100644 icons-metadata/link.json create mode 100644 icons-metadata/list-fill.json create mode 100644 icons-metadata/loader.json create mode 100644 icons-metadata/lock-2.json create mode 100644 icons-metadata/lock-off.json create mode 100644 icons-metadata/lock-open.json create mode 100644 icons-metadata/lock.json create mode 100644 icons-metadata/loop.json create mode 100644 icons-metadata/loupe-fill.json create mode 100644 icons-metadata/mail.json create mode 100644 icons-metadata/map-2.json create mode 100644 icons-metadata/map-pin-off.json create mode 100644 icons-metadata/map-pin.json create mode 100644 icons-metadata/minus.json create mode 100644 icons-metadata/mood-crazy-happy.json create mode 100644 icons-metadata/mood-empty.json create mode 100644 icons-metadata/mood-gray.json create mode 100644 icons-metadata/mood-sad.json create mode 100644 icons-metadata/mood-smile.json create mode 100644 icons-metadata/mood.json create mode 100644 icons-metadata/mouse-left-2.json create mode 100644 icons-metadata/mouse-left.json create mode 100644 icons-metadata/mouse-right.json create mode 100644 icons-metadata/none-selected.json create mode 100644 icons-metadata/palette-fill.json create mode 100644 icons-metadata/palette.json create mode 100644 icons-metadata/pause-fill.json create mode 100644 icons-metadata/photo-off-2.json create mode 100644 icons-metadata/photo-off.json create mode 100644 icons-metadata/photo-stack.json create mode 100644 icons-metadata/photo.json create mode 100644 icons-metadata/pinned.json create mode 100644 icons-metadata/play-fill.json create mode 100644 icons-metadata/play.json rename icons-metadata/{play-di.json => player.json} (58%) create mode 100644 icons-metadata/plus.json create mode 100644 icons-metadata/question-mark.json create mode 100644 icons-metadata/recull.json create mode 100644 icons-metadata/redeem.json create mode 100644 icons-metadata/refresh-2.json create mode 100644 icons-metadata/refresh-alert.json create mode 100644 icons-metadata/refresh.json create mode 100644 icons-metadata/reload-alert.json create mode 100644 icons-metadata/rotate-clockwise.json create mode 100644 icons-metadata/rotate.json create mode 100644 icons-metadata/scissors.json create mode 100644 icons-metadata/search.json create mode 100644 icons-metadata/share.json create mode 100644 icons-metadata/shopping-cart-discount.json create mode 100644 icons-metadata/shopping-cart.json create mode 100644 icons-metadata/sort-ascending-2.json create mode 100644 icons-metadata/sort-ascending-letters.json create mode 100644 icons-metadata/sort-ascending-numbers.json create mode 100644 icons-metadata/sort-ascending.json create mode 100644 icons-metadata/sort-descending-2.json create mode 100644 icons-metadata/sort-descending-letters.json create mode 100644 icons-metadata/sort-descending-numbers.json create mode 100644 icons-metadata/sort-descending.json create mode 100644 icons-metadata/sparkle.json create mode 100644 icons-metadata/spray.json create mode 100644 icons-metadata/spray_2.json create mode 100644 icons-metadata/stack-double.json create mode 100644 icons-metadata/stack-triple.json create mode 100644 icons-metadata/star-fill-off.json create mode 100644 icons-metadata/star-fill.json create mode 100644 icons-metadata/star-off.json create mode 100644 icons-metadata/star.json create mode 100644 icons-metadata/thumb-down.json create mode 100644 icons-metadata/thumb-up.json create mode 100644 icons-metadata/trash-off.json create mode 100644 icons-metadata/trash.json create mode 100644 icons-metadata/unlink.json create mode 100644 icons-metadata/upload-2.json create mode 100644 icons-metadata/upload-accent.json create mode 100644 icons-metadata/upload-c1-cat.json create mode 100644 icons-metadata/upload-lr-cat.json create mode 100644 icons-metadata/upload.json create mode 100644 icons-metadata/user-check.json create mode 100644 icons-metadata/user-exclamation.json create mode 100644 icons-metadata/user-minus.json create mode 100644 icons-metadata/user-off.json create mode 100644 icons-metadata/user-plus.json create mode 100644 icons-metadata/user-x.json create mode 100644 icons-metadata/user.json create mode 100644 icons-metadata/users.json create mode 100644 icons-metadata/view-all.json create mode 100644 icons-metadata/viewfinder.json create mode 100644 icons-metadata/wifi-1.json create mode 100644 icons-metadata/wifi-2.json create mode 100644 icons-metadata/wifi-off.json create mode 100644 icons-metadata/wifi.json create mode 100644 icons-metadata/world.json create mode 100644 icons-metadata/writing.json create mode 100644 icons-metadata/x.json create mode 100644 icons-metadata/zoom-in.json create mode 100644 icons-metadata/zoom-out.json create mode 100644 icons-metadata/zoom-question.json create mode 100644 icons-optimized/Import.svg create mode 100644 icons-optimized/adjustments-horizontal.svg create mode 100644 icons-optimized/adjustments.svg create mode 100644 icons-optimized/aftershoot-credit.svg create mode 100644 icons-optimized/aftershoot-logo.svg create mode 100644 icons-optimized/alarm.svg rename icons-optimized/{alert-circle-fill.svg => alert-circle-accent.svg} (100%) create mode 100644 icons-optimized/alert-circle.svg create mode 100644 icons-optimized/alert-octagon.svg rename icons-optimized/{alert-triangle-fill.svg => alert-triangle-accent.svg} (100%) create mode 100644 icons-optimized/alert-triangle.svg create mode 100644 icons-optimized/apple.svg create mode 100644 icons-optimized/arrow-curve-fill.svg create mode 100644 icons-optimized/arrow-down.svg create mode 100644 icons-optimized/arrow-left.svg create mode 100644 icons-optimized/arrow-narrow-left.svg create mode 100644 icons-optimized/arrow-narrow-right.svg create mode 100644 icons-optimized/arrow-right.svg create mode 100644 icons-optimized/arrow-sort-2.svg create mode 100644 icons-optimized/arrow-up.svg create mode 100644 icons-optimized/arrows-diagonal.svg create mode 100644 icons-optimized/arrows-sort.svg rename icons-optimized/{atom-di.svg => atom-accent.svg} (98%) create mode 100644 icons-optimized/atom.svg create mode 100644 icons-optimized/ban.svg create mode 100644 icons-optimized/bell-minus.svg create mode 100644 icons-optimized/bell-off.svg create mode 100644 icons-optimized/bell-plus.svg create mode 100644 icons-optimized/bell-ringing-2.svg create mode 100644 icons-optimized/bell-ringing.svg create mode 100644 icons-optimized/bell-x.svg create mode 100644 icons-optimized/bell.svg create mode 100644 icons-optimized/brand-facebook.svg create mode 100644 icons-optimized/brand-github.svg create mode 100644 icons-optimized/brand-instagram.svg create mode 100644 icons-optimized/brand-twitter.svg create mode 100644 icons-optimized/brand-whatsapp.svg create mode 100644 icons-optimized/brand-youtube.svg create mode 100644 icons-optimized/bulb-off.svg create mode 100644 icons-optimized/bulb.svg create mode 100644 icons-optimized/check-box-empty.svg create mode 100644 icons-optimized/check.svg delete mode 100644 icons-optimized/check_box_empty.svg create mode 100644 icons-optimized/checkbox-blue-accent.svg create mode 100644 icons-optimized/checkbox-green-accent.svg create mode 100644 icons-optimized/checkbox-partial-blue-accent.svg create mode 100644 icons-optimized/chevron-down.svg create mode 100644 icons-optimized/chevron-left.svg create mode 100644 icons-optimized/chevron-right.svg create mode 100644 icons-optimized/chevron-up.svg create mode 100644 icons-optimized/chevrons-left.svg create mode 100644 icons-optimized/chevrons-right.svg create mode 100644 icons-optimized/circle-check-2.svg create mode 100644 icons-optimized/circle-check.svg create mode 100644 icons-optimized/circle-cross-accent.svg create mode 100644 icons-optimized/circle-fill.svg create mode 100644 icons-optimized/circle.svg create mode 100644 icons-optimized/clock.svg create mode 100644 icons-optimized/cloud-upload-accent.svg create mode 100644 icons-optimized/cloud-upload.svg create mode 100644 icons-optimized/collection.svg create mode 100644 icons-optimized/color-swatch.svg create mode 100644 icons-optimized/confetti.svg create mode 100644 icons-optimized/copy.svg create mode 100644 icons-optimized/crown-2-fill.svg create mode 100644 icons-optimized/crown.svg create mode 100644 icons-optimized/currency-dollar.svg create mode 100644 icons-optimized/current-location.svg create mode 100644 icons-optimized/device-desktop-analytics.svg create mode 100644 icons-optimized/device-desktop-off.svg create mode 100644 icons-optimized/device-desktop.svg create mode 100644 icons-optimized/device-laptop.svg create mode 100644 icons-optimized/device-tv.svg create mode 100644 icons-optimized/diamond.svg create mode 100644 icons-optimized/discount-2.svg create mode 100644 icons-optimized/discount.svg create mode 100644 icons-optimized/disk.svg create mode 100644 icons-optimized/dots-vertical.svg create mode 100644 icons-optimized/download-accent.svg create mode 100644 icons-optimized/download.svg create mode 100644 icons-optimized/edit-icon.svg create mode 100644 icons-optimized/edit.svg create mode 100644 icons-optimized/external-link.svg create mode 100644 icons-optimized/eye-check.svg create mode 100644 icons-optimized/eye-off.svg create mode 100644 icons-optimized/eye.svg create mode 100644 icons-optimized/facebook.svg create mode 100644 icons-optimized/file-download.svg create mode 100644 icons-optimized/file-export.svg create mode 100644 icons-optimized/file-report.svg create mode 100644 icons-optimized/file-search.svg create mode 100644 icons-optimized/filter-off.svg create mode 100644 icons-optimized/filter.svg create mode 100644 icons-optimized/flag-fill.svg create mode 100644 icons-optimized/flag-off.svg create mode 100644 icons-optimized/flag.svg create mode 100644 icons-optimized/folder-download.svg create mode 100644 icons-optimized/folder-eye.svg create mode 100644 icons-optimized/folder-fill.svg create mode 100644 icons-optimized/folder-minus.svg create mode 100644 icons-optimized/folder-off.svg create mode 100644 icons-optimized/folder-plus.svg create mode 100644 icons-optimized/folder-upload.svg create mode 100644 icons-optimized/folder-x.svg create mode 100644 icons-optimized/folder.svg create mode 100644 icons-optimized/folders.svg create mode 100644 icons-optimized/google-color.svg create mode 100644 icons-optimized/grab-hand.svg create mode 100644 icons-optimized/grid-dots.svg create mode 100644 icons-optimized/grid-view-1.svg create mode 100644 icons-optimized/grid-view-2.svg create mode 100644 icons-optimized/home-2.svg create mode 100644 icons-optimized/home-mix.svg create mode 100644 icons-optimized/image-border.svg create mode 100644 icons-optimized/info-circle.svg create mode 100644 icons-optimized/info-cirlce-2.svg create mode 100644 icons-optimized/info-square.svg create mode 100644 icons-optimized/info.svg create mode 100644 icons-optimized/key-2.svg create mode 100644 icons-optimized/key-duplicate.svg create mode 100644 icons-optimized/key.svg create mode 100644 icons-optimized/layout-sidebar-right-mix.svg create mode 100644 icons-optimized/link.svg create mode 100644 icons-optimized/list-fill.svg create mode 100644 icons-optimized/loader.svg create mode 100644 icons-optimized/lock-2.svg create mode 100644 icons-optimized/lock-off.svg create mode 100644 icons-optimized/lock-open.svg create mode 100644 icons-optimized/lock.svg create mode 100644 icons-optimized/loop.svg create mode 100644 icons-optimized/loupe-fill.svg create mode 100644 icons-optimized/mail.svg create mode 100644 icons-optimized/map-2.svg create mode 100644 icons-optimized/map-pin-off.svg create mode 100644 icons-optimized/map-pin.svg create mode 100644 icons-optimized/minus.svg create mode 100644 icons-optimized/mood-crazy-happy.svg create mode 100644 icons-optimized/mood-empty.svg create mode 100644 icons-optimized/mood-gray.svg create mode 100644 icons-optimized/mood-sad.svg create mode 100644 icons-optimized/mood-smile.svg create mode 100644 icons-optimized/mood.svg create mode 100644 icons-optimized/mouse-left-2.svg create mode 100644 icons-optimized/mouse-left.svg create mode 100644 icons-optimized/mouse-right.svg create mode 100644 icons-optimized/none-selected.svg create mode 100644 icons-optimized/palette-fill.svg create mode 100644 icons-optimized/palette.svg create mode 100644 icons-optimized/pause-fill.svg create mode 100644 icons-optimized/photo-off-2.svg create mode 100644 icons-optimized/photo-off.svg create mode 100644 icons-optimized/photo-stack.svg create mode 100644 icons-optimized/photo.svg create mode 100644 icons-optimized/pinned.svg create mode 100644 icons-optimized/play-fill.svg create mode 100644 icons-optimized/play.svg rename icons-optimized/{play-di.svg => player.svg} (100%) create mode 100644 icons-optimized/plus.svg create mode 100644 icons-optimized/question-mark.svg create mode 100644 icons-optimized/recull.svg create mode 100644 icons-optimized/redeem.svg create mode 100644 icons-optimized/refresh-2.svg create mode 100644 icons-optimized/refresh-alert.svg create mode 100644 icons-optimized/refresh.svg create mode 100644 icons-optimized/reload-alert.svg create mode 100644 icons-optimized/rotate-clockwise.svg create mode 100644 icons-optimized/rotate.svg create mode 100644 icons-optimized/scissors.svg create mode 100644 icons-optimized/search.svg create mode 100644 icons-optimized/share.svg create mode 100644 icons-optimized/shopping-cart-discount.svg create mode 100644 icons-optimized/shopping-cart.svg create mode 100644 icons-optimized/sort-ascending-2.svg create mode 100644 icons-optimized/sort-ascending-letters.svg create mode 100644 icons-optimized/sort-ascending-numbers.svg create mode 100644 icons-optimized/sort-ascending.svg create mode 100644 icons-optimized/sort-descending-2.svg create mode 100644 icons-optimized/sort-descending-letters.svg create mode 100644 icons-optimized/sort-descending-numbers.svg create mode 100644 icons-optimized/sort-descending.svg create mode 100644 icons-optimized/sparkle.svg create mode 100644 icons-optimized/spray.svg create mode 100644 icons-optimized/spray_2.svg create mode 100644 icons-optimized/stack-double.svg create mode 100644 icons-optimized/stack-triple.svg create mode 100644 icons-optimized/star-fill-off.svg create mode 100644 icons-optimized/star-fill.svg create mode 100644 icons-optimized/star-off.svg create mode 100644 icons-optimized/star.svg create mode 100644 icons-optimized/thumb-down.svg create mode 100644 icons-optimized/thumb-up.svg create mode 100644 icons-optimized/trash-off.svg create mode 100644 icons-optimized/trash.svg create mode 100644 icons-optimized/unlink.svg create mode 100644 icons-optimized/upload-2.svg create mode 100644 icons-optimized/upload-accent.svg create mode 100644 icons-optimized/upload-c1-cat.svg create mode 100644 icons-optimized/upload-lr-cat.svg create mode 100644 icons-optimized/upload.svg create mode 100644 icons-optimized/user-check.svg create mode 100644 icons-optimized/user-exclamation.svg create mode 100644 icons-optimized/user-minus.svg create mode 100644 icons-optimized/user-off.svg create mode 100644 icons-optimized/user-plus.svg create mode 100644 icons-optimized/user-x.svg create mode 100644 icons-optimized/user.svg create mode 100644 icons-optimized/users.svg create mode 100644 icons-optimized/view-all.svg create mode 100644 icons-optimized/viewfinder.svg create mode 100644 icons-optimized/wifi-1.svg create mode 100644 icons-optimized/wifi-2.svg create mode 100644 icons-optimized/wifi-off.svg create mode 100644 icons-optimized/wifi.svg create mode 100644 icons-optimized/world.svg create mode 100644 icons-optimized/writing.svg create mode 100644 icons-optimized/x.svg create mode 100644 icons-optimized/zoom-in.svg create mode 100644 icons-optimized/zoom-out.svg create mode 100644 icons-optimized/zoom-question.svg delete mode 100644 icons-original/_not-include/add_folder.svg rename icons-original/{no-change/logo.svg => _not-include/aftershoot-color-logo.svg} (100%) delete mode 100644 icons-original/_not-include/bulb.svg rename icons-original/accent/{check_box.svg => checkbox-blue-accent.svg} (100%) rename icons-original/{_accent/check_box.svg => accent/checkbox-green-accent.svg} (77%) rename icons-original/{_accent/partially_checked.svg => accent/checkbox-partial-blue-accent.svg} (61%) rename icons-original/{_accent => accent}/cloud-upload-accent.svg (87%) rename icons-original/{_accent => accent}/download-accent.svg (82%) rename icons-original/{_accent => accent}/upload-accent.svg (61%) rename icons-original/{no-change => logo}/aftershoot-credit.svg (100%) rename icons-original/{_color/edits_logo_text.svg => logo/edit-icon.svg} (100%) rename icons-original/{no-change => logo}/google-color.svg (100%) rename icons-original/{no-change => logo}/grab-hand.svg (100%) rename icons-original/{_mix => mix}/check-box-empty.svg (100%) rename icons-original/{_mix => mix}/collection.svg (100%) rename icons-original/{_mix => mix}/flag-fill.svg (100%) rename icons-original/{_mix => mix}/folder-fill.svg (100%) rename icons-original/{_mix => mix}/image-border.svg (100%) rename icons-original/{_mix => mix}/none-selected.svg (100%) rename icons-original/{_mix => mix}/play.svg (100%) rename icons-original/{_mix => mix}/sparkle.svg (100%) rename icons-original/{_mix => mix}/star-fill.svg (100%) rename icons-original/{_mix => mix}/upload-c1-cat.svg (100%) rename icons-original/{_mix => mix}/upload-lr-cat.svg (100%) rename icons-original/{_accent/mood_gray.svg => no-change/mood-gray.svg} (100%) rename icons-original/{_accent => no-change}/mood.svg (100%) rename icons-original/{_outline => outline}/Import.svg (100%) rename icons-original/{_outline => outline}/adjustments-horizontal.svg (100%) rename icons-original/{_outline => outline}/adjustments.svg (100%) rename icons-original/{_outline => outline}/alarm.svg (100%) rename icons-original/{_outline => outline}/alert-circle.svg (100%) rename icons-original/{_outline => outline}/alert-octagon.svg (100%) rename icons-original/{_outline => outline}/alert-triangle.svg (100%) rename icons-original/{_outline => outline}/arrow-down.svg (100%) rename icons-original/{_outline => outline}/arrow-left.svg (100%) rename icons-original/{_outline => outline}/arrow-narrow-left.svg (100%) rename icons-original/{_outline => outline}/arrow-narrow-right.svg (100%) rename icons-original/{_outline => outline}/arrow-right.svg (100%) rename icons-original/{_outline => outline}/arrow-sort-2.svg (100%) rename icons-original/{_outline => outline}/arrow-up.svg (100%) rename icons-original/{_outline => outline}/arrows-diagonal.svg (100%) rename icons-original/{_outline => outline}/arrows-sort.svg (100%) rename icons-original/{_outline => outline}/atom.svg (100%) rename icons-original/{_outline => outline}/ban.svg (100%) rename icons-original/{_outline => outline}/bell-minus.svg (100%) rename icons-original/{_outline => outline}/bell-off.svg (100%) rename icons-original/{_outline => outline}/bell-plus.svg (100%) rename icons-original/{_outline => outline}/bell-ringing-2.svg (100%) rename icons-original/{_outline => outline}/bell-ringing.svg (100%) rename icons-original/{_outline => outline}/bell-x.svg (100%) rename icons-original/{_outline => outline}/bell.svg (100%) rename icons-original/{_outline => outline}/brand-facebook.svg (100%) rename icons-original/{_outline => outline}/brand-github.svg (100%) rename icons-original/{_outline => outline}/brand-instagram.svg (100%) rename icons-original/{_outline => outline}/brand-twitter.svg (100%) rename icons-original/{_outline => outline}/brand-whatsapp.svg (100%) rename icons-original/{_outline => outline}/brand-youtube.svg (100%) rename icons-original/{_outline => outline}/bulb-off.svg (100%) rename icons-original/{_outline => outline}/bulb.svg (100%) rename icons-original/{_outline => outline}/check.svg (100%) rename icons-original/{_outline => outline}/chevron-down.svg (100%) rename icons-original/{_outline => outline}/chevron-left.svg (100%) rename icons-original/{_outline => outline}/chevron-right.svg (100%) rename icons-original/{_outline => outline}/chevron-up.svg (100%) rename icons-original/{_outline => outline}/chevrons-left.svg (100%) rename icons-original/{_outline => outline}/chevrons-right.svg (100%) rename icons-original/{_outline => outline}/circle-check-2.svg (100%) rename icons-original/{_outline => outline}/circle-check.svg (100%) rename icons-original/{_outline => outline}/circle.svg (100%) rename icons-original/{_outline => outline}/clock.svg (100%) rename icons-original/{_outline => outline}/cloud-upload.svg (100%) rename icons-original/{_outline => outline}/color-swatch.svg (100%) rename icons-original/{_outline => outline}/confetti.svg (100%) rename icons-original/{_outline => outline}/copy.svg (100%) rename icons-original/{_outline => outline}/crown.svg (100%) rename icons-original/{_outline => outline}/currency-dollar.svg (100%) rename icons-original/{_outline => outline}/current-location.svg (100%) rename icons-original/{_outline => outline}/device-desktop-analytics.svg (100%) rename icons-original/{_outline => outline}/device-desktop-off.svg (100%) rename icons-original/{_outline => outline}/device-desktop.svg (100%) rename icons-original/{_outline => outline}/device-laptop.svg (100%) rename icons-original/{_outline => outline}/device-tv.svg (100%) rename icons-original/{_outline => outline}/diamond.svg (100%) rename icons-original/{_outline => outline}/discount-2.svg (100%) rename icons-original/{_outline => outline}/discount.svg (100%) rename icons-original/{_outline => outline}/disk.svg (100%) rename icons-original/{_outline => outline}/dots-vertical.svg (100%) rename icons-original/{_outline => outline}/download.svg (100%) rename icons-original/{_outline => outline}/edit.svg (100%) rename icons-original/{_outline => outline}/external-link.svg (100%) rename icons-original/{_outline => outline}/eye-check.svg (100%) rename icons-original/{_outline => outline}/eye-off.svg (100%) rename icons-original/{_outline => outline}/eye.svg (100%) rename icons-original/{_outline => outline}/file-download.svg (100%) rename icons-original/{_outline => outline}/file-export.svg (100%) rename icons-original/{_outline => outline}/file-report.svg (100%) rename icons-original/{_outline => outline}/file-search.svg (100%) rename icons-original/{_outline => outline}/filter-off.svg (100%) rename icons-original/{_outline => outline}/filter.svg (100%) rename icons-original/{_outline => outline}/flag-off.svg (100%) rename icons-original/{_outline => outline}/flag.svg (100%) rename icons-original/{_outline => outline}/folder-download.svg (100%) rename icons-original/{_outline => outline}/folder-eye.svg (100%) rename icons-original/{_outline => outline}/folder-minus.svg (100%) rename icons-original/{_outline => outline}/folder-off.svg (100%) rename icons-original/{_outline => outline}/folder-plus.svg (100%) rename icons-original/{_outline => outline}/folder-upload.svg (100%) rename icons-original/{_outline => outline}/folder-x.svg (100%) rename icons-original/{_outline => outline}/folder.svg (100%) rename icons-original/{_outline => outline}/folders.svg (100%) rename icons-original/{_outline => outline}/grid-dots.svg (100%) rename icons-original/{_outline => outline}/home-2.svg (100%) rename icons-original/{_outline => outline}/info-circle.svg (100%) rename icons-original/{_outline => outline}/info-cirlce-2.svg (100%) rename icons-original/{_outline => outline}/info-square.svg (100%) rename icons-original/{_outline => outline}/info.svg (100%) rename icons-original/{_outline => outline}/key-2.svg (100%) rename icons-original/{_outline => outline}/key-duplicate.svg (100%) rename icons-original/{_outline => outline}/key.svg (100%) rename icons-original/{_outline => outline}/link.svg (100%) rename icons-original/{_outline => outline}/loader.svg (100%) rename icons-original/{_outline => outline}/lock-2.svg (100%) rename icons-original/{_outline => outline}/lock-off.svg (100%) rename icons-original/{_outline => outline}/lock-open.svg (100%) rename icons-original/{_outline => outline}/lock.svg (100%) rename icons-original/{_outline => outline}/loop.svg (100%) rename icons-original/{_outline => outline}/mail.svg (100%) rename icons-original/{_outline => outline}/map-2.svg (100%) rename icons-original/{_outline => outline}/map-pin-off.svg (100%) rename icons-original/{_outline => outline}/map-pin.svg (100%) rename icons-original/{_outline => outline}/minus.svg (100%) rename icons-original/{_outline => outline}/mood-crazy-happy.svg (100%) rename icons-original/{_outline => outline}/mood-empty.svg (100%) rename icons-original/{_outline => outline}/mood-sad.svg (100%) rename icons-original/{_outline => outline}/mood-smile.svg (100%) rename icons-original/{_outline => outline}/mouse-left.svg (100%) rename icons-original/{_outline => outline}/mouse-right.svg (100%) rename icons-original/{_outline => outline}/no-duplicate.svg (100%) rename icons-original/{_outline => outline}/palette.svg (100%) rename icons-original/{_outline => outline}/photo-off-2.svg (100%) rename icons-original/{_outline => outline}/photo-off.svg (100%) rename icons-original/{_outline => outline}/photo-stack.svg (100%) rename icons-original/{_outline => outline}/photo.svg (100%) rename icons-original/{_outline => outline}/pinned.svg (100%) rename icons-original/{_outline => outline}/plus.svg (100%) rename icons-original/{_outline => outline}/question-mark.svg (100%) rename icons-original/{_outline => outline}/redeem.svg (100%) rename icons-original/{_outline => outline}/refresh-2.svg (100%) rename icons-original/{_outline => outline}/refresh-alert.svg (100%) rename icons-original/{_outline => outline}/refresh.svg (100%) rename icons-original/{_outline => outline}/reload-alert.svg (100%) rename icons-original/{_outline => outline}/rotate-clockwise.svg (100%) rename icons-original/{_outline => outline}/rotate.svg (100%) rename icons-original/{_outline => outline}/search.svg (100%) rename icons-original/{_outline => outline}/share.svg (100%) rename icons-original/{_outline => outline}/shopping-cart-discount.svg (100%) rename icons-original/{_outline => outline}/shopping-cart.svg (100%) rename icons-original/{_outline => outline}/sort-ascending-2.svg (100%) rename icons-original/{_outline => outline}/sort-ascending-letters.svg (100%) rename icons-original/{_outline => outline}/sort-ascending-numbers.svg (100%) rename icons-original/{_outline => outline}/sort-ascending.svg (100%) rename icons-original/{_outline => outline}/sort-descending-2.svg (100%) rename icons-original/{_outline => outline}/sort-descending-letters.svg (100%) rename icons-original/{_outline => outline}/sort-descending-numbers.svg (100%) rename icons-original/{_outline => outline}/sort-descending.svg (100%) rename icons-original/{_outline => outline}/spray.svg (100%) rename icons-original/{_outline => outline}/spray_2.svg (100%) rename icons-original/{_outline => outline}/stack-double.svg (100%) rename icons-original/{_outline => outline}/stack-triple.svg (100%) rename icons-original/{_outline => outline}/star-off.svg (100%) rename icons-original/{_outline => outline}/star.svg (100%) rename icons-original/{_outline => outline}/thumb-down.svg (100%) rename icons-original/{_outline => outline}/thumb-up.svg (100%) rename icons-original/{_outline => outline}/trash-off.svg (100%) rename icons-original/{_outline => outline}/trash.svg (100%) rename icons-original/{_outline => outline}/unlink.svg (100%) rename icons-original/{_outline => outline}/upload-2.svg (100%) rename icons-original/{_outline => outline}/upload.svg (100%) rename icons-original/{_outline => outline}/user-check.svg (100%) rename icons-original/{_outline => outline}/user-exclamation.svg (100%) rename icons-original/{_outline => outline}/user-minus.svg (100%) rename icons-original/{_outline => outline}/user-off.svg (100%) rename icons-original/{_outline => outline}/user-plus.svg (100%) rename icons-original/{_outline => outline}/user-x.svg (100%) rename icons-original/{_outline => outline}/user.svg (100%) rename icons-original/{_outline => outline}/users.svg (100%) rename icons-original/{_outline => outline}/view-all.svg (100%) rename icons-original/{_outline => outline}/viewfinder.svg (100%) rename icons-original/{_outline => outline}/wifi-1.svg (100%) rename icons-original/{_outline => outline}/wifi-2.svg (100%) rename icons-original/{_outline => outline}/wifi-off.svg (100%) rename icons-original/{_outline => outline}/wifi.svg (100%) rename icons-original/{_outline => outline}/world.svg (100%) rename icons-original/{_outline => outline}/writing.svg (100%) rename icons-original/{_outline => outline}/x.svg (100%) rename icons-original/{_outline => outline}/zoom-in.svg (100%) rename icons-original/{_outline => outline}/zoom-out.svg (100%) rename icons-original/{_outline => outline}/zoom-question.svg (100%) create mode 100644 src/icons-test/Import.tsx create mode 100644 src/icons-test/adjustments-horizontal.tsx create mode 100644 src/icons-test/adjustments.tsx create mode 100644 src/icons-test/aftershoot-credit.tsx create mode 100644 src/icons-test/aftershoot-logo.tsx create mode 100644 src/icons-test/alarm.tsx rename src/icons-test/{alert-circle-fill.tsx => alert-circle-accent.tsx} (91%) create mode 100644 src/icons-test/alert-circle.tsx create mode 100644 src/icons-test/alert-octagon.tsx rename src/icons-test/{alert-triangle-fill.tsx => alert-triangle-accent.tsx} (85%) create mode 100644 src/icons-test/alert-triangle.tsx create mode 100644 src/icons-test/apple.tsx create mode 100644 src/icons-test/arrow-curve-fill.tsx create mode 100644 src/icons-test/arrow-down.tsx create mode 100644 src/icons-test/arrow-left.tsx create mode 100644 src/icons-test/arrow-narrow-left.tsx create mode 100644 src/icons-test/arrow-narrow-right.tsx create mode 100644 src/icons-test/arrow-right.tsx create mode 100644 src/icons-test/arrow-sort-2.tsx create mode 100644 src/icons-test/arrow-up.tsx create mode 100644 src/icons-test/arrows-diagonal.tsx create mode 100644 src/icons-test/arrows-sort.tsx rename src/icons-test/{atom-di.tsx => atom-accent.tsx} (93%) create mode 100644 src/icons-test/atom.tsx create mode 100644 src/icons-test/ban.tsx create mode 100644 src/icons-test/bell-minus.tsx create mode 100644 src/icons-test/bell-off.tsx create mode 100644 src/icons-test/bell-plus.tsx create mode 100644 src/icons-test/bell-ringing-2.tsx create mode 100644 src/icons-test/bell-ringing.tsx create mode 100644 src/icons-test/bell-x.tsx create mode 100644 src/icons-test/bell.tsx create mode 100644 src/icons-test/brand-facebook.tsx create mode 100644 src/icons-test/brand-github.tsx create mode 100644 src/icons-test/brand-instagram.tsx create mode 100644 src/icons-test/brand-twitter.tsx create mode 100644 src/icons-test/brand-whatsapp.tsx create mode 100644 src/icons-test/brand-youtube.tsx create mode 100644 src/icons-test/bulb-off.tsx create mode 100644 src/icons-test/bulb.tsx rename src/icons-test/{check_box_empty.tsx => check-box-empty.tsx} (63%) create mode 100644 src/icons-test/check.tsx create mode 100644 src/icons-test/checkbox-blue-accent.tsx create mode 100644 src/icons-test/checkbox-green-accent.tsx create mode 100644 src/icons-test/checkbox-partial-blue-accent.tsx create mode 100644 src/icons-test/chevron-down.tsx create mode 100644 src/icons-test/chevron-left.tsx create mode 100644 src/icons-test/chevron-right.tsx create mode 100644 src/icons-test/chevron-up.tsx create mode 100644 src/icons-test/chevrons-left.tsx create mode 100644 src/icons-test/chevrons-right.tsx create mode 100644 src/icons-test/circle-check-2.tsx create mode 100644 src/icons-test/circle-check.tsx create mode 100644 src/icons-test/circle-cross-accent.tsx create mode 100644 src/icons-test/circle-fill.tsx create mode 100644 src/icons-test/circle.tsx create mode 100644 src/icons-test/clock.tsx create mode 100644 src/icons-test/cloud-upload-accent.tsx create mode 100644 src/icons-test/cloud-upload.tsx create mode 100644 src/icons-test/collection.tsx create mode 100644 src/icons-test/color-swatch.tsx create mode 100644 src/icons-test/confetti.tsx create mode 100644 src/icons-test/copy.tsx create mode 100644 src/icons-test/crown-2-fill.tsx create mode 100644 src/icons-test/crown.tsx create mode 100644 src/icons-test/currency-dollar.tsx create mode 100644 src/icons-test/current-location.tsx create mode 100644 src/icons-test/device-desktop-analytics.tsx create mode 100644 src/icons-test/device-desktop-off.tsx create mode 100644 src/icons-test/device-desktop.tsx create mode 100644 src/icons-test/device-laptop.tsx create mode 100644 src/icons-test/device-tv.tsx create mode 100644 src/icons-test/diamond.tsx create mode 100644 src/icons-test/discount-2.tsx create mode 100644 src/icons-test/discount.tsx create mode 100644 src/icons-test/disk.tsx create mode 100644 src/icons-test/dots-vertical.tsx create mode 100644 src/icons-test/download-accent.tsx create mode 100644 src/icons-test/download.tsx create mode 100644 src/icons-test/edit-icon.tsx create mode 100644 src/icons-test/edit.tsx create mode 100644 src/icons-test/external-link.tsx create mode 100644 src/icons-test/eye-check.tsx create mode 100644 src/icons-test/eye-off.tsx create mode 100644 src/icons-test/eye.tsx create mode 100644 src/icons-test/facebook.tsx create mode 100644 src/icons-test/file-download.tsx create mode 100644 src/icons-test/file-export.tsx create mode 100644 src/icons-test/file-report.tsx create mode 100644 src/icons-test/file-search.tsx create mode 100644 src/icons-test/filter-off.tsx create mode 100644 src/icons-test/filter.tsx create mode 100644 src/icons-test/flag-fill.tsx create mode 100644 src/icons-test/flag-off.tsx create mode 100644 src/icons-test/flag.tsx create mode 100644 src/icons-test/folder-download.tsx create mode 100644 src/icons-test/folder-eye.tsx create mode 100644 src/icons-test/folder-fill.tsx create mode 100644 src/icons-test/folder-minus.tsx create mode 100644 src/icons-test/folder-off.tsx create mode 100644 src/icons-test/folder-plus.tsx create mode 100644 src/icons-test/folder-upload.tsx create mode 100644 src/icons-test/folder-x.tsx create mode 100644 src/icons-test/folder.tsx create mode 100644 src/icons-test/folders.tsx create mode 100644 src/icons-test/google-color.tsx create mode 100644 src/icons-test/grab-hand.tsx create mode 100644 src/icons-test/grid-dots.tsx create mode 100644 src/icons-test/grid-view-1.tsx create mode 100644 src/icons-test/grid-view-2.tsx create mode 100644 src/icons-test/home-2.tsx create mode 100644 src/icons-test/home-mix.tsx create mode 100644 src/icons-test/image-border.tsx create mode 100644 src/icons-test/info-circle.tsx create mode 100644 src/icons-test/info-cirlce-2.tsx create mode 100644 src/icons-test/info-square.tsx create mode 100644 src/icons-test/info.tsx create mode 100644 src/icons-test/key-2.tsx create mode 100644 src/icons-test/key-duplicate.tsx create mode 100644 src/icons-test/key.tsx create mode 100644 src/icons-test/layout-sidebar-right-mix.tsx create mode 100644 src/icons-test/link.tsx create mode 100644 src/icons-test/list-fill.tsx create mode 100644 src/icons-test/loader.tsx create mode 100644 src/icons-test/lock-2.tsx create mode 100644 src/icons-test/lock-off.tsx create mode 100644 src/icons-test/lock-open.tsx create mode 100644 src/icons-test/lock.tsx create mode 100644 src/icons-test/loop.tsx create mode 100644 src/icons-test/loupe-fill.tsx create mode 100644 src/icons-test/mail.tsx create mode 100644 src/icons-test/map-2.tsx create mode 100644 src/icons-test/map-pin-off.tsx create mode 100644 src/icons-test/map-pin.tsx create mode 100644 src/icons-test/minus.tsx create mode 100644 src/icons-test/mood-crazy-happy.tsx create mode 100644 src/icons-test/mood-empty.tsx create mode 100644 src/icons-test/mood-gray.tsx create mode 100644 src/icons-test/mood-sad.tsx create mode 100644 src/icons-test/mood-smile.tsx create mode 100644 src/icons-test/mood.tsx create mode 100644 src/icons-test/mouse-left-2.tsx create mode 100644 src/icons-test/mouse-left.tsx create mode 100644 src/icons-test/mouse-right.tsx create mode 100644 src/icons-test/none-selected.tsx create mode 100644 src/icons-test/palette-fill.tsx create mode 100644 src/icons-test/palette.tsx create mode 100644 src/icons-test/pause-fill.tsx create mode 100644 src/icons-test/photo-off-2.tsx create mode 100644 src/icons-test/photo-off.tsx create mode 100644 src/icons-test/photo-stack.tsx create mode 100644 src/icons-test/photo.tsx create mode 100644 src/icons-test/pinned.tsx create mode 100644 src/icons-test/play-fill.tsx create mode 100644 src/icons-test/play.tsx rename src/icons-test/{play-di.tsx => player.tsx} (94%) create mode 100644 src/icons-test/plus.tsx create mode 100644 src/icons-test/question-mark.tsx create mode 100644 src/icons-test/recull.tsx create mode 100644 src/icons-test/redeem.tsx create mode 100644 src/icons-test/refresh-2.tsx create mode 100644 src/icons-test/refresh-alert.tsx create mode 100644 src/icons-test/refresh.tsx create mode 100644 src/icons-test/reload-alert.tsx create mode 100644 src/icons-test/rotate-clockwise.tsx create mode 100644 src/icons-test/rotate.tsx create mode 100644 src/icons-test/scissors.tsx create mode 100644 src/icons-test/search.tsx create mode 100644 src/icons-test/share.tsx create mode 100644 src/icons-test/shopping-cart-discount.tsx create mode 100644 src/icons-test/shopping-cart.tsx create mode 100644 src/icons-test/sort-ascending-2.tsx create mode 100644 src/icons-test/sort-ascending-letters.tsx create mode 100644 src/icons-test/sort-ascending-numbers.tsx create mode 100644 src/icons-test/sort-ascending.tsx create mode 100644 src/icons-test/sort-descending-2.tsx create mode 100644 src/icons-test/sort-descending-letters.tsx create mode 100644 src/icons-test/sort-descending-numbers.tsx create mode 100644 src/icons-test/sort-descending.tsx create mode 100644 src/icons-test/sparkle.tsx create mode 100644 src/icons-test/spray.tsx create mode 100644 src/icons-test/spray_2.tsx create mode 100644 src/icons-test/stack-double.tsx create mode 100644 src/icons-test/stack-triple.tsx create mode 100644 src/icons-test/star-fill-off.tsx create mode 100644 src/icons-test/star-fill.tsx create mode 100644 src/icons-test/star-off.tsx create mode 100644 src/icons-test/star.tsx create mode 100644 src/icons-test/thumb-down.tsx create mode 100644 src/icons-test/thumb-up.tsx create mode 100644 src/icons-test/trash-off.tsx create mode 100644 src/icons-test/trash.tsx create mode 100644 src/icons-test/unlink.tsx create mode 100644 src/icons-test/upload-2.tsx create mode 100644 src/icons-test/upload-accent.tsx create mode 100644 src/icons-test/upload-c1-cat.tsx create mode 100644 src/icons-test/upload-lr-cat.tsx create mode 100644 src/icons-test/upload.tsx create mode 100644 src/icons-test/user-check.tsx create mode 100644 src/icons-test/user-exclamation.tsx create mode 100644 src/icons-test/user-minus.tsx create mode 100644 src/icons-test/user-off.tsx create mode 100644 src/icons-test/user-plus.tsx create mode 100644 src/icons-test/user-x.tsx create mode 100644 src/icons-test/user.tsx create mode 100644 src/icons-test/users.tsx create mode 100644 src/icons-test/view-all.tsx create mode 100644 src/icons-test/viewfinder.tsx create mode 100644 src/icons-test/wifi-1.tsx create mode 100644 src/icons-test/wifi-2.tsx create mode 100644 src/icons-test/wifi-off.tsx create mode 100644 src/icons-test/wifi.tsx create mode 100644 src/icons-test/world.tsx create mode 100644 src/icons-test/writing.tsx create mode 100644 src/icons-test/x.tsx create mode 100644 src/icons-test/zoom-in.tsx create mode 100644 src/icons-test/zoom-out.tsx create mode 100644 src/icons-test/zoom-question.tsx create mode 100644 src/stories/Adjustments.stories.tsx create mode 100644 src/stories/AdjustmentsHorizontal.stories.tsx rename src/stories/{AlertTriangleFill.stories.tsx => AftershootCredit.stories.tsx} (86%) create mode 100644 src/stories/AftershootLogo.stories.tsx create mode 100644 src/stories/Alarm.stories.tsx create mode 100644 src/stories/AlertCircle.stories.tsx create mode 100644 src/stories/AlertCircleAccent.stories.tsx create mode 100644 src/stories/AlertOctagon.stories.tsx create mode 100644 src/stories/AlertTriangle.stories.tsx create mode 100644 src/stories/AlertTriangleAccent.stories.tsx create mode 100644 src/stories/Apple.stories.tsx create mode 100644 src/stories/ArrowCurveFill.stories.tsx create mode 100644 src/stories/ArrowDown.stories.tsx create mode 100644 src/stories/ArrowLeft.stories.tsx create mode 100644 src/stories/ArrowNarrowLeft.stories.tsx create mode 100644 src/stories/ArrowNarrowRight.stories.tsx create mode 100644 src/stories/ArrowRight.stories.tsx create mode 100644 src/stories/ArrowSort2.stories.tsx create mode 100644 src/stories/ArrowUp.stories.tsx create mode 100644 src/stories/ArrowsDiagonal.stories.tsx create mode 100644 src/stories/ArrowsSort.stories.tsx create mode 100644 src/stories/Atom.stories.tsx rename src/stories/{AlertCircleFill.stories.tsx => AtomAccent.stories.tsx} (87%) create mode 100644 src/stories/Ban.stories.tsx create mode 100644 src/stories/Bell.stories.tsx create mode 100644 src/stories/BellMinus.stories.tsx create mode 100644 src/stories/BellOff.stories.tsx create mode 100644 src/stories/BellPlus.stories.tsx create mode 100644 src/stories/BellRinging.stories.tsx create mode 100644 src/stories/BellRinging2.stories.tsx create mode 100644 src/stories/BellX.stories.tsx create mode 100644 src/stories/BrandFacebook.stories.tsx create mode 100644 src/stories/BrandGithub.stories.tsx create mode 100644 src/stories/BrandInstagram.stories.tsx create mode 100644 src/stories/BrandTwitter.stories.tsx create mode 100644 src/stories/BrandWhatsapp.stories.tsx create mode 100644 src/stories/BrandYoutube.stories.tsx create mode 100644 src/stories/Bulb.stories.tsx create mode 100644 src/stories/BulbOff.stories.tsx create mode 100644 src/stories/Check.stories.tsx create mode 100644 src/stories/CheckboxBlueAccent.stories.tsx create mode 100644 src/stories/CheckboxGreenAccent.stories.tsx create mode 100644 src/stories/CheckboxPartialBlueAccent.stories.tsx create mode 100644 src/stories/ChevronDown.stories.tsx create mode 100644 src/stories/ChevronLeft.stories.tsx create mode 100644 src/stories/ChevronRight.stories.tsx create mode 100644 src/stories/ChevronUp.stories.tsx create mode 100644 src/stories/ChevronsLeft.stories.tsx create mode 100644 src/stories/ChevronsRight.stories.tsx create mode 100644 src/stories/Circle.stories.tsx create mode 100644 src/stories/CircleCheck.stories.tsx create mode 100644 src/stories/CircleCheck2.stories.tsx create mode 100644 src/stories/CircleCrossAccent.stories.tsx create mode 100644 src/stories/CircleFill.stories.tsx create mode 100644 src/stories/Clock.stories.tsx create mode 100644 src/stories/CloudUpload.stories.tsx create mode 100644 src/stories/CloudUploadAccent.stories.tsx create mode 100644 src/stories/Collection.stories.tsx create mode 100644 src/stories/ColorSwatch.stories.tsx create mode 100644 src/stories/Confetti.stories.tsx create mode 100644 src/stories/Copy.stories.tsx create mode 100644 src/stories/Crown.stories.tsx create mode 100644 src/stories/Crown2Fill.stories.tsx create mode 100644 src/stories/CurrencyDollar.stories.tsx create mode 100644 src/stories/CurrentLocation.stories.tsx create mode 100644 src/stories/DeviceDesktop.stories.tsx create mode 100644 src/stories/DeviceDesktopAnalytics.stories.tsx create mode 100644 src/stories/DeviceDesktopOff.stories.tsx create mode 100644 src/stories/DeviceLaptop.stories.tsx create mode 100644 src/stories/DeviceTv.stories.tsx create mode 100644 src/stories/Diamond.stories.tsx create mode 100644 src/stories/Discount.stories.tsx create mode 100644 src/stories/Discount2.stories.tsx create mode 100644 src/stories/Disk.stories.tsx create mode 100644 src/stories/DotsVertical.stories.tsx create mode 100644 src/stories/Download.stories.tsx create mode 100644 src/stories/DownloadAccent.stories.tsx create mode 100644 src/stories/Edit.stories.tsx rename src/stories/{PlayDi.stories.tsx => EditIcon.stories.tsx} (89%) create mode 100644 src/stories/ExternalLink.stories.tsx create mode 100644 src/stories/Eye.stories.tsx create mode 100644 src/stories/EyeCheck.stories.tsx create mode 100644 src/stories/EyeOff.stories.tsx create mode 100644 src/stories/Facebook.stories.tsx create mode 100644 src/stories/FileDownload.stories.tsx create mode 100644 src/stories/FileExport.stories.tsx create mode 100644 src/stories/FileReport.stories.tsx create mode 100644 src/stories/FileSearch.stories.tsx create mode 100644 src/stories/Filter.stories.tsx create mode 100644 src/stories/FilterOff.stories.tsx create mode 100644 src/stories/Flag.stories.tsx create mode 100644 src/stories/FlagFill.stories.tsx create mode 100644 src/stories/FlagOff.stories.tsx create mode 100644 src/stories/Folder.stories.tsx create mode 100644 src/stories/FolderDownload.stories.tsx create mode 100644 src/stories/FolderEye.stories.tsx create mode 100644 src/stories/FolderFill.stories.tsx create mode 100644 src/stories/FolderMinus.stories.tsx create mode 100644 src/stories/FolderOff.stories.tsx create mode 100644 src/stories/FolderPlus.stories.tsx create mode 100644 src/stories/FolderUpload.stories.tsx create mode 100644 src/stories/FolderX.stories.tsx create mode 100644 src/stories/Folders.stories.tsx create mode 100644 src/stories/GoogleColor.stories.tsx create mode 100644 src/stories/GrabHand.stories.tsx create mode 100644 src/stories/GridDots.stories.tsx create mode 100644 src/stories/GridView1.stories.tsx create mode 100644 src/stories/GridView2.stories.tsx create mode 100644 src/stories/Home2.stories.tsx create mode 100644 src/stories/HomeMix.stories.tsx create mode 100644 src/stories/ImageBorder.stories.tsx create mode 100644 src/stories/Import.stories.tsx create mode 100644 src/stories/Info.stories.tsx create mode 100644 src/stories/InfoCircle.stories.tsx create mode 100644 src/stories/InfoCirlce2.stories.tsx create mode 100644 src/stories/InfoSquare.stories.tsx create mode 100644 src/stories/Key.stories.tsx create mode 100644 src/stories/Key2.stories.tsx create mode 100644 src/stories/KeyDuplicate.stories.tsx create mode 100644 src/stories/LayoutSidebarRightMix.stories.tsx create mode 100644 src/stories/Link.stories.tsx create mode 100644 src/stories/ListFill.stories.tsx create mode 100644 src/stories/Loader.stories.tsx create mode 100644 src/stories/Lock.stories.tsx create mode 100644 src/stories/Lock2.stories.tsx create mode 100644 src/stories/LockOff.stories.tsx create mode 100644 src/stories/LockOpen.stories.tsx create mode 100644 src/stories/Loop.stories.tsx create mode 100644 src/stories/LoupeFill.stories.tsx create mode 100644 src/stories/Mail.stories.tsx create mode 100644 src/stories/Map2.stories.tsx create mode 100644 src/stories/MapPin.stories.tsx create mode 100644 src/stories/MapPinOff.stories.tsx create mode 100644 src/stories/Minus.stories.tsx create mode 100644 src/stories/Mood.stories.tsx create mode 100644 src/stories/MoodCrazyHappy.stories.tsx create mode 100644 src/stories/MoodEmpty.stories.tsx create mode 100644 src/stories/MoodGray.stories.tsx create mode 100644 src/stories/MoodSad.stories.tsx create mode 100644 src/stories/MoodSmile.stories.tsx create mode 100644 src/stories/MouseLeft.stories.tsx create mode 100644 src/stories/MouseLeft2.stories.tsx create mode 100644 src/stories/MouseRight.stories.tsx create mode 100644 src/stories/NoneSelected.stories.tsx create mode 100644 src/stories/Palette.stories.tsx create mode 100644 src/stories/PaletteFill.stories.tsx create mode 100644 src/stories/PauseFill.stories.tsx create mode 100644 src/stories/Photo.stories.tsx create mode 100644 src/stories/PhotoOff.stories.tsx create mode 100644 src/stories/PhotoOff2.stories.tsx create mode 100644 src/stories/PhotoStack.stories.tsx create mode 100644 src/stories/Pinned.stories.tsx create mode 100644 src/stories/Play.stories.tsx create mode 100644 src/stories/PlayFill.stories.tsx rename src/stories/{AtomDi.stories.tsx => Player.stories.tsx} (89%) create mode 100644 src/stories/Plus.stories.tsx create mode 100644 src/stories/QuestionMark.stories.tsx create mode 100644 src/stories/Recull.stories.tsx create mode 100644 src/stories/Redeem.stories.tsx create mode 100644 src/stories/Refresh.stories.tsx create mode 100644 src/stories/Refresh2.stories.tsx create mode 100644 src/stories/RefreshAlert.stories.tsx create mode 100644 src/stories/ReloadAlert.stories.tsx create mode 100644 src/stories/Rotate.stories.tsx create mode 100644 src/stories/RotateClockwise.stories.tsx create mode 100644 src/stories/Scissors.stories.tsx create mode 100644 src/stories/Search.stories.tsx create mode 100644 src/stories/Share.stories.tsx create mode 100644 src/stories/ShoppingCart.stories.tsx create mode 100644 src/stories/ShoppingCartDiscount.stories.tsx create mode 100644 src/stories/SortAscending.stories.tsx create mode 100644 src/stories/SortAscending2.stories.tsx create mode 100644 src/stories/SortAscendingLetters.stories.tsx create mode 100644 src/stories/SortAscendingNumbers.stories.tsx create mode 100644 src/stories/SortDescending.stories.tsx create mode 100644 src/stories/SortDescending2.stories.tsx create mode 100644 src/stories/SortDescendingLetters.stories.tsx create mode 100644 src/stories/SortDescendingNumbers.stories.tsx create mode 100644 src/stories/Sparkle.stories.tsx create mode 100644 src/stories/Spray.stories.tsx create mode 100644 src/stories/Spray2.stories.tsx create mode 100644 src/stories/StackDouble.stories.tsx create mode 100644 src/stories/StackTriple.stories.tsx create mode 100644 src/stories/Star.stories.tsx create mode 100644 src/stories/StarFill.stories.tsx create mode 100644 src/stories/StarFillOff.stories.tsx create mode 100644 src/stories/StarOff.stories.tsx create mode 100644 src/stories/ThumbDown.stories.tsx create mode 100644 src/stories/ThumbUp.stories.tsx create mode 100644 src/stories/Trash.stories.tsx create mode 100644 src/stories/TrashOff.stories.tsx create mode 100644 src/stories/Unlink.stories.tsx create mode 100644 src/stories/Upload.stories.tsx create mode 100644 src/stories/Upload2.stories.tsx create mode 100644 src/stories/UploadAccent.stories.tsx create mode 100644 src/stories/UploadC1Cat.stories.tsx create mode 100644 src/stories/UploadLrCat.stories.tsx create mode 100644 src/stories/User.stories.tsx create mode 100644 src/stories/UserCheck.stories.tsx create mode 100644 src/stories/UserExclamation.stories.tsx create mode 100644 src/stories/UserMinus.stories.tsx create mode 100644 src/stories/UserOff.stories.tsx create mode 100644 src/stories/UserPlus.stories.tsx create mode 100644 src/stories/UserX.stories.tsx create mode 100644 src/stories/Users.stories.tsx create mode 100644 src/stories/ViewAll.stories.tsx create mode 100644 src/stories/Viewfinder.stories.tsx create mode 100644 src/stories/Wifi.stories.tsx create mode 100644 src/stories/Wifi1.stories.tsx create mode 100644 src/stories/Wifi2.stories.tsx create mode 100644 src/stories/WifiOff.stories.tsx create mode 100644 src/stories/World.stories.tsx create mode 100644 src/stories/Writing.stories.tsx create mode 100644 src/stories/X.stories.tsx create mode 100644 src/stories/ZoomIn.stories.tsx create mode 100644 src/stories/ZoomOut.stories.tsx create mode 100644 src/stories/ZoomQuestion.stories.tsx delete mode 100644 svg-children/alert-circle-fill.svg delete mode 100644 svg-children/alert-triangle-fill.svg delete mode 100644 svg-children/atom-di.svg delete mode 100644 svg-children/check_box_empty.svg delete mode 100644 svg-children/no-duplicate.svg delete mode 100644 svg-children/play-di.svg delete mode 100644 svg-children/star - 0.svg delete mode 100644 svg-children/star - 1.svg delete mode 100644 svg-children/star - 2.svg delete mode 100644 svg-children/star - 3.svg delete mode 100644 svg-children/star - 4.svg delete mode 100644 svg-children/star - 5.svg delete mode 100644 svg-children/success-di.svg diff --git a/icons-metadata/Import.json b/icons-metadata/Import.json new file mode 100644 index 00000000..1d426605 --- /dev/null +++ b/icons-metadata/Import.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "Import", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/adjustments-horizontal.json b/icons-metadata/adjustments-horizontal.json new file mode 100644 index 00000000..aa1ac81e --- /dev/null +++ b/icons-metadata/adjustments-horizontal.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "adjustments-horizontal", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/adjustments.json b/icons-metadata/adjustments.json new file mode 100644 index 00000000..a8b99c2e --- /dev/null +++ b/icons-metadata/adjustments.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "adjustments", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/aftershoot-credit.json b/icons-metadata/aftershoot-credit.json new file mode 100644 index 00000000..2f31d4a5 --- /dev/null +++ b/icons-metadata/aftershoot-credit.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "aftershoot-credit" +} \ No newline at end of file diff --git a/icons-metadata/aftershoot-logo.json b/icons-metadata/aftershoot-logo.json new file mode 100644 index 00000000..68b44467 --- /dev/null +++ b/icons-metadata/aftershoot-logo.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "aftershoot-logo", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/alarm.json b/icons-metadata/alarm.json new file mode 100644 index 00000000..03263542 --- /dev/null +++ b/icons-metadata/alarm.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alarm", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-circle-accent.json b/icons-metadata/alert-circle-accent.json new file mode 100644 index 00000000..00725880 --- /dev/null +++ b/icons-metadata/alert-circle-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-circle-accent" +} \ No newline at end of file diff --git a/icons-metadata/alert-circle-fill.json b/icons-metadata/alert-circle-fill.json deleted file mode 100644 index a62f6c10..00000000 --- a/icons-metadata/alert-circle-fill.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "alert-circle-fill" -} \ No newline at end of file diff --git a/icons-metadata/alert-circle.json b/icons-metadata/alert-circle.json new file mode 100644 index 00000000..4ccc2f85 --- /dev/null +++ b/icons-metadata/alert-circle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-circle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-octagon.json b/icons-metadata/alert-octagon.json new file mode 100644 index 00000000..e0d6f350 --- /dev/null +++ b/icons-metadata/alert-octagon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-octagon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-accent.json b/icons-metadata/alert-triangle-accent.json new file mode 100644 index 00000000..bc2b5885 --- /dev/null +++ b/icons-metadata/alert-triangle-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-triangle-accent" +} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-fill.json b/icons-metadata/alert-triangle-fill.json deleted file mode 100644 index 61d1c716..00000000 --- a/icons-metadata/alert-triangle-fill.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "alert-triangle-fill" -} \ No newline at end of file diff --git a/icons-metadata/alert-triangle.json b/icons-metadata/alert-triangle.json new file mode 100644 index 00000000..4521798d --- /dev/null +++ b/icons-metadata/alert-triangle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-triangle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/apple.json b/icons-metadata/apple.json new file mode 100644 index 00000000..5e114c61 --- /dev/null +++ b/icons-metadata/apple.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "apple", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-curve-fill.json b/icons-metadata/arrow-curve-fill.json new file mode 100644 index 00000000..a1f17314 --- /dev/null +++ b/icons-metadata/arrow-curve-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "arrow-curve-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-down.json b/icons-metadata/arrow-down.json new file mode 100644 index 00000000..0272acdc --- /dev/null +++ b/icons-metadata/arrow-down.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-down", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-left.json b/icons-metadata/arrow-left.json new file mode 100644 index 00000000..5361f12b --- /dev/null +++ b/icons-metadata/arrow-left.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-left", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-narrow-left.json b/icons-metadata/arrow-narrow-left.json new file mode 100644 index 00000000..c9ab4f9c --- /dev/null +++ b/icons-metadata/arrow-narrow-left.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-narrow-left", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-narrow-right.json b/icons-metadata/arrow-narrow-right.json new file mode 100644 index 00000000..c77985e9 --- /dev/null +++ b/icons-metadata/arrow-narrow-right.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-narrow-right", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-right.json b/icons-metadata/arrow-right.json new file mode 100644 index 00000000..77bf44f8 --- /dev/null +++ b/icons-metadata/arrow-right.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-right", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-sort-2.json b/icons-metadata/arrow-sort-2.json new file mode 100644 index 00000000..9544e629 --- /dev/null +++ b/icons-metadata/arrow-sort-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-sort-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-up.json b/icons-metadata/arrow-up.json new file mode 100644 index 00000000..ee654dbb --- /dev/null +++ b/icons-metadata/arrow-up.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-up", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-diagonal.json b/icons-metadata/arrows-diagonal.json new file mode 100644 index 00000000..755e7220 --- /dev/null +++ b/icons-metadata/arrows-diagonal.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-diagonal", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-sort.json b/icons-metadata/arrows-sort.json new file mode 100644 index 00000000..d33fb224 --- /dev/null +++ b/icons-metadata/arrows-sort.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-sort", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/atom-di.json b/icons-metadata/atom-accent.json similarity index 53% rename from icons-metadata/atom-di.json rename to icons-metadata/atom-accent.json index 187d6ad9..031eb179 100644 --- a/icons-metadata/atom-di.json +++ b/icons-metadata/atom-accent.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "atom-di" + "name": "atom-accent" } \ No newline at end of file diff --git a/icons-metadata/atom.json b/icons-metadata/atom.json new file mode 100644 index 00000000..ee062094 --- /dev/null +++ b/icons-metadata/atom.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "atom", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/ban.json b/icons-metadata/ban.json new file mode 100644 index 00000000..1a48475e --- /dev/null +++ b/icons-metadata/ban.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "ban", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-minus.json b/icons-metadata/bell-minus.json new file mode 100644 index 00000000..c2adae80 --- /dev/null +++ b/icons-metadata/bell-minus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-minus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-off.json b/icons-metadata/bell-off.json new file mode 100644 index 00000000..f879ae18 --- /dev/null +++ b/icons-metadata/bell-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-plus.json b/icons-metadata/bell-plus.json new file mode 100644 index 00000000..c582aca7 --- /dev/null +++ b/icons-metadata/bell-plus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-plus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-ringing-2.json b/icons-metadata/bell-ringing-2.json new file mode 100644 index 00000000..3d5ac004 --- /dev/null +++ b/icons-metadata/bell-ringing-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-ringing-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-ringing.json b/icons-metadata/bell-ringing.json new file mode 100644 index 00000000..f2b9324a --- /dev/null +++ b/icons-metadata/bell-ringing.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-ringing", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-x.json b/icons-metadata/bell-x.json new file mode 100644 index 00000000..8e0c4bb0 --- /dev/null +++ b/icons-metadata/bell-x.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-x", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell.json b/icons-metadata/bell.json new file mode 100644 index 00000000..d9a0245b --- /dev/null +++ b/icons-metadata/bell.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-facebook.json b/icons-metadata/brand-facebook.json new file mode 100644 index 00000000..4ee68412 --- /dev/null +++ b/icons-metadata/brand-facebook.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-facebook", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-github.json b/icons-metadata/brand-github.json new file mode 100644 index 00000000..44709297 --- /dev/null +++ b/icons-metadata/brand-github.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-github", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-instagram.json b/icons-metadata/brand-instagram.json new file mode 100644 index 00000000..f5393f5d --- /dev/null +++ b/icons-metadata/brand-instagram.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-instagram", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-twitter.json b/icons-metadata/brand-twitter.json new file mode 100644 index 00000000..87fd2a2a --- /dev/null +++ b/icons-metadata/brand-twitter.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-twitter", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-whatsapp.json b/icons-metadata/brand-whatsapp.json new file mode 100644 index 00000000..635c20a2 --- /dev/null +++ b/icons-metadata/brand-whatsapp.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-whatsapp", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-youtube.json b/icons-metadata/brand-youtube.json new file mode 100644 index 00000000..73e88e25 --- /dev/null +++ b/icons-metadata/brand-youtube.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-youtube", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bulb-off.json b/icons-metadata/bulb-off.json new file mode 100644 index 00000000..7f50291e --- /dev/null +++ b/icons-metadata/bulb-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bulb-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bulb.json b/icons-metadata/bulb.json new file mode 100644 index 00000000..af878b00 --- /dev/null +++ b/icons-metadata/bulb.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bulb", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/check-box-empty.json b/icons-metadata/check-box-empty.json new file mode 100644 index 00000000..04f14cae --- /dev/null +++ b/icons-metadata/check-box-empty.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "check-box-empty", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/check.json b/icons-metadata/check.json new file mode 100644 index 00000000..25ea1740 --- /dev/null +++ b/icons-metadata/check.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "check", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/checkbox-blue-accent.json b/icons-metadata/checkbox-blue-accent.json new file mode 100644 index 00000000..2f366ed9 --- /dev/null +++ b/icons-metadata/checkbox-blue-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-blue-accent" +} \ No newline at end of file diff --git a/icons-metadata/checkbox-green-accent.json b/icons-metadata/checkbox-green-accent.json new file mode 100644 index 00000000..9500f1c9 --- /dev/null +++ b/icons-metadata/checkbox-green-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-green-accent" +} \ No newline at end of file diff --git a/icons-metadata/checkbox-partial-blue-accent.json b/icons-metadata/checkbox-partial-blue-accent.json new file mode 100644 index 00000000..4ff760e7 --- /dev/null +++ b/icons-metadata/checkbox-partial-blue-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-partial-blue-accent" +} \ No newline at end of file diff --git a/icons-metadata/chevron-down.json b/icons-metadata/chevron-down.json new file mode 100644 index 00000000..b272753b --- /dev/null +++ b/icons-metadata/chevron-down.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-down", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-left.json b/icons-metadata/chevron-left.json new file mode 100644 index 00000000..3dfc5020 --- /dev/null +++ b/icons-metadata/chevron-left.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-left", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-right.json b/icons-metadata/chevron-right.json new file mode 100644 index 00000000..9bb9b6fa --- /dev/null +++ b/icons-metadata/chevron-right.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-right", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-up.json b/icons-metadata/chevron-up.json new file mode 100644 index 00000000..8bbde2c7 --- /dev/null +++ b/icons-metadata/chevron-up.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-up", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevrons-left.json b/icons-metadata/chevrons-left.json new file mode 100644 index 00000000..ee2411a9 --- /dev/null +++ b/icons-metadata/chevrons-left.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevrons-left", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevrons-right.json b/icons-metadata/chevrons-right.json new file mode 100644 index 00000000..5c374c19 --- /dev/null +++ b/icons-metadata/chevrons-right.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevrons-right", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-check-2.json b/icons-metadata/circle-check-2.json new file mode 100644 index 00000000..869640c9 --- /dev/null +++ b/icons-metadata/circle-check-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-check-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-check.json b/icons-metadata/circle-check.json new file mode 100644 index 00000000..3c13be42 --- /dev/null +++ b/icons-metadata/circle-check.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-check", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-cross-accent.json b/icons-metadata/circle-cross-accent.json new file mode 100644 index 00000000..1b9fd51d --- /dev/null +++ b/icons-metadata/circle-cross-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "circle-cross-accent" +} \ No newline at end of file diff --git a/icons-metadata/circle-fill.json b/icons-metadata/circle-fill.json new file mode 100644 index 00000000..30109372 --- /dev/null +++ b/icons-metadata/circle-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "circle-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/circle.json b/icons-metadata/circle.json new file mode 100644 index 00000000..930eb97c --- /dev/null +++ b/icons-metadata/circle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/clock.json b/icons-metadata/clock.json new file mode 100644 index 00000000..f4a1d40a --- /dev/null +++ b/icons-metadata/clock.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "clock", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/cloud-upload-accent.json b/icons-metadata/cloud-upload-accent.json new file mode 100644 index 00000000..424100a3 --- /dev/null +++ b/icons-metadata/cloud-upload-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "cloud-upload-accent" +} \ No newline at end of file diff --git a/icons-metadata/cloud-upload.json b/icons-metadata/cloud-upload.json new file mode 100644 index 00000000..f8fb236a --- /dev/null +++ b/icons-metadata/cloud-upload.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "cloud-upload", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/collection.json b/icons-metadata/collection.json new file mode 100644 index 00000000..e0771f88 --- /dev/null +++ b/icons-metadata/collection.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "collection", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/color-swatch.json b/icons-metadata/color-swatch.json new file mode 100644 index 00000000..ea4e60bd --- /dev/null +++ b/icons-metadata/color-swatch.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "color-swatch", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/confetti.json b/icons-metadata/confetti.json new file mode 100644 index 00000000..0d6cbe3e --- /dev/null +++ b/icons-metadata/confetti.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "confetti", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/copy.json b/icons-metadata/copy.json new file mode 100644 index 00000000..609811a3 --- /dev/null +++ b/icons-metadata/copy.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "copy", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/crown-2-fill.json b/icons-metadata/crown-2-fill.json new file mode 100644 index 00000000..6aec2724 --- /dev/null +++ b/icons-metadata/crown-2-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "crown-2-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/crown.json b/icons-metadata/crown.json new file mode 100644 index 00000000..e1e31e5e --- /dev/null +++ b/icons-metadata/crown.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "crown", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/currency-dollar.json b/icons-metadata/currency-dollar.json new file mode 100644 index 00000000..3ee3b8cd --- /dev/null +++ b/icons-metadata/currency-dollar.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "currency-dollar", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/current-location.json b/icons-metadata/current-location.json new file mode 100644 index 00000000..7e1dd8cd --- /dev/null +++ b/icons-metadata/current-location.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "current-location", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop-analytics.json b/icons-metadata/device-desktop-analytics.json new file mode 100644 index 00000000..c960a299 --- /dev/null +++ b/icons-metadata/device-desktop-analytics.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop-analytics", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop-off.json b/icons-metadata/device-desktop-off.json new file mode 100644 index 00000000..448704af --- /dev/null +++ b/icons-metadata/device-desktop-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop.json b/icons-metadata/device-desktop.json new file mode 100644 index 00000000..30266bec --- /dev/null +++ b/icons-metadata/device-desktop.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-laptop.json b/icons-metadata/device-laptop.json new file mode 100644 index 00000000..e7a07af8 --- /dev/null +++ b/icons-metadata/device-laptop.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-laptop", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-tv.json b/icons-metadata/device-tv.json new file mode 100644 index 00000000..678a06b3 --- /dev/null +++ b/icons-metadata/device-tv.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-tv", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/diamond.json b/icons-metadata/diamond.json new file mode 100644 index 00000000..fafb111b --- /dev/null +++ b/icons-metadata/diamond.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "diamond", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/discount-2.json b/icons-metadata/discount-2.json new file mode 100644 index 00000000..97530299 --- /dev/null +++ b/icons-metadata/discount-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "discount-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/discount.json b/icons-metadata/discount.json new file mode 100644 index 00000000..70ef70dc --- /dev/null +++ b/icons-metadata/discount.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "discount", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/disk.json b/icons-metadata/disk.json new file mode 100644 index 00000000..f689c2c7 --- /dev/null +++ b/icons-metadata/disk.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "disk", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/dots-vertical.json b/icons-metadata/dots-vertical.json new file mode 100644 index 00000000..6c97bccf --- /dev/null +++ b/icons-metadata/dots-vertical.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "dots-vertical", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/check_box_empty.json b/icons-metadata/download-accent.json similarity index 50% rename from icons-metadata/check_box_empty.json rename to icons-metadata/download-accent.json index b19c4f71..ca1ec89e 100644 --- a/icons-metadata/check_box_empty.json +++ b/icons-metadata/download-accent.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "check_box_empty" + "name": "download-accent" } \ No newline at end of file diff --git a/icons-metadata/download.json b/icons-metadata/download.json new file mode 100644 index 00000000..82ad6a1b --- /dev/null +++ b/icons-metadata/download.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "download", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/edit-icon.json b/icons-metadata/edit-icon.json new file mode 100644 index 00000000..66b04f1f --- /dev/null +++ b/icons-metadata/edit-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "edit-icon" +} \ No newline at end of file diff --git a/icons-metadata/edit.json b/icons-metadata/edit.json new file mode 100644 index 00000000..2fefa67b --- /dev/null +++ b/icons-metadata/edit.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "edit", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/external-link.json b/icons-metadata/external-link.json new file mode 100644 index 00000000..23705914 --- /dev/null +++ b/icons-metadata/external-link.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "external-link", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/eye-check.json b/icons-metadata/eye-check.json new file mode 100644 index 00000000..e34cf977 --- /dev/null +++ b/icons-metadata/eye-check.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "eye-check", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/eye-off.json b/icons-metadata/eye-off.json new file mode 100644 index 00000000..2906de26 --- /dev/null +++ b/icons-metadata/eye-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "eye-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/eye.json b/icons-metadata/eye.json new file mode 100644 index 00000000..fb62fa33 --- /dev/null +++ b/icons-metadata/eye.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "eye", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/facebook.json b/icons-metadata/facebook.json new file mode 100644 index 00000000..34bea1d6 --- /dev/null +++ b/icons-metadata/facebook.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "facebook", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/file-download.json b/icons-metadata/file-download.json new file mode 100644 index 00000000..3de21b1e --- /dev/null +++ b/icons-metadata/file-download.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-download", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-export.json b/icons-metadata/file-export.json new file mode 100644 index 00000000..25e36f79 --- /dev/null +++ b/icons-metadata/file-export.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-export", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-report.json b/icons-metadata/file-report.json new file mode 100644 index 00000000..90e39e1e --- /dev/null +++ b/icons-metadata/file-report.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-report", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-search.json b/icons-metadata/file-search.json new file mode 100644 index 00000000..aea6df1b --- /dev/null +++ b/icons-metadata/file-search.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-search", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/filter-off.json b/icons-metadata/filter-off.json new file mode 100644 index 00000000..5bdfdeba --- /dev/null +++ b/icons-metadata/filter-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "filter-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/filter.json b/icons-metadata/filter.json new file mode 100644 index 00000000..b756c828 --- /dev/null +++ b/icons-metadata/filter.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "filter", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/flag-fill.json b/icons-metadata/flag-fill.json new file mode 100644 index 00000000..dcc79f8a --- /dev/null +++ b/icons-metadata/flag-fill.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "flag-fill", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/flag-off.json b/icons-metadata/flag-off.json new file mode 100644 index 00000000..84dd4d53 --- /dev/null +++ b/icons-metadata/flag-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "flag-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/flag.json b/icons-metadata/flag.json new file mode 100644 index 00000000..31cc9150 --- /dev/null +++ b/icons-metadata/flag.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "flag", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-download.json b/icons-metadata/folder-download.json new file mode 100644 index 00000000..f2681187 --- /dev/null +++ b/icons-metadata/folder-download.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-download", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-eye.json b/icons-metadata/folder-eye.json new file mode 100644 index 00000000..bab4b81f --- /dev/null +++ b/icons-metadata/folder-eye.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-eye", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-fill.json b/icons-metadata/folder-fill.json new file mode 100644 index 00000000..7ee05eee --- /dev/null +++ b/icons-metadata/folder-fill.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "folder-fill" +} \ No newline at end of file diff --git a/icons-metadata/folder-minus.json b/icons-metadata/folder-minus.json new file mode 100644 index 00000000..1b023545 --- /dev/null +++ b/icons-metadata/folder-minus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-minus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-off.json b/icons-metadata/folder-off.json new file mode 100644 index 00000000..822f8087 --- /dev/null +++ b/icons-metadata/folder-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-plus.json b/icons-metadata/folder-plus.json new file mode 100644 index 00000000..7afc09fc --- /dev/null +++ b/icons-metadata/folder-plus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-plus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-upload.json b/icons-metadata/folder-upload.json new file mode 100644 index 00000000..afb830ff --- /dev/null +++ b/icons-metadata/folder-upload.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-upload", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-x.json b/icons-metadata/folder-x.json new file mode 100644 index 00000000..6b638776 --- /dev/null +++ b/icons-metadata/folder-x.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-x", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder.json b/icons-metadata/folder.json new file mode 100644 index 00000000..8eb99249 --- /dev/null +++ b/icons-metadata/folder.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folders.json b/icons-metadata/folders.json new file mode 100644 index 00000000..0a3e4ea9 --- /dev/null +++ b/icons-metadata/folders.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folders", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/google-color.json b/icons-metadata/google-color.json new file mode 100644 index 00000000..e43f95c6 --- /dev/null +++ b/icons-metadata/google-color.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "google-color" +} \ No newline at end of file diff --git a/icons-metadata/grab-hand.json b/icons-metadata/grab-hand.json new file mode 100644 index 00000000..184900ff --- /dev/null +++ b/icons-metadata/grab-hand.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "grab-hand" +} \ No newline at end of file diff --git a/icons-metadata/grid-dots.json b/icons-metadata/grid-dots.json new file mode 100644 index 00000000..77179fec --- /dev/null +++ b/icons-metadata/grid-dots.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "grid-dots", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/grid-view-1.json b/icons-metadata/grid-view-1.json new file mode 100644 index 00000000..7b7c1e5c --- /dev/null +++ b/icons-metadata/grid-view-1.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-1", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/grid-view-2.json b/icons-metadata/grid-view-2.json new file mode 100644 index 00000000..ca919d7e --- /dev/null +++ b/icons-metadata/grid-view-2.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-2", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/home-2.json b/icons-metadata/home-2.json new file mode 100644 index 00000000..e43f8ccc --- /dev/null +++ b/icons-metadata/home-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "home-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/home-mix.json b/icons-metadata/home-mix.json new file mode 100644 index 00000000..3732de18 --- /dev/null +++ b/icons-metadata/home-mix.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "home-mix" +} \ No newline at end of file diff --git a/icons-metadata/image-border.json b/icons-metadata/image-border.json new file mode 100644 index 00000000..13f0d57b --- /dev/null +++ b/icons-metadata/image-border.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "image-border", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/info-circle.json b/icons-metadata/info-circle.json new file mode 100644 index 00000000..3847715c --- /dev/null +++ b/icons-metadata/info-circle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-circle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-cirlce-2.json b/icons-metadata/info-cirlce-2.json new file mode 100644 index 00000000..5223d852 --- /dev/null +++ b/icons-metadata/info-cirlce-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-cirlce-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-square.json b/icons-metadata/info-square.json new file mode 100644 index 00000000..1f0fdf2c --- /dev/null +++ b/icons-metadata/info-square.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-square", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info.json b/icons-metadata/info.json new file mode 100644 index 00000000..05e94bb5 --- /dev/null +++ b/icons-metadata/info.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/key-2.json b/icons-metadata/key-2.json new file mode 100644 index 00000000..01936828 --- /dev/null +++ b/icons-metadata/key-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "key-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/key-duplicate.json b/icons-metadata/key-duplicate.json new file mode 100644 index 00000000..5d270e67 --- /dev/null +++ b/icons-metadata/key-duplicate.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "key-duplicate", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/key.json b/icons-metadata/key.json new file mode 100644 index 00000000..13a277a2 --- /dev/null +++ b/icons-metadata/key.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "key", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/layout-sidebar-right-mix.json b/icons-metadata/layout-sidebar-right-mix.json new file mode 100644 index 00000000..adb6ee9e --- /dev/null +++ b/icons-metadata/layout-sidebar-right-mix.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "layout-sidebar-right-mix" +} \ No newline at end of file diff --git a/icons-metadata/link.json b/icons-metadata/link.json new file mode 100644 index 00000000..b06d8c83 --- /dev/null +++ b/icons-metadata/link.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "link", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/list-fill.json b/icons-metadata/list-fill.json new file mode 100644 index 00000000..b0b779a7 --- /dev/null +++ b/icons-metadata/list-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "list-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/loader.json b/icons-metadata/loader.json new file mode 100644 index 00000000..523fab6f --- /dev/null +++ b/icons-metadata/loader.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "loader", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-2.json b/icons-metadata/lock-2.json new file mode 100644 index 00000000..a10c15b2 --- /dev/null +++ b/icons-metadata/lock-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-off.json b/icons-metadata/lock-off.json new file mode 100644 index 00000000..58782877 --- /dev/null +++ b/icons-metadata/lock-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-open.json b/icons-metadata/lock-open.json new file mode 100644 index 00000000..30be5192 --- /dev/null +++ b/icons-metadata/lock-open.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-open", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock.json b/icons-metadata/lock.json new file mode 100644 index 00000000..06445cbe --- /dev/null +++ b/icons-metadata/lock.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/loop.json b/icons-metadata/loop.json new file mode 100644 index 00000000..8a0c1f1c --- /dev/null +++ b/icons-metadata/loop.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "loop", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/loupe-fill.json b/icons-metadata/loupe-fill.json new file mode 100644 index 00000000..ee4cc769 --- /dev/null +++ b/icons-metadata/loupe-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "loupe-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/mail.json b/icons-metadata/mail.json new file mode 100644 index 00000000..89360eae --- /dev/null +++ b/icons-metadata/mail.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mail", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-2.json b/icons-metadata/map-2.json new file mode 100644 index 00000000..4788f5cb --- /dev/null +++ b/icons-metadata/map-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-pin-off.json b/icons-metadata/map-pin-off.json new file mode 100644 index 00000000..c77f74ec --- /dev/null +++ b/icons-metadata/map-pin-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-pin-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-pin.json b/icons-metadata/map-pin.json new file mode 100644 index 00000000..6b1c33c1 --- /dev/null +++ b/icons-metadata/map-pin.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-pin", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/minus.json b/icons-metadata/minus.json new file mode 100644 index 00000000..63bdc089 --- /dev/null +++ b/icons-metadata/minus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "minus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-crazy-happy.json b/icons-metadata/mood-crazy-happy.json new file mode 100644 index 00000000..ce6b347f --- /dev/null +++ b/icons-metadata/mood-crazy-happy.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-crazy-happy", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-empty.json b/icons-metadata/mood-empty.json new file mode 100644 index 00000000..bbbdde42 --- /dev/null +++ b/icons-metadata/mood-empty.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-empty", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-gray.json b/icons-metadata/mood-gray.json new file mode 100644 index 00000000..8b90ef80 --- /dev/null +++ b/icons-metadata/mood-gray.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "mood-gray" +} \ No newline at end of file diff --git a/icons-metadata/mood-sad.json b/icons-metadata/mood-sad.json new file mode 100644 index 00000000..2a2fd68a --- /dev/null +++ b/icons-metadata/mood-sad.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-sad", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-smile.json b/icons-metadata/mood-smile.json new file mode 100644 index 00000000..4c808624 --- /dev/null +++ b/icons-metadata/mood-smile.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-smile", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood.json b/icons-metadata/mood.json new file mode 100644 index 00000000..5b6139ee --- /dev/null +++ b/icons-metadata/mood.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "mood" +} \ No newline at end of file diff --git a/icons-metadata/mouse-left-2.json b/icons-metadata/mouse-left-2.json new file mode 100644 index 00000000..7a3ed2e9 --- /dev/null +++ b/icons-metadata/mouse-left-2.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "mouse-left-2" +} \ No newline at end of file diff --git a/icons-metadata/mouse-left.json b/icons-metadata/mouse-left.json new file mode 100644 index 00000000..f125b2f4 --- /dev/null +++ b/icons-metadata/mouse-left.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mouse-left", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mouse-right.json b/icons-metadata/mouse-right.json new file mode 100644 index 00000000..4b827c66 --- /dev/null +++ b/icons-metadata/mouse-right.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mouse-right", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/no-duplicate.json b/icons-metadata/no-duplicate.json index bc079dd4..1a2af913 100644 --- a/icons-metadata/no-duplicate.json +++ b/icons-metadata/no-duplicate.json @@ -1,4 +1,9 @@ { - "icon_type": "accent", - "name": "no-duplicate" + "icon_type": "outline", + "name": "no-duplicate", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } } \ No newline at end of file diff --git a/icons-metadata/none-selected.json b/icons-metadata/none-selected.json new file mode 100644 index 00000000..13495d35 --- /dev/null +++ b/icons-metadata/none-selected.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "none-selected", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/palette-fill.json b/icons-metadata/palette-fill.json new file mode 100644 index 00000000..d065c897 --- /dev/null +++ b/icons-metadata/palette-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "palette-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/palette.json b/icons-metadata/palette.json new file mode 100644 index 00000000..006c0574 --- /dev/null +++ b/icons-metadata/palette.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "palette", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/pause-fill.json b/icons-metadata/pause-fill.json new file mode 100644 index 00000000..88c48558 --- /dev/null +++ b/icons-metadata/pause-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "pause-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-off-2.json b/icons-metadata/photo-off-2.json new file mode 100644 index 00000000..3ca1fe87 --- /dev/null +++ b/icons-metadata/photo-off-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-off-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-off.json b/icons-metadata/photo-off.json new file mode 100644 index 00000000..e2d96244 --- /dev/null +++ b/icons-metadata/photo-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-stack.json b/icons-metadata/photo-stack.json new file mode 100644 index 00000000..9eac568d --- /dev/null +++ b/icons-metadata/photo-stack.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-stack", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo.json b/icons-metadata/photo.json new file mode 100644 index 00000000..47847883 --- /dev/null +++ b/icons-metadata/photo.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/pinned.json b/icons-metadata/pinned.json new file mode 100644 index 00000000..b7a2834e --- /dev/null +++ b/icons-metadata/pinned.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "pinned", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/play-fill.json b/icons-metadata/play-fill.json new file mode 100644 index 00000000..ba8969ca --- /dev/null +++ b/icons-metadata/play-fill.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "play-fill", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/play.json b/icons-metadata/play.json new file mode 100644 index 00000000..9ea81caa --- /dev/null +++ b/icons-metadata/play.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "play", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/play-di.json b/icons-metadata/player.json similarity index 58% rename from icons-metadata/play-di.json rename to icons-metadata/player.json index dd783094..358c1d69 100644 --- a/icons-metadata/play-di.json +++ b/icons-metadata/player.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "play-di" + "name": "player" } \ No newline at end of file diff --git a/icons-metadata/plus.json b/icons-metadata/plus.json new file mode 100644 index 00000000..a542c687 --- /dev/null +++ b/icons-metadata/plus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "plus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/question-mark.json b/icons-metadata/question-mark.json new file mode 100644 index 00000000..aed1ea2c --- /dev/null +++ b/icons-metadata/question-mark.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "question-mark", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/recull.json b/icons-metadata/recull.json new file mode 100644 index 00000000..298e0d5e --- /dev/null +++ b/icons-metadata/recull.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "recull" +} \ No newline at end of file diff --git a/icons-metadata/redeem.json b/icons-metadata/redeem.json new file mode 100644 index 00000000..a0b0c86c --- /dev/null +++ b/icons-metadata/redeem.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "redeem", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh-2.json b/icons-metadata/refresh-2.json new file mode 100644 index 00000000..e2022afa --- /dev/null +++ b/icons-metadata/refresh-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh-alert.json b/icons-metadata/refresh-alert.json new file mode 100644 index 00000000..e43a88f7 --- /dev/null +++ b/icons-metadata/refresh-alert.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh-alert", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh.json b/icons-metadata/refresh.json new file mode 100644 index 00000000..d5da3ff4 --- /dev/null +++ b/icons-metadata/refresh.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/reload-alert.json b/icons-metadata/reload-alert.json new file mode 100644 index 00000000..c42413e8 --- /dev/null +++ b/icons-metadata/reload-alert.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "reload-alert", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate-clockwise.json b/icons-metadata/rotate-clockwise.json new file mode 100644 index 00000000..2347cd30 --- /dev/null +++ b/icons-metadata/rotate-clockwise.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate-clockwise", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate.json b/icons-metadata/rotate.json new file mode 100644 index 00000000..b967fb69 --- /dev/null +++ b/icons-metadata/rotate.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/scissors.json b/icons-metadata/scissors.json new file mode 100644 index 00000000..116b7e4e --- /dev/null +++ b/icons-metadata/scissors.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "scissors" +} \ No newline at end of file diff --git a/icons-metadata/search.json b/icons-metadata/search.json new file mode 100644 index 00000000..014bf4d7 --- /dev/null +++ b/icons-metadata/search.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "search", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/share.json b/icons-metadata/share.json new file mode 100644 index 00000000..a8818fa4 --- /dev/null +++ b/icons-metadata/share.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "share", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/shopping-cart-discount.json b/icons-metadata/shopping-cart-discount.json new file mode 100644 index 00000000..5f2ffab7 --- /dev/null +++ b/icons-metadata/shopping-cart-discount.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "shopping-cart-discount", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/shopping-cart.json b/icons-metadata/shopping-cart.json new file mode 100644 index 00000000..55273432 --- /dev/null +++ b/icons-metadata/shopping-cart.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "shopping-cart", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-2.json b/icons-metadata/sort-ascending-2.json new file mode 100644 index 00000000..3967c569 --- /dev/null +++ b/icons-metadata/sort-ascending-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-letters.json b/icons-metadata/sort-ascending-letters.json new file mode 100644 index 00000000..64ed0542 --- /dev/null +++ b/icons-metadata/sort-ascending-letters.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-letters", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-numbers.json b/icons-metadata/sort-ascending-numbers.json new file mode 100644 index 00000000..f867ab45 --- /dev/null +++ b/icons-metadata/sort-ascending-numbers.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-numbers", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending.json b/icons-metadata/sort-ascending.json new file mode 100644 index 00000000..1a22e52d --- /dev/null +++ b/icons-metadata/sort-ascending.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-2.json b/icons-metadata/sort-descending-2.json new file mode 100644 index 00000000..12d03a76 --- /dev/null +++ b/icons-metadata/sort-descending-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-letters.json b/icons-metadata/sort-descending-letters.json new file mode 100644 index 00000000..8b505d34 --- /dev/null +++ b/icons-metadata/sort-descending-letters.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-letters", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-numbers.json b/icons-metadata/sort-descending-numbers.json new file mode 100644 index 00000000..034f13f4 --- /dev/null +++ b/icons-metadata/sort-descending-numbers.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-numbers", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending.json b/icons-metadata/sort-descending.json new file mode 100644 index 00000000..81d49187 --- /dev/null +++ b/icons-metadata/sort-descending.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sparkle.json b/icons-metadata/sparkle.json new file mode 100644 index 00000000..7a37bec3 --- /dev/null +++ b/icons-metadata/sparkle.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "sparkle", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/spray.json b/icons-metadata/spray.json new file mode 100644 index 00000000..82d0c5e7 --- /dev/null +++ b/icons-metadata/spray.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "spray", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/spray_2.json b/icons-metadata/spray_2.json new file mode 100644 index 00000000..cc630256 --- /dev/null +++ b/icons-metadata/spray_2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "spray_2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/stack-double.json b/icons-metadata/stack-double.json new file mode 100644 index 00000000..37edc59b --- /dev/null +++ b/icons-metadata/stack-double.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "stack-double", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/stack-triple.json b/icons-metadata/stack-triple.json new file mode 100644 index 00000000..88835b08 --- /dev/null +++ b/icons-metadata/stack-triple.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "stack-triple", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/star-fill-off.json b/icons-metadata/star-fill-off.json new file mode 100644 index 00000000..022d8fbc --- /dev/null +++ b/icons-metadata/star-fill-off.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "star-fill-off" +} \ No newline at end of file diff --git a/icons-metadata/star-fill.json b/icons-metadata/star-fill.json new file mode 100644 index 00000000..70663e8a --- /dev/null +++ b/icons-metadata/star-fill.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "star-fill", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/star-off.json b/icons-metadata/star-off.json new file mode 100644 index 00000000..0f653bc3 --- /dev/null +++ b/icons-metadata/star-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "star-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/star.json b/icons-metadata/star.json new file mode 100644 index 00000000..986919c7 --- /dev/null +++ b/icons-metadata/star.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "star", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/thumb-down.json b/icons-metadata/thumb-down.json new file mode 100644 index 00000000..4076b723 --- /dev/null +++ b/icons-metadata/thumb-down.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "thumb-down", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/thumb-up.json b/icons-metadata/thumb-up.json new file mode 100644 index 00000000..eef2c57e --- /dev/null +++ b/icons-metadata/thumb-up.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "thumb-up", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/trash-off.json b/icons-metadata/trash-off.json new file mode 100644 index 00000000..da4ce96a --- /dev/null +++ b/icons-metadata/trash-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/trash.json b/icons-metadata/trash.json new file mode 100644 index 00000000..fd935268 --- /dev/null +++ b/icons-metadata/trash.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/unlink.json b/icons-metadata/unlink.json new file mode 100644 index 00000000..e48a1337 --- /dev/null +++ b/icons-metadata/unlink.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "unlink", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-2.json b/icons-metadata/upload-2.json new file mode 100644 index 00000000..a35fedb2 --- /dev/null +++ b/icons-metadata/upload-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "upload-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-accent.json b/icons-metadata/upload-accent.json new file mode 100644 index 00000000..56cd7d86 --- /dev/null +++ b/icons-metadata/upload-accent.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "upload-accent" +} \ No newline at end of file diff --git a/icons-metadata/upload-c1-cat.json b/icons-metadata/upload-c1-cat.json new file mode 100644 index 00000000..76f1255b --- /dev/null +++ b/icons-metadata/upload-c1-cat.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-c1-cat", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-lr-cat.json b/icons-metadata/upload-lr-cat.json new file mode 100644 index 00000000..cd184bc6 --- /dev/null +++ b/icons-metadata/upload-lr-cat.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-lr-cat", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/upload.json b/icons-metadata/upload.json new file mode 100644 index 00000000..38602864 --- /dev/null +++ b/icons-metadata/upload.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "upload", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-check.json b/icons-metadata/user-check.json new file mode 100644 index 00000000..9489a831 --- /dev/null +++ b/icons-metadata/user-check.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-check", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-exclamation.json b/icons-metadata/user-exclamation.json new file mode 100644 index 00000000..d1bb2a43 --- /dev/null +++ b/icons-metadata/user-exclamation.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-exclamation", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-minus.json b/icons-metadata/user-minus.json new file mode 100644 index 00000000..1d81957e --- /dev/null +++ b/icons-metadata/user-minus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-minus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-off.json b/icons-metadata/user-off.json new file mode 100644 index 00000000..83d6483f --- /dev/null +++ b/icons-metadata/user-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-plus.json b/icons-metadata/user-plus.json new file mode 100644 index 00000000..2e3dbcc5 --- /dev/null +++ b/icons-metadata/user-plus.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-plus", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-x.json b/icons-metadata/user-x.json new file mode 100644 index 00000000..ba63afdd --- /dev/null +++ b/icons-metadata/user-x.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-x", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user.json b/icons-metadata/user.json new file mode 100644 index 00000000..d7da2de0 --- /dev/null +++ b/icons-metadata/user.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/users.json b/icons-metadata/users.json new file mode 100644 index 00000000..dd99da9f --- /dev/null +++ b/icons-metadata/users.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "users", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/view-all.json b/icons-metadata/view-all.json new file mode 100644 index 00000000..04a34bdd --- /dev/null +++ b/icons-metadata/view-all.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "view-all", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/viewfinder.json b/icons-metadata/viewfinder.json new file mode 100644 index 00000000..9065179a --- /dev/null +++ b/icons-metadata/viewfinder.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "viewfinder", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-1.json b/icons-metadata/wifi-1.json new file mode 100644 index 00000000..f1875226 --- /dev/null +++ b/icons-metadata/wifi-1.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-1", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-2.json b/icons-metadata/wifi-2.json new file mode 100644 index 00000000..8d74aea2 --- /dev/null +++ b/icons-metadata/wifi-2.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-2", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-off.json b/icons-metadata/wifi-off.json new file mode 100644 index 00000000..8014a439 --- /dev/null +++ b/icons-metadata/wifi-off.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-off", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi.json b/icons-metadata/wifi.json new file mode 100644 index 00000000..28bd9cca --- /dev/null +++ b/icons-metadata/wifi.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/world.json b/icons-metadata/world.json new file mode 100644 index 00000000..8ff49134 --- /dev/null +++ b/icons-metadata/world.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "world", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/writing.json b/icons-metadata/writing.json new file mode 100644 index 00000000..5c38553a --- /dev/null +++ b/icons-metadata/writing.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "writing", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/x.json b/icons-metadata/x.json new file mode 100644 index 00000000..dae663ee --- /dev/null +++ b/icons-metadata/x.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "x", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-in.json b/icons-metadata/zoom-in.json new file mode 100644 index 00000000..211883fd --- /dev/null +++ b/icons-metadata/zoom-in.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-in", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-out.json b/icons-metadata/zoom-out.json new file mode 100644 index 00000000..bb16b59d --- /dev/null +++ b/icons-metadata/zoom-out.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-out", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-question.json b/icons-metadata/zoom-question.json new file mode 100644 index 00000000..684919dc --- /dev/null +++ b/icons-metadata/zoom-question.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-question", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-optimized/Import.svg b/icons-optimized/Import.svg new file mode 100644 index 00000000..a42b451f --- /dev/null +++ b/icons-optimized/Import.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal.svg new file mode 100644 index 00000000..30179e00 --- /dev/null +++ b/icons-optimized/adjustments-horizontal.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/adjustments.svg b/icons-optimized/adjustments.svg new file mode 100644 index 00000000..0023446f --- /dev/null +++ b/icons-optimized/adjustments.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/aftershoot-credit.svg b/icons-optimized/aftershoot-credit.svg new file mode 100644 index 00000000..ef5eeaa9 --- /dev/null +++ b/icons-optimized/aftershoot-credit.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/aftershoot-logo.svg b/icons-optimized/aftershoot-logo.svg new file mode 100644 index 00000000..5d8f1cab --- /dev/null +++ b/icons-optimized/aftershoot-logo.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/alarm.svg b/icons-optimized/alarm.svg new file mode 100644 index 00000000..bbd24741 --- /dev/null +++ b/icons-optimized/alarm.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/alert-circle-fill.svg b/icons-optimized/alert-circle-accent.svg similarity index 100% rename from icons-optimized/alert-circle-fill.svg rename to icons-optimized/alert-circle-accent.svg diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle.svg new file mode 100644 index 00000000..5ba0b704 --- /dev/null +++ b/icons-optimized/alert-circle.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/alert-octagon.svg b/icons-optimized/alert-octagon.svg new file mode 100644 index 00000000..64e4bc5f --- /dev/null +++ b/icons-optimized/alert-octagon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/alert-triangle-fill.svg b/icons-optimized/alert-triangle-accent.svg similarity index 100% rename from icons-optimized/alert-triangle-fill.svg rename to icons-optimized/alert-triangle-accent.svg diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle.svg new file mode 100644 index 00000000..80fb824f --- /dev/null +++ b/icons-optimized/alert-triangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/apple.svg b/icons-optimized/apple.svg new file mode 100644 index 00000000..682cce85 --- /dev/null +++ b/icons-optimized/apple.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/arrow-curve-fill.svg b/icons-optimized/arrow-curve-fill.svg new file mode 100644 index 00000000..c277b8f9 --- /dev/null +++ b/icons-optimized/arrow-curve-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down.svg new file mode 100644 index 00000000..69983d0c --- /dev/null +++ b/icons-optimized/arrow-down.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left.svg new file mode 100644 index 00000000..a3650ecb --- /dev/null +++ b/icons-optimized/arrow-left.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left.svg new file mode 100644 index 00000000..d27b1429 --- /dev/null +++ b/icons-optimized/arrow-narrow-left.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right.svg new file mode 100644 index 00000000..03f095fd --- /dev/null +++ b/icons-optimized/arrow-narrow-right.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right.svg new file mode 100644 index 00000000..554569ae --- /dev/null +++ b/icons-optimized/arrow-right.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrow-sort-2.svg b/icons-optimized/arrow-sort-2.svg new file mode 100644 index 00000000..d4b7cef6 --- /dev/null +++ b/icons-optimized/arrow-sort-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up.svg new file mode 100644 index 00000000..e2b3e66c --- /dev/null +++ b/icons-optimized/arrow-up.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/arrows-diagonal.svg b/icons-optimized/arrows-diagonal.svg new file mode 100644 index 00000000..2b05b5b0 --- /dev/null +++ b/icons-optimized/arrows-diagonal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/arrows-sort.svg b/icons-optimized/arrows-sort.svg new file mode 100644 index 00000000..5659ab8c --- /dev/null +++ b/icons-optimized/arrows-sort.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/atom-di.svg b/icons-optimized/atom-accent.svg similarity index 98% rename from icons-optimized/atom-di.svg rename to icons-optimized/atom-accent.svg index f2e05201..16e7b4de 100644 --- a/icons-optimized/atom-di.svg +++ b/icons-optimized/atom-accent.svg @@ -21,6 +21,6 @@ /> diff --git a/icons-optimized/atom.svg b/icons-optimized/atom.svg new file mode 100644 index 00000000..811184f1 --- /dev/null +++ b/icons-optimized/atom.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/ban.svg b/icons-optimized/ban.svg new file mode 100644 index 00000000..4c4dfcd8 --- /dev/null +++ b/icons-optimized/ban.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/bell-minus.svg b/icons-optimized/bell-minus.svg new file mode 100644 index 00000000..03c63293 --- /dev/null +++ b/icons-optimized/bell-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell-off.svg b/icons-optimized/bell-off.svg new file mode 100644 index 00000000..18fd7870 --- /dev/null +++ b/icons-optimized/bell-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell-plus.svg b/icons-optimized/bell-plus.svg new file mode 100644 index 00000000..b66b9c37 --- /dev/null +++ b/icons-optimized/bell-plus.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/bell-ringing-2.svg b/icons-optimized/bell-ringing-2.svg new file mode 100644 index 00000000..5adf2461 --- /dev/null +++ b/icons-optimized/bell-ringing-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/bell-ringing.svg b/icons-optimized/bell-ringing.svg new file mode 100644 index 00000000..750c2289 --- /dev/null +++ b/icons-optimized/bell-ringing.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/bell-x.svg b/icons-optimized/bell-x.svg new file mode 100644 index 00000000..9eb04ec6 --- /dev/null +++ b/icons-optimized/bell-x.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/bell.svg b/icons-optimized/bell.svg new file mode 100644 index 00000000..48a4352f --- /dev/null +++ b/icons-optimized/bell.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/brand-facebook.svg b/icons-optimized/brand-facebook.svg new file mode 100644 index 00000000..62ddc064 --- /dev/null +++ b/icons-optimized/brand-facebook.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-github.svg b/icons-optimized/brand-github.svg new file mode 100644 index 00000000..c0da6b60 --- /dev/null +++ b/icons-optimized/brand-github.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-instagram.svg b/icons-optimized/brand-instagram.svg new file mode 100644 index 00000000..d25e2c01 --- /dev/null +++ b/icons-optimized/brand-instagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/brand-twitter.svg b/icons-optimized/brand-twitter.svg new file mode 100644 index 00000000..929a2468 --- /dev/null +++ b/icons-optimized/brand-twitter.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/brand-whatsapp.svg b/icons-optimized/brand-whatsapp.svg new file mode 100644 index 00000000..590e4b1d --- /dev/null +++ b/icons-optimized/brand-whatsapp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/brand-youtube.svg b/icons-optimized/brand-youtube.svg new file mode 100644 index 00000000..f738e62c --- /dev/null +++ b/icons-optimized/brand-youtube.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off.svg new file mode 100644 index 00000000..1a634c7d --- /dev/null +++ b/icons-optimized/bulb-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb.svg new file mode 100644 index 00000000..5b6fbf75 --- /dev/null +++ b/icons-optimized/bulb.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/check-box-empty.svg b/icons-optimized/check-box-empty.svg new file mode 100644 index 00000000..6d29787c --- /dev/null +++ b/icons-optimized/check-box-empty.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-optimized/check.svg b/icons-optimized/check.svg new file mode 100644 index 00000000..c3e4cc88 --- /dev/null +++ b/icons-optimized/check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-optimized/check_box_empty.svg b/icons-optimized/check_box_empty.svg deleted file mode 100644 index ff7ef25f..00000000 --- a/icons-optimized/check_box_empty.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - diff --git a/icons-optimized/checkbox-blue-accent.svg b/icons-optimized/checkbox-blue-accent.svg new file mode 100644 index 00000000..e272dca4 --- /dev/null +++ b/icons-optimized/checkbox-blue-accent.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/icons-optimized/checkbox-green-accent.svg b/icons-optimized/checkbox-green-accent.svg new file mode 100644 index 00000000..9f92e9d5 --- /dev/null +++ b/icons-optimized/checkbox-green-accent.svg @@ -0,0 +1,25 @@ + + + + + + diff --git a/icons-optimized/checkbox-partial-blue-accent.svg b/icons-optimized/checkbox-partial-blue-accent.svg new file mode 100644 index 00000000..ef537a2b --- /dev/null +++ b/icons-optimized/checkbox-partial-blue-accent.svg @@ -0,0 +1,26 @@ + + + + + + diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down.svg new file mode 100644 index 00000000..89cdd4b6 --- /dev/null +++ b/icons-optimized/chevron-down.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left.svg new file mode 100644 index 00000000..e65a1eaa --- /dev/null +++ b/icons-optimized/chevron-left.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right.svg new file mode 100644 index 00000000..5a7d150e --- /dev/null +++ b/icons-optimized/chevron-right.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up.svg new file mode 100644 index 00000000..88a2b1ae --- /dev/null +++ b/icons-optimized/chevron-up.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-optimized/chevrons-left.svg b/icons-optimized/chevrons-left.svg new file mode 100644 index 00000000..5d149ef0 --- /dev/null +++ b/icons-optimized/chevrons-left.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/chevrons-right.svg b/icons-optimized/chevrons-right.svg new file mode 100644 index 00000000..557139e1 --- /dev/null +++ b/icons-optimized/chevrons-right.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-check-2.svg b/icons-optimized/circle-check-2.svg new file mode 100644 index 00000000..88bc31fa --- /dev/null +++ b/icons-optimized/circle-check-2.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check.svg new file mode 100644 index 00000000..b79835c6 --- /dev/null +++ b/icons-optimized/circle-check.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-cross-accent.svg b/icons-optimized/circle-cross-accent.svg new file mode 100644 index 00000000..8f548ac5 --- /dev/null +++ b/icons-optimized/circle-cross-accent.svg @@ -0,0 +1,20 @@ + + + + + diff --git a/icons-optimized/circle-fill.svg b/icons-optimized/circle-fill.svg new file mode 100644 index 00000000..c1ad7a36 --- /dev/null +++ b/icons-optimized/circle-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/circle.svg b/icons-optimized/circle.svg new file mode 100644 index 00000000..18ee1886 --- /dev/null +++ b/icons-optimized/circle.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/clock.svg b/icons-optimized/clock.svg new file mode 100644 index 00000000..d75b8eb9 --- /dev/null +++ b/icons-optimized/clock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/cloud-upload-accent.svg b/icons-optimized/cloud-upload-accent.svg new file mode 100644 index 00000000..c176b851 --- /dev/null +++ b/icons-optimized/cloud-upload-accent.svg @@ -0,0 +1,22 @@ + + + + diff --git a/icons-optimized/cloud-upload.svg b/icons-optimized/cloud-upload.svg new file mode 100644 index 00000000..0e0a9c6b --- /dev/null +++ b/icons-optimized/cloud-upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/collection.svg b/icons-optimized/collection.svg new file mode 100644 index 00000000..0a9c6a46 --- /dev/null +++ b/icons-optimized/collection.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/icons-optimized/color-swatch.svg b/icons-optimized/color-swatch.svg new file mode 100644 index 00000000..ceb1affb --- /dev/null +++ b/icons-optimized/color-swatch.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/confetti.svg b/icons-optimized/confetti.svg new file mode 100644 index 00000000..f70cb1cc --- /dev/null +++ b/icons-optimized/confetti.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/copy.svg b/icons-optimized/copy.svg new file mode 100644 index 00000000..d2687d00 --- /dev/null +++ b/icons-optimized/copy.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/crown-2-fill.svg b/icons-optimized/crown-2-fill.svg new file mode 100644 index 00000000..d2e5a0e0 --- /dev/null +++ b/icons-optimized/crown-2-fill.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/crown.svg b/icons-optimized/crown.svg new file mode 100644 index 00000000..b3072580 --- /dev/null +++ b/icons-optimized/crown.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/currency-dollar.svg b/icons-optimized/currency-dollar.svg new file mode 100644 index 00000000..025ce096 --- /dev/null +++ b/icons-optimized/currency-dollar.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/current-location.svg b/icons-optimized/current-location.svg new file mode 100644 index 00000000..c996f126 --- /dev/null +++ b/icons-optimized/current-location.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop-analytics.svg b/icons-optimized/device-desktop-analytics.svg new file mode 100644 index 00000000..7ee4df16 --- /dev/null +++ b/icons-optimized/device-desktop-analytics.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop-off.svg b/icons-optimized/device-desktop-off.svg new file mode 100644 index 00000000..77badf3a --- /dev/null +++ b/icons-optimized/device-desktop-off.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/device-desktop.svg b/icons-optimized/device-desktop.svg new file mode 100644 index 00000000..ce57ae55 --- /dev/null +++ b/icons-optimized/device-desktop.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/device-laptop.svg b/icons-optimized/device-laptop.svg new file mode 100644 index 00000000..55aeecd5 --- /dev/null +++ b/icons-optimized/device-laptop.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/device-tv.svg b/icons-optimized/device-tv.svg new file mode 100644 index 00000000..c355ab64 --- /dev/null +++ b/icons-optimized/device-tv.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/diamond.svg b/icons-optimized/diamond.svg new file mode 100644 index 00000000..5dffd4f6 --- /dev/null +++ b/icons-optimized/diamond.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/discount-2.svg b/icons-optimized/discount-2.svg new file mode 100644 index 00000000..6a81c637 --- /dev/null +++ b/icons-optimized/discount-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/discount.svg b/icons-optimized/discount.svg new file mode 100644 index 00000000..c202ceff --- /dev/null +++ b/icons-optimized/discount.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/disk.svg b/icons-optimized/disk.svg new file mode 100644 index 00000000..1cc0faec --- /dev/null +++ b/icons-optimized/disk.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/icons-optimized/dots-vertical.svg b/icons-optimized/dots-vertical.svg new file mode 100644 index 00000000..b1c0cbb0 --- /dev/null +++ b/icons-optimized/dots-vertical.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/icons-optimized/download-accent.svg b/icons-optimized/download-accent.svg new file mode 100644 index 00000000..ad092e0c --- /dev/null +++ b/icons-optimized/download-accent.svg @@ -0,0 +1,22 @@ + + + + diff --git a/icons-optimized/download.svg b/icons-optimized/download.svg new file mode 100644 index 00000000..a42b451f --- /dev/null +++ b/icons-optimized/download.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/edit-icon.svg b/icons-optimized/edit-icon.svg new file mode 100644 index 00000000..49525617 --- /dev/null +++ b/icons-optimized/edit-icon.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/edit.svg b/icons-optimized/edit.svg new file mode 100644 index 00000000..f5fa609b --- /dev/null +++ b/icons-optimized/edit.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/external-link.svg b/icons-optimized/external-link.svg new file mode 100644 index 00000000..118dc490 --- /dev/null +++ b/icons-optimized/external-link.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye-check.svg b/icons-optimized/eye-check.svg new file mode 100644 index 00000000..a80dabd7 --- /dev/null +++ b/icons-optimized/eye-check.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye-off.svg b/icons-optimized/eye-off.svg new file mode 100644 index 00000000..3ed8ad28 --- /dev/null +++ b/icons-optimized/eye-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/eye.svg b/icons-optimized/eye.svg new file mode 100644 index 00000000..791be93e --- /dev/null +++ b/icons-optimized/eye.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/facebook.svg b/icons-optimized/facebook.svg new file mode 100644 index 00000000..c0b2c111 --- /dev/null +++ b/icons-optimized/facebook.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/file-download.svg b/icons-optimized/file-download.svg new file mode 100644 index 00000000..9a233458 --- /dev/null +++ b/icons-optimized/file-download.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/file-export.svg b/icons-optimized/file-export.svg new file mode 100644 index 00000000..f3c3ee4c --- /dev/null +++ b/icons-optimized/file-export.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/file-report.svg b/icons-optimized/file-report.svg new file mode 100644 index 00000000..62f8576e --- /dev/null +++ b/icons-optimized/file-report.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/file-search.svg b/icons-optimized/file-search.svg new file mode 100644 index 00000000..3855de56 --- /dev/null +++ b/icons-optimized/file-search.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/filter-off.svg b/icons-optimized/filter-off.svg new file mode 100644 index 00000000..40dad92f --- /dev/null +++ b/icons-optimized/filter-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/filter.svg b/icons-optimized/filter.svg new file mode 100644 index 00000000..2373a415 --- /dev/null +++ b/icons-optimized/filter.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/flag-fill.svg b/icons-optimized/flag-fill.svg new file mode 100644 index 00000000..4c7da1f9 --- /dev/null +++ b/icons-optimized/flag-fill.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/icons-optimized/flag-off.svg b/icons-optimized/flag-off.svg new file mode 100644 index 00000000..9572c1f3 --- /dev/null +++ b/icons-optimized/flag-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/flag.svg b/icons-optimized/flag.svg new file mode 100644 index 00000000..ced11160 --- /dev/null +++ b/icons-optimized/flag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/folder-download.svg b/icons-optimized/folder-download.svg new file mode 100644 index 00000000..a8e429dd --- /dev/null +++ b/icons-optimized/folder-download.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-eye.svg b/icons-optimized/folder-eye.svg new file mode 100644 index 00000000..997243bf --- /dev/null +++ b/icons-optimized/folder-eye.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-fill.svg b/icons-optimized/folder-fill.svg new file mode 100644 index 00000000..ceee5ebf --- /dev/null +++ b/icons-optimized/folder-fill.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/folder-minus.svg b/icons-optimized/folder-minus.svg new file mode 100644 index 00000000..9c72671b --- /dev/null +++ b/icons-optimized/folder-minus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder-off.svg b/icons-optimized/folder-off.svg new file mode 100644 index 00000000..735f439f --- /dev/null +++ b/icons-optimized/folder-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder-plus.svg b/icons-optimized/folder-plus.svg new file mode 100644 index 00000000..71470b7a --- /dev/null +++ b/icons-optimized/folder-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-upload.svg b/icons-optimized/folder-upload.svg new file mode 100644 index 00000000..88cb4431 --- /dev/null +++ b/icons-optimized/folder-upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/folder-x.svg b/icons-optimized/folder-x.svg new file mode 100644 index 00000000..12aaade6 --- /dev/null +++ b/icons-optimized/folder-x.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/folder.svg b/icons-optimized/folder.svg new file mode 100644 index 00000000..61b6221a --- /dev/null +++ b/icons-optimized/folder.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/folders.svg b/icons-optimized/folders.svg new file mode 100644 index 00000000..60909b13 --- /dev/null +++ b/icons-optimized/folders.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/google-color.svg b/icons-optimized/google-color.svg new file mode 100644 index 00000000..fb052c3c --- /dev/null +++ b/icons-optimized/google-color.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/grab-hand.svg b/icons-optimized/grab-hand.svg new file mode 100644 index 00000000..cc32241c --- /dev/null +++ b/icons-optimized/grab-hand.svg @@ -0,0 +1,16 @@ + + + + diff --git a/icons-optimized/grid-dots.svg b/icons-optimized/grid-dots.svg new file mode 100644 index 00000000..71157b8b --- /dev/null +++ b/icons-optimized/grid-dots.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/grid-view-1.svg b/icons-optimized/grid-view-1.svg new file mode 100644 index 00000000..048c3ad4 --- /dev/null +++ b/icons-optimized/grid-view-1.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/icons-optimized/grid-view-2.svg b/icons-optimized/grid-view-2.svg new file mode 100644 index 00000000..bb0ca544 --- /dev/null +++ b/icons-optimized/grid-view-2.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/icons-optimized/home-2.svg b/icons-optimized/home-2.svg new file mode 100644 index 00000000..742b5e3c --- /dev/null +++ b/icons-optimized/home-2.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/home-mix.svg b/icons-optimized/home-mix.svg new file mode 100644 index 00000000..812be550 --- /dev/null +++ b/icons-optimized/home-mix.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/image-border.svg b/icons-optimized/image-border.svg new file mode 100644 index 00000000..ec6f86ce --- /dev/null +++ b/icons-optimized/image-border.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/info-circle.svg b/icons-optimized/info-circle.svg new file mode 100644 index 00000000..cfc66a57 --- /dev/null +++ b/icons-optimized/info-circle.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/info-cirlce-2.svg b/icons-optimized/info-cirlce-2.svg new file mode 100644 index 00000000..f70a894a --- /dev/null +++ b/icons-optimized/info-cirlce-2.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/icons-optimized/info-square.svg b/icons-optimized/info-square.svg new file mode 100644 index 00000000..d7a416cf --- /dev/null +++ b/icons-optimized/info-square.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/info.svg b/icons-optimized/info.svg new file mode 100644 index 00000000..bef17674 --- /dev/null +++ b/icons-optimized/info.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-optimized/key-2.svg b/icons-optimized/key-2.svg new file mode 100644 index 00000000..c3ba64dc --- /dev/null +++ b/icons-optimized/key-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/key-duplicate.svg b/icons-optimized/key-duplicate.svg new file mode 100644 index 00000000..0590abe2 --- /dev/null +++ b/icons-optimized/key-duplicate.svg @@ -0,0 +1,12 @@ + + + + diff --git a/icons-optimized/key.svg b/icons-optimized/key.svg new file mode 100644 index 00000000..782642e5 --- /dev/null +++ b/icons-optimized/key.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/layout-sidebar-right-mix.svg b/icons-optimized/layout-sidebar-right-mix.svg new file mode 100644 index 00000000..46c9197b --- /dev/null +++ b/icons-optimized/layout-sidebar-right-mix.svg @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/icons-optimized/link.svg b/icons-optimized/link.svg new file mode 100644 index 00000000..42f77dea --- /dev/null +++ b/icons-optimized/link.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/list-fill.svg b/icons-optimized/list-fill.svg new file mode 100644 index 00000000..b85aef0a --- /dev/null +++ b/icons-optimized/list-fill.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/loader.svg b/icons-optimized/loader.svg new file mode 100644 index 00000000..07ac63ff --- /dev/null +++ b/icons-optimized/loader.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/lock-2.svg b/icons-optimized/lock-2.svg new file mode 100644 index 00000000..77ae6d65 --- /dev/null +++ b/icons-optimized/lock-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/lock-off.svg b/icons-optimized/lock-off.svg new file mode 100644 index 00000000..9891100f --- /dev/null +++ b/icons-optimized/lock-off.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/lock-open.svg b/icons-optimized/lock-open.svg new file mode 100644 index 00000000..4b9cd286 --- /dev/null +++ b/icons-optimized/lock-open.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/lock.svg b/icons-optimized/lock.svg new file mode 100644 index 00000000..c729229a --- /dev/null +++ b/icons-optimized/lock.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/loop.svg b/icons-optimized/loop.svg new file mode 100644 index 00000000..67b8f1bd --- /dev/null +++ b/icons-optimized/loop.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/icons-optimized/loupe-fill.svg b/icons-optimized/loupe-fill.svg new file mode 100644 index 00000000..326af617 --- /dev/null +++ b/icons-optimized/loupe-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/mail.svg b/icons-optimized/mail.svg new file mode 100644 index 00000000..fe9e14ca --- /dev/null +++ b/icons-optimized/mail.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/map-2.svg b/icons-optimized/map-2.svg new file mode 100644 index 00000000..cfe48a0f --- /dev/null +++ b/icons-optimized/map-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/map-pin-off.svg b/icons-optimized/map-pin-off.svg new file mode 100644 index 00000000..189a37f3 --- /dev/null +++ b/icons-optimized/map-pin-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/map-pin.svg b/icons-optimized/map-pin.svg new file mode 100644 index 00000000..4a0ef91c --- /dev/null +++ b/icons-optimized/map-pin.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/minus.svg b/icons-optimized/minus.svg new file mode 100644 index 00000000..653783c0 --- /dev/null +++ b/icons-optimized/minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-optimized/mood-crazy-happy.svg b/icons-optimized/mood-crazy-happy.svg new file mode 100644 index 00000000..d399ee81 --- /dev/null +++ b/icons-optimized/mood-crazy-happy.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/mood-empty.svg b/icons-optimized/mood-empty.svg new file mode 100644 index 00000000..c204bfb7 --- /dev/null +++ b/icons-optimized/mood-empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mood-gray.svg b/icons-optimized/mood-gray.svg new file mode 100644 index 00000000..0d3f1a4f --- /dev/null +++ b/icons-optimized/mood-gray.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/mood-sad.svg b/icons-optimized/mood-sad.svg new file mode 100644 index 00000000..dd4156ef --- /dev/null +++ b/icons-optimized/mood-sad.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mood-smile.svg b/icons-optimized/mood-smile.svg new file mode 100644 index 00000000..363f0cd6 --- /dev/null +++ b/icons-optimized/mood-smile.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/mood.svg b/icons-optimized/mood.svg new file mode 100644 index 00000000..74bbd818 --- /dev/null +++ b/icons-optimized/mood.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/mouse-left-2.svg b/icons-optimized/mouse-left-2.svg new file mode 100644 index 00000000..296e44fb --- /dev/null +++ b/icons-optimized/mouse-left-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/icons-optimized/mouse-left.svg b/icons-optimized/mouse-left.svg new file mode 100644 index 00000000..662f586b --- /dev/null +++ b/icons-optimized/mouse-left.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/mouse-right.svg b/icons-optimized/mouse-right.svg new file mode 100644 index 00000000..cf682b98 --- /dev/null +++ b/icons-optimized/mouse-right.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/no-duplicate.svg b/icons-optimized/no-duplicate.svg index b5a96093..2825df05 100644 --- a/icons-optimized/no-duplicate.svg +++ b/icons-optimized/no-duplicate.svg @@ -1,30 +1,14 @@ - + - - + + diff --git a/icons-optimized/none-selected.svg b/icons-optimized/none-selected.svg new file mode 100644 index 00000000..b4743f11 --- /dev/null +++ b/icons-optimized/none-selected.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + diff --git a/icons-optimized/palette-fill.svg b/icons-optimized/palette-fill.svg new file mode 100644 index 00000000..50d1a44c --- /dev/null +++ b/icons-optimized/palette-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/palette.svg b/icons-optimized/palette.svg new file mode 100644 index 00000000..ca1f9843 --- /dev/null +++ b/icons-optimized/palette.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/pause-fill.svg b/icons-optimized/pause-fill.svg new file mode 100644 index 00000000..e9b1c7b8 --- /dev/null +++ b/icons-optimized/pause-fill.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/photo-off-2.svg b/icons-optimized/photo-off-2.svg new file mode 100644 index 00000000..2126ff29 --- /dev/null +++ b/icons-optimized/photo-off-2.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/icons-optimized/photo-off.svg b/icons-optimized/photo-off.svg new file mode 100644 index 00000000..42400f57 --- /dev/null +++ b/icons-optimized/photo-off.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/photo-stack.svg b/icons-optimized/photo-stack.svg new file mode 100644 index 00000000..be965096 --- /dev/null +++ b/icons-optimized/photo-stack.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/photo.svg b/icons-optimized/photo.svg new file mode 100644 index 00000000..8c00ca2b --- /dev/null +++ b/icons-optimized/photo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/pinned.svg b/icons-optimized/pinned.svg new file mode 100644 index 00000000..99a1ab43 --- /dev/null +++ b/icons-optimized/pinned.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/play-fill.svg b/icons-optimized/play-fill.svg new file mode 100644 index 00000000..555d2cee --- /dev/null +++ b/icons-optimized/play-fill.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/play.svg b/icons-optimized/play.svg new file mode 100644 index 00000000..9da4813f --- /dev/null +++ b/icons-optimized/play.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/play-di.svg b/icons-optimized/player.svg similarity index 100% rename from icons-optimized/play-di.svg rename to icons-optimized/player.svg diff --git a/icons-optimized/plus.svg b/icons-optimized/plus.svg new file mode 100644 index 00000000..ecaf6766 --- /dev/null +++ b/icons-optimized/plus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/question-mark.svg b/icons-optimized/question-mark.svg new file mode 100644 index 00000000..5a7748db --- /dev/null +++ b/icons-optimized/question-mark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/recull.svg b/icons-optimized/recull.svg new file mode 100644 index 00000000..a2a78d02 --- /dev/null +++ b/icons-optimized/recull.svg @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/icons-optimized/redeem.svg b/icons-optimized/redeem.svg new file mode 100644 index 00000000..35bccc20 --- /dev/null +++ b/icons-optimized/redeem.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/icons-optimized/refresh-2.svg b/icons-optimized/refresh-2.svg new file mode 100644 index 00000000..5dce3593 --- /dev/null +++ b/icons-optimized/refresh-2.svg @@ -0,0 +1,13 @@ + + + + + diff --git a/icons-optimized/refresh-alert.svg b/icons-optimized/refresh-alert.svg new file mode 100644 index 00000000..bbf51548 --- /dev/null +++ b/icons-optimized/refresh-alert.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/refresh.svg b/icons-optimized/refresh.svg new file mode 100644 index 00000000..7a1d96b0 --- /dev/null +++ b/icons-optimized/refresh.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/reload-alert.svg b/icons-optimized/reload-alert.svg new file mode 100644 index 00000000..96d4a686 --- /dev/null +++ b/icons-optimized/reload-alert.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/rotate-clockwise.svg b/icons-optimized/rotate-clockwise.svg new file mode 100644 index 00000000..991cb1c8 --- /dev/null +++ b/icons-optimized/rotate-clockwise.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/icons-optimized/rotate.svg b/icons-optimized/rotate.svg new file mode 100644 index 00000000..06e198cd --- /dev/null +++ b/icons-optimized/rotate.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/icons-optimized/scissors.svg b/icons-optimized/scissors.svg new file mode 100644 index 00000000..7511816a --- /dev/null +++ b/icons-optimized/scissors.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/icons-optimized/search.svg b/icons-optimized/search.svg new file mode 100644 index 00000000..25596cd2 --- /dev/null +++ b/icons-optimized/search.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/share.svg b/icons-optimized/share.svg new file mode 100644 index 00000000..5b8bf102 --- /dev/null +++ b/icons-optimized/share.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount.svg new file mode 100644 index 00000000..fd3842fd --- /dev/null +++ b/icons-optimized/shopping-cart-discount.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart.svg new file mode 100644 index 00000000..fc7e4890 --- /dev/null +++ b/icons-optimized/shopping-cart.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending-2.svg b/icons-optimized/sort-ascending-2.svg new file mode 100644 index 00000000..b6988b71 --- /dev/null +++ b/icons-optimized/sort-ascending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending-letters.svg b/icons-optimized/sort-ascending-letters.svg new file mode 100644 index 00000000..eed23080 --- /dev/null +++ b/icons-optimized/sort-ascending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending-numbers.svg b/icons-optimized/sort-ascending-numbers.svg new file mode 100644 index 00000000..bcfb64fc --- /dev/null +++ b/icons-optimized/sort-ascending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-ascending.svg b/icons-optimized/sort-ascending.svg new file mode 100644 index 00000000..2b93ccf3 --- /dev/null +++ b/icons-optimized/sort-ascending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-2.svg b/icons-optimized/sort-descending-2.svg new file mode 100644 index 00000000..4d4eaca0 --- /dev/null +++ b/icons-optimized/sort-descending-2.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-letters.svg b/icons-optimized/sort-descending-letters.svg new file mode 100644 index 00000000..bbf616f2 --- /dev/null +++ b/icons-optimized/sort-descending-letters.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending-numbers.svg b/icons-optimized/sort-descending-numbers.svg new file mode 100644 index 00000000..63e48601 --- /dev/null +++ b/icons-optimized/sort-descending-numbers.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sort-descending.svg b/icons-optimized/sort-descending.svg new file mode 100644 index 00000000..7d822b40 --- /dev/null +++ b/icons-optimized/sort-descending.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/sparkle.svg b/icons-optimized/sparkle.svg new file mode 100644 index 00000000..0db30c49 --- /dev/null +++ b/icons-optimized/sparkle.svg @@ -0,0 +1,11 @@ + + + + diff --git a/icons-optimized/spray.svg b/icons-optimized/spray.svg new file mode 100644 index 00000000..980bd0f9 --- /dev/null +++ b/icons-optimized/spray.svg @@ -0,0 +1,8 @@ + + + + diff --git a/icons-optimized/spray_2.svg b/icons-optimized/spray_2.svg new file mode 100644 index 00000000..be53fd1f --- /dev/null +++ b/icons-optimized/spray_2.svg @@ -0,0 +1,10 @@ + + + + diff --git a/icons-optimized/stack-double.svg b/icons-optimized/stack-double.svg new file mode 100644 index 00000000..e46ddf54 --- /dev/null +++ b/icons-optimized/stack-double.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/stack-triple.svg b/icons-optimized/stack-triple.svg new file mode 100644 index 00000000..b22d6c8c --- /dev/null +++ b/icons-optimized/stack-triple.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/star-fill-off.svg b/icons-optimized/star-fill-off.svg new file mode 100644 index 00000000..3d1b4105 --- /dev/null +++ b/icons-optimized/star-fill-off.svg @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/icons-optimized/star-fill.svg b/icons-optimized/star-fill.svg new file mode 100644 index 00000000..ee001f02 --- /dev/null +++ b/icons-optimized/star-fill.svg @@ -0,0 +1,9 @@ + + + diff --git a/icons-optimized/star-off.svg b/icons-optimized/star-off.svg new file mode 100644 index 00000000..62720bae --- /dev/null +++ b/icons-optimized/star-off.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/star.svg b/icons-optimized/star.svg new file mode 100644 index 00000000..3866280f --- /dev/null +++ b/icons-optimized/star.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/thumb-down.svg b/icons-optimized/thumb-down.svg new file mode 100644 index 00000000..a87e4480 --- /dev/null +++ b/icons-optimized/thumb-down.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/thumb-up.svg b/icons-optimized/thumb-up.svg new file mode 100644 index 00000000..d4f6bce7 --- /dev/null +++ b/icons-optimized/thumb-up.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/trash-off.svg b/icons-optimized/trash-off.svg new file mode 100644 index 00000000..42c05e36 --- /dev/null +++ b/icons-optimized/trash-off.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-optimized/trash.svg b/icons-optimized/trash.svg new file mode 100644 index 00000000..e88b5435 --- /dev/null +++ b/icons-optimized/trash.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/unlink.svg b/icons-optimized/unlink.svg new file mode 100644 index 00000000..135760cd --- /dev/null +++ b/icons-optimized/unlink.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/upload-2.svg b/icons-optimized/upload-2.svg new file mode 100644 index 00000000..05aed219 --- /dev/null +++ b/icons-optimized/upload-2.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/upload-accent.svg b/icons-optimized/upload-accent.svg new file mode 100644 index 00000000..bf48ea68 --- /dev/null +++ b/icons-optimized/upload-accent.svg @@ -0,0 +1,29 @@ + + + + + diff --git a/icons-optimized/upload-c1-cat.svg b/icons-optimized/upload-c1-cat.svg new file mode 100644 index 00000000..544c7bea --- /dev/null +++ b/icons-optimized/upload-c1-cat.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/upload-lr-cat.svg b/icons-optimized/upload-lr-cat.svg new file mode 100644 index 00000000..a1c7a4fa --- /dev/null +++ b/icons-optimized/upload-lr-cat.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/upload.svg b/icons-optimized/upload.svg new file mode 100644 index 00000000..7658c84c --- /dev/null +++ b/icons-optimized/upload.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-check.svg b/icons-optimized/user-check.svg new file mode 100644 index 00000000..b8d72b65 --- /dev/null +++ b/icons-optimized/user-check.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-exclamation.svg b/icons-optimized/user-exclamation.svg new file mode 100644 index 00000000..3949c55f --- /dev/null +++ b/icons-optimized/user-exclamation.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/user-minus.svg b/icons-optimized/user-minus.svg new file mode 100644 index 00000000..fae6c674 --- /dev/null +++ b/icons-optimized/user-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-off.svg b/icons-optimized/user-off.svg new file mode 100644 index 00000000..c5a16d94 --- /dev/null +++ b/icons-optimized/user-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-plus.svg b/icons-optimized/user-plus.svg new file mode 100644 index 00000000..8d6ff522 --- /dev/null +++ b/icons-optimized/user-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user-x.svg b/icons-optimized/user-x.svg new file mode 100644 index 00000000..80994dbf --- /dev/null +++ b/icons-optimized/user-x.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/user.svg b/icons-optimized/user.svg new file mode 100644 index 00000000..f3da9fb0 --- /dev/null +++ b/icons-optimized/user.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/users.svg b/icons-optimized/users.svg new file mode 100644 index 00000000..00f85d1f --- /dev/null +++ b/icons-optimized/users.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/view-all.svg b/icons-optimized/view-all.svg new file mode 100644 index 00000000..c4873a29 --- /dev/null +++ b/icons-optimized/view-all.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/viewfinder.svg b/icons-optimized/viewfinder.svg new file mode 100644 index 00000000..2459e667 --- /dev/null +++ b/icons-optimized/viewfinder.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons-optimized/wifi-1.svg b/icons-optimized/wifi-1.svg new file mode 100644 index 00000000..e09da0f4 --- /dev/null +++ b/icons-optimized/wifi-1.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/wifi-2.svg b/icons-optimized/wifi-2.svg new file mode 100644 index 00000000..7caa4a8f --- /dev/null +++ b/icons-optimized/wifi-2.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/wifi-off.svg b/icons-optimized/wifi-off.svg new file mode 100644 index 00000000..fcc0ac59 --- /dev/null +++ b/icons-optimized/wifi-off.svg @@ -0,0 +1,19 @@ + + + + + + + diff --git a/icons-optimized/wifi.svg b/icons-optimized/wifi.svg new file mode 100644 index 00000000..4fa21a89 --- /dev/null +++ b/icons-optimized/wifi.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/world.svg b/icons-optimized/world.svg new file mode 100644 index 00000000..8e5becc3 --- /dev/null +++ b/icons-optimized/world.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/writing.svg b/icons-optimized/writing.svg new file mode 100644 index 00000000..3d67f965 --- /dev/null +++ b/icons-optimized/writing.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/x.svg b/icons-optimized/x.svg new file mode 100644 index 00000000..8b6572a1 --- /dev/null +++ b/icons-optimized/x.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/zoom-in.svg b/icons-optimized/zoom-in.svg new file mode 100644 index 00000000..0d9e39af --- /dev/null +++ b/icons-optimized/zoom-in.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/zoom-out.svg b/icons-optimized/zoom-out.svg new file mode 100644 index 00000000..2abc5109 --- /dev/null +++ b/icons-optimized/zoom-out.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/zoom-question.svg b/icons-optimized/zoom-question.svg new file mode 100644 index 00000000..5374139d --- /dev/null +++ b/icons-optimized/zoom-question.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/_not-include/add_folder.svg b/icons-original/_not-include/add_folder.svg deleted file mode 100644 index f56026d9..00000000 --- a/icons-original/_not-include/add_folder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icons-original/no-change/logo.svg b/icons-original/_not-include/aftershoot-color-logo.svg similarity index 100% rename from icons-original/no-change/logo.svg rename to icons-original/_not-include/aftershoot-color-logo.svg diff --git a/icons-original/_not-include/bulb.svg b/icons-original/_not-include/bulb.svg deleted file mode 100644 index 97dc38a4..00000000 --- a/icons-original/_not-include/bulb.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-original/accent/check_box.svg b/icons-original/accent/checkbox-blue-accent.svg similarity index 100% rename from icons-original/accent/check_box.svg rename to icons-original/accent/checkbox-blue-accent.svg diff --git a/icons-original/_accent/check_box.svg b/icons-original/accent/checkbox-green-accent.svg similarity index 77% rename from icons-original/_accent/check_box.svg rename to icons-original/accent/checkbox-green-accent.svg index 0ecd46cf..1fa1135d 100644 --- a/icons-original/_accent/check_box.svg +++ b/icons-original/accent/checkbox-green-accent.svg @@ -1,6 +1,6 @@ - + - + diff --git a/icons-original/_accent/partially_checked.svg b/icons-original/accent/checkbox-partial-blue-accent.svg similarity index 61% rename from icons-original/_accent/partially_checked.svg rename to icons-original/accent/checkbox-partial-blue-accent.svg index 347fcd1d..0b3fabc3 100644 --- a/icons-original/_accent/partially_checked.svg +++ b/icons-original/accent/checkbox-partial-blue-accent.svg @@ -1,6 +1,6 @@ - + - + diff --git a/icons-original/_accent/cloud-upload-accent.svg b/icons-original/accent/cloud-upload-accent.svg similarity index 87% rename from icons-original/_accent/cloud-upload-accent.svg rename to icons-original/accent/cloud-upload-accent.svg index 4ac7caed..dcf13b1b 100644 --- a/icons-original/_accent/cloud-upload-accent.svg +++ b/icons-original/accent/cloud-upload-accent.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/_accent/download-accent.svg b/icons-original/accent/download-accent.svg similarity index 82% rename from icons-original/_accent/download-accent.svg rename to icons-original/accent/download-accent.svg index 675d3f76..08f96c42 100644 --- a/icons-original/_accent/download-accent.svg +++ b/icons-original/accent/download-accent.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/_accent/upload-accent.svg b/icons-original/accent/upload-accent.svg similarity index 61% rename from icons-original/_accent/upload-accent.svg rename to icons-original/accent/upload-accent.svg index 6eda67d3..5fc52069 100644 --- a/icons-original/_accent/upload-accent.svg +++ b/icons-original/accent/upload-accent.svg @@ -1,5 +1,5 @@ - - + + diff --git a/icons-original/no-change/aftershoot-credit.svg b/icons-original/logo/aftershoot-credit.svg similarity index 100% rename from icons-original/no-change/aftershoot-credit.svg rename to icons-original/logo/aftershoot-credit.svg diff --git a/icons-original/_color/edits_logo_text.svg b/icons-original/logo/edit-icon.svg similarity index 100% rename from icons-original/_color/edits_logo_text.svg rename to icons-original/logo/edit-icon.svg diff --git a/icons-original/no-change/google-color.svg b/icons-original/logo/google-color.svg similarity index 100% rename from icons-original/no-change/google-color.svg rename to icons-original/logo/google-color.svg diff --git a/icons-original/no-change/grab-hand.svg b/icons-original/logo/grab-hand.svg similarity index 100% rename from icons-original/no-change/grab-hand.svg rename to icons-original/logo/grab-hand.svg diff --git a/icons-original/_mix/check-box-empty.svg b/icons-original/mix/check-box-empty.svg similarity index 100% rename from icons-original/_mix/check-box-empty.svg rename to icons-original/mix/check-box-empty.svg diff --git a/icons-original/_mix/collection.svg b/icons-original/mix/collection.svg similarity index 100% rename from icons-original/_mix/collection.svg rename to icons-original/mix/collection.svg diff --git a/icons-original/_mix/flag-fill.svg b/icons-original/mix/flag-fill.svg similarity index 100% rename from icons-original/_mix/flag-fill.svg rename to icons-original/mix/flag-fill.svg diff --git a/icons-original/_mix/folder-fill.svg b/icons-original/mix/folder-fill.svg similarity index 100% rename from icons-original/_mix/folder-fill.svg rename to icons-original/mix/folder-fill.svg diff --git a/icons-original/_mix/image-border.svg b/icons-original/mix/image-border.svg similarity index 100% rename from icons-original/_mix/image-border.svg rename to icons-original/mix/image-border.svg diff --git a/icons-original/_mix/none-selected.svg b/icons-original/mix/none-selected.svg similarity index 100% rename from icons-original/_mix/none-selected.svg rename to icons-original/mix/none-selected.svg diff --git a/icons-original/_mix/play.svg b/icons-original/mix/play.svg similarity index 100% rename from icons-original/_mix/play.svg rename to icons-original/mix/play.svg diff --git a/icons-original/_mix/sparkle.svg b/icons-original/mix/sparkle.svg similarity index 100% rename from icons-original/_mix/sparkle.svg rename to icons-original/mix/sparkle.svg diff --git a/icons-original/_mix/star-fill.svg b/icons-original/mix/star-fill.svg similarity index 100% rename from icons-original/_mix/star-fill.svg rename to icons-original/mix/star-fill.svg diff --git a/icons-original/_mix/upload-c1-cat.svg b/icons-original/mix/upload-c1-cat.svg similarity index 100% rename from icons-original/_mix/upload-c1-cat.svg rename to icons-original/mix/upload-c1-cat.svg diff --git a/icons-original/_mix/upload-lr-cat.svg b/icons-original/mix/upload-lr-cat.svg similarity index 100% rename from icons-original/_mix/upload-lr-cat.svg rename to icons-original/mix/upload-lr-cat.svg diff --git a/icons-original/_accent/mood_gray.svg b/icons-original/no-change/mood-gray.svg similarity index 100% rename from icons-original/_accent/mood_gray.svg rename to icons-original/no-change/mood-gray.svg diff --git a/icons-original/_accent/mood.svg b/icons-original/no-change/mood.svg similarity index 100% rename from icons-original/_accent/mood.svg rename to icons-original/no-change/mood.svg diff --git a/icons-original/_outline/Import.svg b/icons-original/outline/Import.svg similarity index 100% rename from icons-original/_outline/Import.svg rename to icons-original/outline/Import.svg diff --git a/icons-original/_outline/adjustments-horizontal.svg b/icons-original/outline/adjustments-horizontal.svg similarity index 100% rename from icons-original/_outline/adjustments-horizontal.svg rename to icons-original/outline/adjustments-horizontal.svg diff --git a/icons-original/_outline/adjustments.svg b/icons-original/outline/adjustments.svg similarity index 100% rename from icons-original/_outline/adjustments.svg rename to icons-original/outline/adjustments.svg diff --git a/icons-original/_outline/alarm.svg b/icons-original/outline/alarm.svg similarity index 100% rename from icons-original/_outline/alarm.svg rename to icons-original/outline/alarm.svg diff --git a/icons-original/_outline/alert-circle.svg b/icons-original/outline/alert-circle.svg similarity index 100% rename from icons-original/_outline/alert-circle.svg rename to icons-original/outline/alert-circle.svg diff --git a/icons-original/_outline/alert-octagon.svg b/icons-original/outline/alert-octagon.svg similarity index 100% rename from icons-original/_outline/alert-octagon.svg rename to icons-original/outline/alert-octagon.svg diff --git a/icons-original/_outline/alert-triangle.svg b/icons-original/outline/alert-triangle.svg similarity index 100% rename from icons-original/_outline/alert-triangle.svg rename to icons-original/outline/alert-triangle.svg diff --git a/icons-original/_outline/arrow-down.svg b/icons-original/outline/arrow-down.svg similarity index 100% rename from icons-original/_outline/arrow-down.svg rename to icons-original/outline/arrow-down.svg diff --git a/icons-original/_outline/arrow-left.svg b/icons-original/outline/arrow-left.svg similarity index 100% rename from icons-original/_outline/arrow-left.svg rename to icons-original/outline/arrow-left.svg diff --git a/icons-original/_outline/arrow-narrow-left.svg b/icons-original/outline/arrow-narrow-left.svg similarity index 100% rename from icons-original/_outline/arrow-narrow-left.svg rename to icons-original/outline/arrow-narrow-left.svg diff --git a/icons-original/_outline/arrow-narrow-right.svg b/icons-original/outline/arrow-narrow-right.svg similarity index 100% rename from icons-original/_outline/arrow-narrow-right.svg rename to icons-original/outline/arrow-narrow-right.svg diff --git a/icons-original/_outline/arrow-right.svg b/icons-original/outline/arrow-right.svg similarity index 100% rename from icons-original/_outline/arrow-right.svg rename to icons-original/outline/arrow-right.svg diff --git a/icons-original/_outline/arrow-sort-2.svg b/icons-original/outline/arrow-sort-2.svg similarity index 100% rename from icons-original/_outline/arrow-sort-2.svg rename to icons-original/outline/arrow-sort-2.svg diff --git a/icons-original/_outline/arrow-up.svg b/icons-original/outline/arrow-up.svg similarity index 100% rename from icons-original/_outline/arrow-up.svg rename to icons-original/outline/arrow-up.svg diff --git a/icons-original/_outline/arrows-diagonal.svg b/icons-original/outline/arrows-diagonal.svg similarity index 100% rename from icons-original/_outline/arrows-diagonal.svg rename to icons-original/outline/arrows-diagonal.svg diff --git a/icons-original/_outline/arrows-sort.svg b/icons-original/outline/arrows-sort.svg similarity index 100% rename from icons-original/_outline/arrows-sort.svg rename to icons-original/outline/arrows-sort.svg diff --git a/icons-original/_outline/atom.svg b/icons-original/outline/atom.svg similarity index 100% rename from icons-original/_outline/atom.svg rename to icons-original/outline/atom.svg diff --git a/icons-original/_outline/ban.svg b/icons-original/outline/ban.svg similarity index 100% rename from icons-original/_outline/ban.svg rename to icons-original/outline/ban.svg diff --git a/icons-original/_outline/bell-minus.svg b/icons-original/outline/bell-minus.svg similarity index 100% rename from icons-original/_outline/bell-minus.svg rename to icons-original/outline/bell-minus.svg diff --git a/icons-original/_outline/bell-off.svg b/icons-original/outline/bell-off.svg similarity index 100% rename from icons-original/_outline/bell-off.svg rename to icons-original/outline/bell-off.svg diff --git a/icons-original/_outline/bell-plus.svg b/icons-original/outline/bell-plus.svg similarity index 100% rename from icons-original/_outline/bell-plus.svg rename to icons-original/outline/bell-plus.svg diff --git a/icons-original/_outline/bell-ringing-2.svg b/icons-original/outline/bell-ringing-2.svg similarity index 100% rename from icons-original/_outline/bell-ringing-2.svg rename to icons-original/outline/bell-ringing-2.svg diff --git a/icons-original/_outline/bell-ringing.svg b/icons-original/outline/bell-ringing.svg similarity index 100% rename from icons-original/_outline/bell-ringing.svg rename to icons-original/outline/bell-ringing.svg diff --git a/icons-original/_outline/bell-x.svg b/icons-original/outline/bell-x.svg similarity index 100% rename from icons-original/_outline/bell-x.svg rename to icons-original/outline/bell-x.svg diff --git a/icons-original/_outline/bell.svg b/icons-original/outline/bell.svg similarity index 100% rename from icons-original/_outline/bell.svg rename to icons-original/outline/bell.svg diff --git a/icons-original/_outline/brand-facebook.svg b/icons-original/outline/brand-facebook.svg similarity index 100% rename from icons-original/_outline/brand-facebook.svg rename to icons-original/outline/brand-facebook.svg diff --git a/icons-original/_outline/brand-github.svg b/icons-original/outline/brand-github.svg similarity index 100% rename from icons-original/_outline/brand-github.svg rename to icons-original/outline/brand-github.svg diff --git a/icons-original/_outline/brand-instagram.svg b/icons-original/outline/brand-instagram.svg similarity index 100% rename from icons-original/_outline/brand-instagram.svg rename to icons-original/outline/brand-instagram.svg diff --git a/icons-original/_outline/brand-twitter.svg b/icons-original/outline/brand-twitter.svg similarity index 100% rename from icons-original/_outline/brand-twitter.svg rename to icons-original/outline/brand-twitter.svg diff --git a/icons-original/_outline/brand-whatsapp.svg b/icons-original/outline/brand-whatsapp.svg similarity index 100% rename from icons-original/_outline/brand-whatsapp.svg rename to icons-original/outline/brand-whatsapp.svg diff --git a/icons-original/_outline/brand-youtube.svg b/icons-original/outline/brand-youtube.svg similarity index 100% rename from icons-original/_outline/brand-youtube.svg rename to icons-original/outline/brand-youtube.svg diff --git a/icons-original/_outline/bulb-off.svg b/icons-original/outline/bulb-off.svg similarity index 100% rename from icons-original/_outline/bulb-off.svg rename to icons-original/outline/bulb-off.svg diff --git a/icons-original/_outline/bulb.svg b/icons-original/outline/bulb.svg similarity index 100% rename from icons-original/_outline/bulb.svg rename to icons-original/outline/bulb.svg diff --git a/icons-original/_outline/check.svg b/icons-original/outline/check.svg similarity index 100% rename from icons-original/_outline/check.svg rename to icons-original/outline/check.svg diff --git a/icons-original/_outline/chevron-down.svg b/icons-original/outline/chevron-down.svg similarity index 100% rename from icons-original/_outline/chevron-down.svg rename to icons-original/outline/chevron-down.svg diff --git a/icons-original/_outline/chevron-left.svg b/icons-original/outline/chevron-left.svg similarity index 100% rename from icons-original/_outline/chevron-left.svg rename to icons-original/outline/chevron-left.svg diff --git a/icons-original/_outline/chevron-right.svg b/icons-original/outline/chevron-right.svg similarity index 100% rename from icons-original/_outline/chevron-right.svg rename to icons-original/outline/chevron-right.svg diff --git a/icons-original/_outline/chevron-up.svg b/icons-original/outline/chevron-up.svg similarity index 100% rename from icons-original/_outline/chevron-up.svg rename to icons-original/outline/chevron-up.svg diff --git a/icons-original/_outline/chevrons-left.svg b/icons-original/outline/chevrons-left.svg similarity index 100% rename from icons-original/_outline/chevrons-left.svg rename to icons-original/outline/chevrons-left.svg diff --git a/icons-original/_outline/chevrons-right.svg b/icons-original/outline/chevrons-right.svg similarity index 100% rename from icons-original/_outline/chevrons-right.svg rename to icons-original/outline/chevrons-right.svg diff --git a/icons-original/_outline/circle-check-2.svg b/icons-original/outline/circle-check-2.svg similarity index 100% rename from icons-original/_outline/circle-check-2.svg rename to icons-original/outline/circle-check-2.svg diff --git a/icons-original/_outline/circle-check.svg b/icons-original/outline/circle-check.svg similarity index 100% rename from icons-original/_outline/circle-check.svg rename to icons-original/outline/circle-check.svg diff --git a/icons-original/_outline/circle.svg b/icons-original/outline/circle.svg similarity index 100% rename from icons-original/_outline/circle.svg rename to icons-original/outline/circle.svg diff --git a/icons-original/_outline/clock.svg b/icons-original/outline/clock.svg similarity index 100% rename from icons-original/_outline/clock.svg rename to icons-original/outline/clock.svg diff --git a/icons-original/_outline/cloud-upload.svg b/icons-original/outline/cloud-upload.svg similarity index 100% rename from icons-original/_outline/cloud-upload.svg rename to icons-original/outline/cloud-upload.svg diff --git a/icons-original/_outline/color-swatch.svg b/icons-original/outline/color-swatch.svg similarity index 100% rename from icons-original/_outline/color-swatch.svg rename to icons-original/outline/color-swatch.svg diff --git a/icons-original/_outline/confetti.svg b/icons-original/outline/confetti.svg similarity index 100% rename from icons-original/_outline/confetti.svg rename to icons-original/outline/confetti.svg diff --git a/icons-original/_outline/copy.svg b/icons-original/outline/copy.svg similarity index 100% rename from icons-original/_outline/copy.svg rename to icons-original/outline/copy.svg diff --git a/icons-original/_outline/crown.svg b/icons-original/outline/crown.svg similarity index 100% rename from icons-original/_outline/crown.svg rename to icons-original/outline/crown.svg diff --git a/icons-original/_outline/currency-dollar.svg b/icons-original/outline/currency-dollar.svg similarity index 100% rename from icons-original/_outline/currency-dollar.svg rename to icons-original/outline/currency-dollar.svg diff --git a/icons-original/_outline/current-location.svg b/icons-original/outline/current-location.svg similarity index 100% rename from icons-original/_outline/current-location.svg rename to icons-original/outline/current-location.svg diff --git a/icons-original/_outline/device-desktop-analytics.svg b/icons-original/outline/device-desktop-analytics.svg similarity index 100% rename from icons-original/_outline/device-desktop-analytics.svg rename to icons-original/outline/device-desktop-analytics.svg diff --git a/icons-original/_outline/device-desktop-off.svg b/icons-original/outline/device-desktop-off.svg similarity index 100% rename from icons-original/_outline/device-desktop-off.svg rename to icons-original/outline/device-desktop-off.svg diff --git a/icons-original/_outline/device-desktop.svg b/icons-original/outline/device-desktop.svg similarity index 100% rename from icons-original/_outline/device-desktop.svg rename to icons-original/outline/device-desktop.svg diff --git a/icons-original/_outline/device-laptop.svg b/icons-original/outline/device-laptop.svg similarity index 100% rename from icons-original/_outline/device-laptop.svg rename to icons-original/outline/device-laptop.svg diff --git a/icons-original/_outline/device-tv.svg b/icons-original/outline/device-tv.svg similarity index 100% rename from icons-original/_outline/device-tv.svg rename to icons-original/outline/device-tv.svg diff --git a/icons-original/_outline/diamond.svg b/icons-original/outline/diamond.svg similarity index 100% rename from icons-original/_outline/diamond.svg rename to icons-original/outline/diamond.svg diff --git a/icons-original/_outline/discount-2.svg b/icons-original/outline/discount-2.svg similarity index 100% rename from icons-original/_outline/discount-2.svg rename to icons-original/outline/discount-2.svg diff --git a/icons-original/_outline/discount.svg b/icons-original/outline/discount.svg similarity index 100% rename from icons-original/_outline/discount.svg rename to icons-original/outline/discount.svg diff --git a/icons-original/_outline/disk.svg b/icons-original/outline/disk.svg similarity index 100% rename from icons-original/_outline/disk.svg rename to icons-original/outline/disk.svg diff --git a/icons-original/_outline/dots-vertical.svg b/icons-original/outline/dots-vertical.svg similarity index 100% rename from icons-original/_outline/dots-vertical.svg rename to icons-original/outline/dots-vertical.svg diff --git a/icons-original/_outline/download.svg b/icons-original/outline/download.svg similarity index 100% rename from icons-original/_outline/download.svg rename to icons-original/outline/download.svg diff --git a/icons-original/_outline/edit.svg b/icons-original/outline/edit.svg similarity index 100% rename from icons-original/_outline/edit.svg rename to icons-original/outline/edit.svg diff --git a/icons-original/_outline/external-link.svg b/icons-original/outline/external-link.svg similarity index 100% rename from icons-original/_outline/external-link.svg rename to icons-original/outline/external-link.svg diff --git a/icons-original/_outline/eye-check.svg b/icons-original/outline/eye-check.svg similarity index 100% rename from icons-original/_outline/eye-check.svg rename to icons-original/outline/eye-check.svg diff --git a/icons-original/_outline/eye-off.svg b/icons-original/outline/eye-off.svg similarity index 100% rename from icons-original/_outline/eye-off.svg rename to icons-original/outline/eye-off.svg diff --git a/icons-original/_outline/eye.svg b/icons-original/outline/eye.svg similarity index 100% rename from icons-original/_outline/eye.svg rename to icons-original/outline/eye.svg diff --git a/icons-original/_outline/file-download.svg b/icons-original/outline/file-download.svg similarity index 100% rename from icons-original/_outline/file-download.svg rename to icons-original/outline/file-download.svg diff --git a/icons-original/_outline/file-export.svg b/icons-original/outline/file-export.svg similarity index 100% rename from icons-original/_outline/file-export.svg rename to icons-original/outline/file-export.svg diff --git a/icons-original/_outline/file-report.svg b/icons-original/outline/file-report.svg similarity index 100% rename from icons-original/_outline/file-report.svg rename to icons-original/outline/file-report.svg diff --git a/icons-original/_outline/file-search.svg b/icons-original/outline/file-search.svg similarity index 100% rename from icons-original/_outline/file-search.svg rename to icons-original/outline/file-search.svg diff --git a/icons-original/_outline/filter-off.svg b/icons-original/outline/filter-off.svg similarity index 100% rename from icons-original/_outline/filter-off.svg rename to icons-original/outline/filter-off.svg diff --git a/icons-original/_outline/filter.svg b/icons-original/outline/filter.svg similarity index 100% rename from icons-original/_outline/filter.svg rename to icons-original/outline/filter.svg diff --git a/icons-original/_outline/flag-off.svg b/icons-original/outline/flag-off.svg similarity index 100% rename from icons-original/_outline/flag-off.svg rename to icons-original/outline/flag-off.svg diff --git a/icons-original/_outline/flag.svg b/icons-original/outline/flag.svg similarity index 100% rename from icons-original/_outline/flag.svg rename to icons-original/outline/flag.svg diff --git a/icons-original/_outline/folder-download.svg b/icons-original/outline/folder-download.svg similarity index 100% rename from icons-original/_outline/folder-download.svg rename to icons-original/outline/folder-download.svg diff --git a/icons-original/_outline/folder-eye.svg b/icons-original/outline/folder-eye.svg similarity index 100% rename from icons-original/_outline/folder-eye.svg rename to icons-original/outline/folder-eye.svg diff --git a/icons-original/_outline/folder-minus.svg b/icons-original/outline/folder-minus.svg similarity index 100% rename from icons-original/_outline/folder-minus.svg rename to icons-original/outline/folder-minus.svg diff --git a/icons-original/_outline/folder-off.svg b/icons-original/outline/folder-off.svg similarity index 100% rename from icons-original/_outline/folder-off.svg rename to icons-original/outline/folder-off.svg diff --git a/icons-original/_outline/folder-plus.svg b/icons-original/outline/folder-plus.svg similarity index 100% rename from icons-original/_outline/folder-plus.svg rename to icons-original/outline/folder-plus.svg diff --git a/icons-original/_outline/folder-upload.svg b/icons-original/outline/folder-upload.svg similarity index 100% rename from icons-original/_outline/folder-upload.svg rename to icons-original/outline/folder-upload.svg diff --git a/icons-original/_outline/folder-x.svg b/icons-original/outline/folder-x.svg similarity index 100% rename from icons-original/_outline/folder-x.svg rename to icons-original/outline/folder-x.svg diff --git a/icons-original/_outline/folder.svg b/icons-original/outline/folder.svg similarity index 100% rename from icons-original/_outline/folder.svg rename to icons-original/outline/folder.svg diff --git a/icons-original/_outline/folders.svg b/icons-original/outline/folders.svg similarity index 100% rename from icons-original/_outline/folders.svg rename to icons-original/outline/folders.svg diff --git a/icons-original/_outline/grid-dots.svg b/icons-original/outline/grid-dots.svg similarity index 100% rename from icons-original/_outline/grid-dots.svg rename to icons-original/outline/grid-dots.svg diff --git a/icons-original/_outline/home-2.svg b/icons-original/outline/home-2.svg similarity index 100% rename from icons-original/_outline/home-2.svg rename to icons-original/outline/home-2.svg diff --git a/icons-original/_outline/info-circle.svg b/icons-original/outline/info-circle.svg similarity index 100% rename from icons-original/_outline/info-circle.svg rename to icons-original/outline/info-circle.svg diff --git a/icons-original/_outline/info-cirlce-2.svg b/icons-original/outline/info-cirlce-2.svg similarity index 100% rename from icons-original/_outline/info-cirlce-2.svg rename to icons-original/outline/info-cirlce-2.svg diff --git a/icons-original/_outline/info-square.svg b/icons-original/outline/info-square.svg similarity index 100% rename from icons-original/_outline/info-square.svg rename to icons-original/outline/info-square.svg diff --git a/icons-original/_outline/info.svg b/icons-original/outline/info.svg similarity index 100% rename from icons-original/_outline/info.svg rename to icons-original/outline/info.svg diff --git a/icons-original/_outline/key-2.svg b/icons-original/outline/key-2.svg similarity index 100% rename from icons-original/_outline/key-2.svg rename to icons-original/outline/key-2.svg diff --git a/icons-original/_outline/key-duplicate.svg b/icons-original/outline/key-duplicate.svg similarity index 100% rename from icons-original/_outline/key-duplicate.svg rename to icons-original/outline/key-duplicate.svg diff --git a/icons-original/_outline/key.svg b/icons-original/outline/key.svg similarity index 100% rename from icons-original/_outline/key.svg rename to icons-original/outline/key.svg diff --git a/icons-original/_outline/link.svg b/icons-original/outline/link.svg similarity index 100% rename from icons-original/_outline/link.svg rename to icons-original/outline/link.svg diff --git a/icons-original/_outline/loader.svg b/icons-original/outline/loader.svg similarity index 100% rename from icons-original/_outline/loader.svg rename to icons-original/outline/loader.svg diff --git a/icons-original/_outline/lock-2.svg b/icons-original/outline/lock-2.svg similarity index 100% rename from icons-original/_outline/lock-2.svg rename to icons-original/outline/lock-2.svg diff --git a/icons-original/_outline/lock-off.svg b/icons-original/outline/lock-off.svg similarity index 100% rename from icons-original/_outline/lock-off.svg rename to icons-original/outline/lock-off.svg diff --git a/icons-original/_outline/lock-open.svg b/icons-original/outline/lock-open.svg similarity index 100% rename from icons-original/_outline/lock-open.svg rename to icons-original/outline/lock-open.svg diff --git a/icons-original/_outline/lock.svg b/icons-original/outline/lock.svg similarity index 100% rename from icons-original/_outline/lock.svg rename to icons-original/outline/lock.svg diff --git a/icons-original/_outline/loop.svg b/icons-original/outline/loop.svg similarity index 100% rename from icons-original/_outline/loop.svg rename to icons-original/outline/loop.svg diff --git a/icons-original/_outline/mail.svg b/icons-original/outline/mail.svg similarity index 100% rename from icons-original/_outline/mail.svg rename to icons-original/outline/mail.svg diff --git a/icons-original/_outline/map-2.svg b/icons-original/outline/map-2.svg similarity index 100% rename from icons-original/_outline/map-2.svg rename to icons-original/outline/map-2.svg diff --git a/icons-original/_outline/map-pin-off.svg b/icons-original/outline/map-pin-off.svg similarity index 100% rename from icons-original/_outline/map-pin-off.svg rename to icons-original/outline/map-pin-off.svg diff --git a/icons-original/_outline/map-pin.svg b/icons-original/outline/map-pin.svg similarity index 100% rename from icons-original/_outline/map-pin.svg rename to icons-original/outline/map-pin.svg diff --git a/icons-original/_outline/minus.svg b/icons-original/outline/minus.svg similarity index 100% rename from icons-original/_outline/minus.svg rename to icons-original/outline/minus.svg diff --git a/icons-original/_outline/mood-crazy-happy.svg b/icons-original/outline/mood-crazy-happy.svg similarity index 100% rename from icons-original/_outline/mood-crazy-happy.svg rename to icons-original/outline/mood-crazy-happy.svg diff --git a/icons-original/_outline/mood-empty.svg b/icons-original/outline/mood-empty.svg similarity index 100% rename from icons-original/_outline/mood-empty.svg rename to icons-original/outline/mood-empty.svg diff --git a/icons-original/_outline/mood-sad.svg b/icons-original/outline/mood-sad.svg similarity index 100% rename from icons-original/_outline/mood-sad.svg rename to icons-original/outline/mood-sad.svg diff --git a/icons-original/_outline/mood-smile.svg b/icons-original/outline/mood-smile.svg similarity index 100% rename from icons-original/_outline/mood-smile.svg rename to icons-original/outline/mood-smile.svg diff --git a/icons-original/_outline/mouse-left.svg b/icons-original/outline/mouse-left.svg similarity index 100% rename from icons-original/_outline/mouse-left.svg rename to icons-original/outline/mouse-left.svg diff --git a/icons-original/_outline/mouse-right.svg b/icons-original/outline/mouse-right.svg similarity index 100% rename from icons-original/_outline/mouse-right.svg rename to icons-original/outline/mouse-right.svg diff --git a/icons-original/_outline/no-duplicate.svg b/icons-original/outline/no-duplicate.svg similarity index 100% rename from icons-original/_outline/no-duplicate.svg rename to icons-original/outline/no-duplicate.svg diff --git a/icons-original/_outline/palette.svg b/icons-original/outline/palette.svg similarity index 100% rename from icons-original/_outline/palette.svg rename to icons-original/outline/palette.svg diff --git a/icons-original/_outline/photo-off-2.svg b/icons-original/outline/photo-off-2.svg similarity index 100% rename from icons-original/_outline/photo-off-2.svg rename to icons-original/outline/photo-off-2.svg diff --git a/icons-original/_outline/photo-off.svg b/icons-original/outline/photo-off.svg similarity index 100% rename from icons-original/_outline/photo-off.svg rename to icons-original/outline/photo-off.svg diff --git a/icons-original/_outline/photo-stack.svg b/icons-original/outline/photo-stack.svg similarity index 100% rename from icons-original/_outline/photo-stack.svg rename to icons-original/outline/photo-stack.svg diff --git a/icons-original/_outline/photo.svg b/icons-original/outline/photo.svg similarity index 100% rename from icons-original/_outline/photo.svg rename to icons-original/outline/photo.svg diff --git a/icons-original/_outline/pinned.svg b/icons-original/outline/pinned.svg similarity index 100% rename from icons-original/_outline/pinned.svg rename to icons-original/outline/pinned.svg diff --git a/icons-original/_outline/plus.svg b/icons-original/outline/plus.svg similarity index 100% rename from icons-original/_outline/plus.svg rename to icons-original/outline/plus.svg diff --git a/icons-original/_outline/question-mark.svg b/icons-original/outline/question-mark.svg similarity index 100% rename from icons-original/_outline/question-mark.svg rename to icons-original/outline/question-mark.svg diff --git a/icons-original/_outline/redeem.svg b/icons-original/outline/redeem.svg similarity index 100% rename from icons-original/_outline/redeem.svg rename to icons-original/outline/redeem.svg diff --git a/icons-original/_outline/refresh-2.svg b/icons-original/outline/refresh-2.svg similarity index 100% rename from icons-original/_outline/refresh-2.svg rename to icons-original/outline/refresh-2.svg diff --git a/icons-original/_outline/refresh-alert.svg b/icons-original/outline/refresh-alert.svg similarity index 100% rename from icons-original/_outline/refresh-alert.svg rename to icons-original/outline/refresh-alert.svg diff --git a/icons-original/_outline/refresh.svg b/icons-original/outline/refresh.svg similarity index 100% rename from icons-original/_outline/refresh.svg rename to icons-original/outline/refresh.svg diff --git a/icons-original/_outline/reload-alert.svg b/icons-original/outline/reload-alert.svg similarity index 100% rename from icons-original/_outline/reload-alert.svg rename to icons-original/outline/reload-alert.svg diff --git a/icons-original/_outline/rotate-clockwise.svg b/icons-original/outline/rotate-clockwise.svg similarity index 100% rename from icons-original/_outline/rotate-clockwise.svg rename to icons-original/outline/rotate-clockwise.svg diff --git a/icons-original/_outline/rotate.svg b/icons-original/outline/rotate.svg similarity index 100% rename from icons-original/_outline/rotate.svg rename to icons-original/outline/rotate.svg diff --git a/icons-original/_outline/search.svg b/icons-original/outline/search.svg similarity index 100% rename from icons-original/_outline/search.svg rename to icons-original/outline/search.svg diff --git a/icons-original/_outline/share.svg b/icons-original/outline/share.svg similarity index 100% rename from icons-original/_outline/share.svg rename to icons-original/outline/share.svg diff --git a/icons-original/_outline/shopping-cart-discount.svg b/icons-original/outline/shopping-cart-discount.svg similarity index 100% rename from icons-original/_outline/shopping-cart-discount.svg rename to icons-original/outline/shopping-cart-discount.svg diff --git a/icons-original/_outline/shopping-cart.svg b/icons-original/outline/shopping-cart.svg similarity index 100% rename from icons-original/_outline/shopping-cart.svg rename to icons-original/outline/shopping-cart.svg diff --git a/icons-original/_outline/sort-ascending-2.svg b/icons-original/outline/sort-ascending-2.svg similarity index 100% rename from icons-original/_outline/sort-ascending-2.svg rename to icons-original/outline/sort-ascending-2.svg diff --git a/icons-original/_outline/sort-ascending-letters.svg b/icons-original/outline/sort-ascending-letters.svg similarity index 100% rename from icons-original/_outline/sort-ascending-letters.svg rename to icons-original/outline/sort-ascending-letters.svg diff --git a/icons-original/_outline/sort-ascending-numbers.svg b/icons-original/outline/sort-ascending-numbers.svg similarity index 100% rename from icons-original/_outline/sort-ascending-numbers.svg rename to icons-original/outline/sort-ascending-numbers.svg diff --git a/icons-original/_outline/sort-ascending.svg b/icons-original/outline/sort-ascending.svg similarity index 100% rename from icons-original/_outline/sort-ascending.svg rename to icons-original/outline/sort-ascending.svg diff --git a/icons-original/_outline/sort-descending-2.svg b/icons-original/outline/sort-descending-2.svg similarity index 100% rename from icons-original/_outline/sort-descending-2.svg rename to icons-original/outline/sort-descending-2.svg diff --git a/icons-original/_outline/sort-descending-letters.svg b/icons-original/outline/sort-descending-letters.svg similarity index 100% rename from icons-original/_outline/sort-descending-letters.svg rename to icons-original/outline/sort-descending-letters.svg diff --git a/icons-original/_outline/sort-descending-numbers.svg b/icons-original/outline/sort-descending-numbers.svg similarity index 100% rename from icons-original/_outline/sort-descending-numbers.svg rename to icons-original/outline/sort-descending-numbers.svg diff --git a/icons-original/_outline/sort-descending.svg b/icons-original/outline/sort-descending.svg similarity index 100% rename from icons-original/_outline/sort-descending.svg rename to icons-original/outline/sort-descending.svg diff --git a/icons-original/_outline/spray.svg b/icons-original/outline/spray.svg similarity index 100% rename from icons-original/_outline/spray.svg rename to icons-original/outline/spray.svg diff --git a/icons-original/_outline/spray_2.svg b/icons-original/outline/spray_2.svg similarity index 100% rename from icons-original/_outline/spray_2.svg rename to icons-original/outline/spray_2.svg diff --git a/icons-original/_outline/stack-double.svg b/icons-original/outline/stack-double.svg similarity index 100% rename from icons-original/_outline/stack-double.svg rename to icons-original/outline/stack-double.svg diff --git a/icons-original/_outline/stack-triple.svg b/icons-original/outline/stack-triple.svg similarity index 100% rename from icons-original/_outline/stack-triple.svg rename to icons-original/outline/stack-triple.svg diff --git a/icons-original/_outline/star-off.svg b/icons-original/outline/star-off.svg similarity index 100% rename from icons-original/_outline/star-off.svg rename to icons-original/outline/star-off.svg diff --git a/icons-original/_outline/star.svg b/icons-original/outline/star.svg similarity index 100% rename from icons-original/_outline/star.svg rename to icons-original/outline/star.svg diff --git a/icons-original/_outline/thumb-down.svg b/icons-original/outline/thumb-down.svg similarity index 100% rename from icons-original/_outline/thumb-down.svg rename to icons-original/outline/thumb-down.svg diff --git a/icons-original/_outline/thumb-up.svg b/icons-original/outline/thumb-up.svg similarity index 100% rename from icons-original/_outline/thumb-up.svg rename to icons-original/outline/thumb-up.svg diff --git a/icons-original/_outline/trash-off.svg b/icons-original/outline/trash-off.svg similarity index 100% rename from icons-original/_outline/trash-off.svg rename to icons-original/outline/trash-off.svg diff --git a/icons-original/_outline/trash.svg b/icons-original/outline/trash.svg similarity index 100% rename from icons-original/_outline/trash.svg rename to icons-original/outline/trash.svg diff --git a/icons-original/_outline/unlink.svg b/icons-original/outline/unlink.svg similarity index 100% rename from icons-original/_outline/unlink.svg rename to icons-original/outline/unlink.svg diff --git a/icons-original/_outline/upload-2.svg b/icons-original/outline/upload-2.svg similarity index 100% rename from icons-original/_outline/upload-2.svg rename to icons-original/outline/upload-2.svg diff --git a/icons-original/_outline/upload.svg b/icons-original/outline/upload.svg similarity index 100% rename from icons-original/_outline/upload.svg rename to icons-original/outline/upload.svg diff --git a/icons-original/_outline/user-check.svg b/icons-original/outline/user-check.svg similarity index 100% rename from icons-original/_outline/user-check.svg rename to icons-original/outline/user-check.svg diff --git a/icons-original/_outline/user-exclamation.svg b/icons-original/outline/user-exclamation.svg similarity index 100% rename from icons-original/_outline/user-exclamation.svg rename to icons-original/outline/user-exclamation.svg diff --git a/icons-original/_outline/user-minus.svg b/icons-original/outline/user-minus.svg similarity index 100% rename from icons-original/_outline/user-minus.svg rename to icons-original/outline/user-minus.svg diff --git a/icons-original/_outline/user-off.svg b/icons-original/outline/user-off.svg similarity index 100% rename from icons-original/_outline/user-off.svg rename to icons-original/outline/user-off.svg diff --git a/icons-original/_outline/user-plus.svg b/icons-original/outline/user-plus.svg similarity index 100% rename from icons-original/_outline/user-plus.svg rename to icons-original/outline/user-plus.svg diff --git a/icons-original/_outline/user-x.svg b/icons-original/outline/user-x.svg similarity index 100% rename from icons-original/_outline/user-x.svg rename to icons-original/outline/user-x.svg diff --git a/icons-original/_outline/user.svg b/icons-original/outline/user.svg similarity index 100% rename from icons-original/_outline/user.svg rename to icons-original/outline/user.svg diff --git a/icons-original/_outline/users.svg b/icons-original/outline/users.svg similarity index 100% rename from icons-original/_outline/users.svg rename to icons-original/outline/users.svg diff --git a/icons-original/_outline/view-all.svg b/icons-original/outline/view-all.svg similarity index 100% rename from icons-original/_outline/view-all.svg rename to icons-original/outline/view-all.svg diff --git a/icons-original/_outline/viewfinder.svg b/icons-original/outline/viewfinder.svg similarity index 100% rename from icons-original/_outline/viewfinder.svg rename to icons-original/outline/viewfinder.svg diff --git a/icons-original/_outline/wifi-1.svg b/icons-original/outline/wifi-1.svg similarity index 100% rename from icons-original/_outline/wifi-1.svg rename to icons-original/outline/wifi-1.svg diff --git a/icons-original/_outline/wifi-2.svg b/icons-original/outline/wifi-2.svg similarity index 100% rename from icons-original/_outline/wifi-2.svg rename to icons-original/outline/wifi-2.svg diff --git a/icons-original/_outline/wifi-off.svg b/icons-original/outline/wifi-off.svg similarity index 100% rename from icons-original/_outline/wifi-off.svg rename to icons-original/outline/wifi-off.svg diff --git a/icons-original/_outline/wifi.svg b/icons-original/outline/wifi.svg similarity index 100% rename from icons-original/_outline/wifi.svg rename to icons-original/outline/wifi.svg diff --git a/icons-original/_outline/world.svg b/icons-original/outline/world.svg similarity index 100% rename from icons-original/_outline/world.svg rename to icons-original/outline/world.svg diff --git a/icons-original/_outline/writing.svg b/icons-original/outline/writing.svg similarity index 100% rename from icons-original/_outline/writing.svg rename to icons-original/outline/writing.svg diff --git a/icons-original/_outline/x.svg b/icons-original/outline/x.svg similarity index 100% rename from icons-original/_outline/x.svg rename to icons-original/outline/x.svg diff --git a/icons-original/_outline/zoom-in.svg b/icons-original/outline/zoom-in.svg similarity index 100% rename from icons-original/_outline/zoom-in.svg rename to icons-original/outline/zoom-in.svg diff --git a/icons-original/_outline/zoom-out.svg b/icons-original/outline/zoom-out.svg similarity index 100% rename from icons-original/_outline/zoom-out.svg rename to icons-original/outline/zoom-out.svg diff --git a/icons-original/_outline/zoom-question.svg b/icons-original/outline/zoom-question.svg similarity index 100% rename from icons-original/_outline/zoom-question.svg rename to icons-original/outline/zoom-question.svg diff --git a/package.json b/package.json index ce481c3e..266a39d1 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,8 @@ "gen:childsvgs": "node ./scripts/writeSvgChildren.mjs", "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", - "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons", - "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons-test && node ./scripts/removeDir.mjs --targetDir ./icons-optimized", + "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons remove:dir", + "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons-test && node ./scripts/removeDir.mjs --targetDir ./icons-optimized node && ./scripts/removeDir.mjs --targetDir ./icons-metadata", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", diff --git a/scripts/buildIcons.mjs b/scripts/buildIcons.mjs index 7b365521..ff33b8f0 100644 --- a/scripts/buildIcons.mjs +++ b/scripts/buildIcons.mjs @@ -16,6 +16,7 @@ const currentDir = getCurrentDirPath(import.meta.url) const ICONS_DIR = path.resolve(currentDir, '../icons-optimized') const ICONS_META_DIR = path.resolve(currentDir, '../icons-metadata') const OUTPUT_DIR = path.resolve(process.cwd(), cliArguments.output || './src') + const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) const OUTPUT_FOLDER_NAME = UNICON_CONFIG.icon_output_dir ?? 'icons-neo' diff --git a/scripts/generateIconFiles.mjs b/scripts/generateIconFiles.mjs index a2acb9cc..09748e76 100644 --- a/scripts/generateIconFiles.mjs +++ b/scripts/generateIconFiles.mjs @@ -21,14 +21,6 @@ export default async ({ outputFolderName, svgObjs, outputDirectory, template, ic } const writeIconFiles = svgs.map(async (svgName) => { - const outputDir = path.resolve(iconsDistDirectory, svgMetadata[svgName].icon_type) - - // if (!fs.existsSync(outputDir)) { - // fs.mkdirSync(outputDir, { recursive: true }) - // } - - // console.log('out dir', outputDir) - const location = path.join(iconsDistDirectory, `${svgName}${iconFileExtension}`) const componentName = toPascalCase(svgName) diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 61865f36..541898e2 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -1,7 +1,12 @@ +import fs from 'fs' import * as prettier from 'prettier' import { optimize } from 'svgo' import { parseSync, stringify } from 'svgson' +const UNICON_CONFIG = JSON.parse(fs.readFileSync('./unicons.config.json', 'utf8')) + +const excludeSvgProcessList = UNICON_CONFIG?.exclude_svg_process ?? [] + /** * Optimize SVG with `svgo`. * @param {string} svg - An SVG string. @@ -30,7 +35,7 @@ async function optimizeSvg(svg, path, iconType) { { name: 'removeAttrs', params: { - attrs: removeAttrsMapping[iconType], + attrs: removeAttrsMapping[iconType] ?? '(stroke-width)', }, }, { @@ -87,7 +92,7 @@ async function optimizeSvg(svg, path, iconType) { plugins.push(customPlugInUpdateStrokeValue) } - if (iconType === 'no-change' || iconType === 'accent') { + if (excludeSvgProcessList.includes(iconType)) { return svg } diff --git a/scripts/writeSvgChildren.mjs b/scripts/writeSvgChildren.mjs index b95b22e5..86ee10d9 100644 --- a/scripts/writeSvgChildren.mjs +++ b/scripts/writeSvgChildren.mjs @@ -33,8 +33,6 @@ const writeSvgChildren = svgs.map(async (svgName) => { const output = stringify(childrenSvgGroup) - console.log('child--->', output) - await fs.promises.writeFile(location, output, 'utf-8') try { diff --git a/src/icons-test/Import.tsx b/src/icons-test/Import.tsx new file mode 100644 index 00000000..dee65c9f --- /dev/null +++ b/src/icons-test/Import.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Import = createASIcon( + "Import", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Import; diff --git a/src/icons-test/adjustments-horizontal.tsx b/src/icons-test/adjustments-horizontal.tsx new file mode 100644 index 00000000..f426a748 --- /dev/null +++ b/src/icons-test/adjustments-horizontal.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AdjustmentsHorizontal = createASIcon( + "AdjustmentsHorizontal", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , + "outline", +); + +export default AdjustmentsHorizontal; diff --git a/src/icons-test/adjustments.tsx b/src/icons-test/adjustments.tsx new file mode 100644 index 00000000..f82c2c46 --- /dev/null +++ b/src/icons-test/adjustments.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Adjustments = createASIcon( + "Adjustments", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , + "outline", +); + +export default Adjustments; diff --git a/src/icons-test/aftershoot-credit.tsx b/src/icons-test/aftershoot-credit.tsx new file mode 100644 index 00000000..b466409e --- /dev/null +++ b/src/icons-test/aftershoot-credit.tsx @@ -0,0 +1,60 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AftershootCredit = createASIcon( + "AftershootCredit", + { + width: "18", + height: "19", + viewBox: "0 0 18 19", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + + + + + , + "logo", +); + +export default AftershootCredit; diff --git a/src/icons-test/aftershoot-logo.tsx b/src/icons-test/aftershoot-logo.tsx new file mode 100644 index 00000000..668afe71 --- /dev/null +++ b/src/icons-test/aftershoot-logo.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AftershootLogo = createASIcon( + "AftershootLogo", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default AftershootLogo; diff --git a/src/icons-test/alarm.tsx b/src/icons-test/alarm.tsx new file mode 100644 index 00000000..87934abe --- /dev/null +++ b/src/icons-test/alarm.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Alarm = createASIcon( + "Alarm", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Alarm; diff --git a/src/icons-test/alert-circle-fill.tsx b/src/icons-test/alert-circle-accent.tsx similarity index 91% rename from src/icons-test/alert-circle-fill.tsx rename to src/icons-test/alert-circle-accent.tsx index fb0ec39d..2ba487db 100644 --- a/src/icons-test/alert-circle-fill.tsx +++ b/src/icons-test/alert-circle-accent.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const AlertCircleFill = createASIcon( - "AlertCircleFill", +const AlertCircleAccent = createASIcon( + "AlertCircleAccent", { width: "21", height: "20", @@ -41,4 +41,4 @@ const AlertCircleFill = createASIcon( "accent", ); -export default AlertCircleFill; +export default AlertCircleAccent; diff --git a/src/icons-test/alert-circle.tsx b/src/icons-test/alert-circle.tsx new file mode 100644 index 00000000..1cee0c28 --- /dev/null +++ b/src/icons-test/alert-circle.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertCircle = createASIcon( + "AlertCircle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default AlertCircle; diff --git a/src/icons-test/alert-octagon.tsx b/src/icons-test/alert-octagon.tsx new file mode 100644 index 00000000..fdfc7f71 --- /dev/null +++ b/src/icons-test/alert-octagon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertOctagon = createASIcon( + "AlertOctagon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default AlertOctagon; diff --git a/src/icons-test/alert-triangle-fill.tsx b/src/icons-test/alert-triangle-accent.tsx similarity index 85% rename from src/icons-test/alert-triangle-fill.tsx rename to src/icons-test/alert-triangle-accent.tsx index 5f202f32..fc90daaf 100644 --- a/src/icons-test/alert-triangle-fill.tsx +++ b/src/icons-test/alert-triangle-accent.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const AlertTriangleFill = createASIcon( - "AlertTriangleFill", +const AlertTriangleAccent = createASIcon( + "AlertTriangleAccent", { width: "54", height: "46", @@ -28,4 +28,4 @@ const AlertTriangleFill = createASIcon( "accent", ); -export default AlertTriangleFill; +export default AlertTriangleAccent; diff --git a/src/icons-test/alert-triangle.tsx b/src/icons-test/alert-triangle.tsx new file mode 100644 index 00000000..0db6afbb --- /dev/null +++ b/src/icons-test/alert-triangle.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const AlertTriangle = createASIcon( + "AlertTriangle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default AlertTriangle; diff --git a/src/icons-test/apple.tsx b/src/icons-test/apple.tsx new file mode 100644 index 00000000..203c7ce9 --- /dev/null +++ b/src/icons-test/apple.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Apple = createASIcon( + "Apple", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 17 20", + }, + + + , + "fill", +); + +export default Apple; diff --git a/src/icons-test/arrow-curve-fill.tsx b/src/icons-test/arrow-curve-fill.tsx new file mode 100644 index 00000000..dfbad672 --- /dev/null +++ b/src/icons-test/arrow-curve-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowCurveFill = createASIcon( + "ArrowCurveFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 16 11", + }, + + + , + "fill", +); + +export default ArrowCurveFill; diff --git a/src/icons-test/arrow-down.tsx b/src/icons-test/arrow-down.tsx new file mode 100644 index 00000000..c52ad3c2 --- /dev/null +++ b/src/icons-test/arrow-down.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowDown = createASIcon( + "ArrowDown", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowDown; diff --git a/src/icons-test/arrow-left.tsx b/src/icons-test/arrow-left.tsx new file mode 100644 index 00000000..f3112ded --- /dev/null +++ b/src/icons-test/arrow-left.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowLeft = createASIcon( + "ArrowLeft", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowLeft; diff --git a/src/icons-test/arrow-narrow-left.tsx b/src/icons-test/arrow-narrow-left.tsx new file mode 100644 index 00000000..8ce84c5e --- /dev/null +++ b/src/icons-test/arrow-narrow-left.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowNarrowLeft = createASIcon( + "ArrowNarrowLeft", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowNarrowLeft; diff --git a/src/icons-test/arrow-narrow-right.tsx b/src/icons-test/arrow-narrow-right.tsx new file mode 100644 index 00000000..77a026e3 --- /dev/null +++ b/src/icons-test/arrow-narrow-right.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowNarrowRight = createASIcon( + "ArrowNarrowRight", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowNarrowRight; diff --git a/src/icons-test/arrow-right.tsx b/src/icons-test/arrow-right.tsx new file mode 100644 index 00000000..828a2420 --- /dev/null +++ b/src/icons-test/arrow-right.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowRight = createASIcon( + "ArrowRight", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowRight; diff --git a/src/icons-test/arrow-sort-2.tsx b/src/icons-test/arrow-sort-2.tsx new file mode 100644 index 00000000..346a9d74 --- /dev/null +++ b/src/icons-test/arrow-sort-2.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowSort2 = createASIcon( + "ArrowSort2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default ArrowSort2; diff --git a/src/icons-test/arrow-up.tsx b/src/icons-test/arrow-up.tsx new file mode 100644 index 00000000..f273b3ac --- /dev/null +++ b/src/icons-test/arrow-up.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowUp = createASIcon( + "ArrowUp", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ArrowUp; diff --git a/src/icons-test/arrows-diagonal.tsx b/src/icons-test/arrows-diagonal.tsx new file mode 100644 index 00000000..87d9c4c3 --- /dev/null +++ b/src/icons-test/arrows-diagonal.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsDiagonal = createASIcon( + "ArrowsDiagonal", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default ArrowsDiagonal; diff --git a/src/icons-test/arrows-sort.tsx b/src/icons-test/arrows-sort.tsx new file mode 100644 index 00000000..3c8f3230 --- /dev/null +++ b/src/icons-test/arrows-sort.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsSort = createASIcon( + "ArrowsSort", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default ArrowsSort; diff --git a/src/icons-test/atom-di.tsx b/src/icons-test/atom-accent.tsx similarity index 93% rename from src/icons-test/atom-di.tsx rename to src/icons-test/atom-accent.tsx index 1f3a183d..37664276 100644 --- a/src/icons-test/atom-di.tsx +++ b/src/icons-test/atom-accent.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const AtomDi = createASIcon( - "AtomDi", +const AtomAccent = createASIcon( + "AtomAccent", { width: "24", height: "24", @@ -29,11 +29,11 @@ const AtomDi = createASIcon( /> , "accent", ); -export default AtomDi; +export default AtomAccent; diff --git a/src/icons-test/atom.tsx b/src/icons-test/atom.tsx new file mode 100644 index 00000000..47689426 --- /dev/null +++ b/src/icons-test/atom.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Atom = createASIcon( + "Atom", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Atom; diff --git a/src/icons-test/ban.tsx b/src/icons-test/ban.tsx new file mode 100644 index 00000000..ad88cb45 --- /dev/null +++ b/src/icons-test/ban.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Ban = createASIcon( + "Ban", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Ban; diff --git a/src/icons-test/bell-minus.tsx b/src/icons-test/bell-minus.tsx new file mode 100644 index 00000000..da8b2a41 --- /dev/null +++ b/src/icons-test/bell-minus.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellMinus = createASIcon( + "BellMinus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default BellMinus; diff --git a/src/icons-test/bell-off.tsx b/src/icons-test/bell-off.tsx new file mode 100644 index 00000000..48d79f14 --- /dev/null +++ b/src/icons-test/bell-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellOff = createASIcon( + "BellOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default BellOff; diff --git a/src/icons-test/bell-plus.tsx b/src/icons-test/bell-plus.tsx new file mode 100644 index 00000000..fbcfeeb5 --- /dev/null +++ b/src/icons-test/bell-plus.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellPlus = createASIcon( + "BellPlus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default BellPlus; diff --git a/src/icons-test/bell-ringing-2.tsx b/src/icons-test/bell-ringing-2.tsx new file mode 100644 index 00000000..b64a52c6 --- /dev/null +++ b/src/icons-test/bell-ringing-2.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellRinging2 = createASIcon( + "BellRinging2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default BellRinging2; diff --git a/src/icons-test/bell-ringing.tsx b/src/icons-test/bell-ringing.tsx new file mode 100644 index 00000000..b857a610 --- /dev/null +++ b/src/icons-test/bell-ringing.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellRinging = createASIcon( + "BellRinging", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default BellRinging; diff --git a/src/icons-test/bell-x.tsx b/src/icons-test/bell-x.tsx new file mode 100644 index 00000000..deac1284 --- /dev/null +++ b/src/icons-test/bell-x.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BellX = createASIcon( + "BellX", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default BellX; diff --git a/src/icons-test/bell.tsx b/src/icons-test/bell.tsx new file mode 100644 index 00000000..9eb6956c --- /dev/null +++ b/src/icons-test/bell.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Bell = createASIcon( + "Bell", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Bell; diff --git a/src/icons-test/brand-facebook.tsx b/src/icons-test/brand-facebook.tsx new file mode 100644 index 00000000..1492cb57 --- /dev/null +++ b/src/icons-test/brand-facebook.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandFacebook = createASIcon( + "BrandFacebook", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default BrandFacebook; diff --git a/src/icons-test/brand-github.tsx b/src/icons-test/brand-github.tsx new file mode 100644 index 00000000..b4e43fa5 --- /dev/null +++ b/src/icons-test/brand-github.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandGithub = createASIcon( + "BrandGithub", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default BrandGithub; diff --git a/src/icons-test/brand-instagram.tsx b/src/icons-test/brand-instagram.tsx new file mode 100644 index 00000000..4622c3f9 --- /dev/null +++ b/src/icons-test/brand-instagram.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandInstagram = createASIcon( + "BrandInstagram", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default BrandInstagram; diff --git a/src/icons-test/brand-twitter.tsx b/src/icons-test/brand-twitter.tsx new file mode 100644 index 00000000..525cd737 --- /dev/null +++ b/src/icons-test/brand-twitter.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandTwitter = createASIcon( + "BrandTwitter", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , + "outline", +); + +export default BrandTwitter; diff --git a/src/icons-test/brand-whatsapp.tsx b/src/icons-test/brand-whatsapp.tsx new file mode 100644 index 00000000..f458aea8 --- /dev/null +++ b/src/icons-test/brand-whatsapp.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandWhatsapp = createASIcon( + "BrandWhatsapp", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default BrandWhatsapp; diff --git a/src/icons-test/brand-youtube.tsx b/src/icons-test/brand-youtube.tsx new file mode 100644 index 00000000..569c4f22 --- /dev/null +++ b/src/icons-test/brand-youtube.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BrandYoutube = createASIcon( + "BrandYoutube", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default BrandYoutube; diff --git a/src/icons-test/bulb-off.tsx b/src/icons-test/bulb-off.tsx new file mode 100644 index 00000000..c27f3fde --- /dev/null +++ b/src/icons-test/bulb-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const BulbOff = createASIcon( + "BulbOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default BulbOff; diff --git a/src/icons-test/bulb.tsx b/src/icons-test/bulb.tsx new file mode 100644 index 00000000..4f6ec137 --- /dev/null +++ b/src/icons-test/bulb.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Bulb = createASIcon( + "Bulb", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Bulb; diff --git a/src/icons-test/check_box_empty.tsx b/src/icons-test/check-box-empty.tsx similarity index 63% rename from src/icons-test/check_box_empty.tsx rename to src/icons-test/check-box-empty.tsx index 5f943d48..19eb4c54 100644 --- a/src/icons-test/check_box_empty.tsx +++ b/src/icons-test/check-box-empty.tsx @@ -4,33 +4,30 @@ import React from "react"; const CheckBoxEmpty = createASIcon( "CheckBoxEmpty", { - width: "16", - height: "16", - viewBox: "0 0 16 16", - fill: "none", xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 16 16", }, , - "accent", + "mix", ); export default CheckBoxEmpty; diff --git a/src/icons-test/check.tsx b/src/icons-test/check.tsx new file mode 100644 index 00000000..4d7227e9 --- /dev/null +++ b/src/icons-test/check.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Check = createASIcon( + "Check", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Check; diff --git a/src/icons-test/checkbox-blue-accent.tsx b/src/icons-test/checkbox-blue-accent.tsx new file mode 100644 index 00000000..e9fa5da3 --- /dev/null +++ b/src/icons-test/checkbox-blue-accent.tsx @@ -0,0 +1,52 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckboxBlueAccent = createASIcon( + "CheckboxBlueAccent", + { + width: "16", + height: "16", + viewBox: "0 0 16 16", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + , + "accent", +); + +export default CheckboxBlueAccent; diff --git a/src/icons-test/checkbox-green-accent.tsx b/src/icons-test/checkbox-green-accent.tsx new file mode 100644 index 00000000..15123614 --- /dev/null +++ b/src/icons-test/checkbox-green-accent.tsx @@ -0,0 +1,44 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckboxGreenAccent = createASIcon( + "CheckboxGreenAccent", + { + width: "16", + height: "16", + viewBox: "0 0 16 16", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + , + "accent", +); + +export default CheckboxGreenAccent; diff --git a/src/icons-test/checkbox-partial-blue-accent.tsx b/src/icons-test/checkbox-partial-blue-accent.tsx new file mode 100644 index 00000000..1dd7a309 --- /dev/null +++ b/src/icons-test/checkbox-partial-blue-accent.tsx @@ -0,0 +1,53 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CheckboxPartialBlueAccent = createASIcon( + "CheckboxPartialBlueAccent", + { + width: "16", + height: "16", + viewBox: "0 0 16 16", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + , + "accent", +); + +export default CheckboxPartialBlueAccent; diff --git a/src/icons-test/chevron-down.tsx b/src/icons-test/chevron-down.tsx new file mode 100644 index 00000000..75729aab --- /dev/null +++ b/src/icons-test/chevron-down.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronDown = createASIcon( + "ChevronDown", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ChevronDown; diff --git a/src/icons-test/chevron-left.tsx b/src/icons-test/chevron-left.tsx new file mode 100644 index 00000000..6d998f41 --- /dev/null +++ b/src/icons-test/chevron-left.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronLeft = createASIcon( + "ChevronLeft", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ChevronLeft; diff --git a/src/icons-test/chevron-right.tsx b/src/icons-test/chevron-right.tsx new file mode 100644 index 00000000..19929d88 --- /dev/null +++ b/src/icons-test/chevron-right.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronRight = createASIcon( + "ChevronRight", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ChevronRight; diff --git a/src/icons-test/chevron-up.tsx b/src/icons-test/chevron-up.tsx new file mode 100644 index 00000000..dd651d29 --- /dev/null +++ b/src/icons-test/chevron-up.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronUp = createASIcon( + "ChevronUp", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ChevronUp; diff --git a/src/icons-test/chevrons-left.tsx b/src/icons-test/chevrons-left.tsx new file mode 100644 index 00000000..3aac2844 --- /dev/null +++ b/src/icons-test/chevrons-left.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronsLeft = createASIcon( + "ChevronsLeft", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default ChevronsLeft; diff --git a/src/icons-test/chevrons-right.tsx b/src/icons-test/chevrons-right.tsx new file mode 100644 index 00000000..c2fe9fe3 --- /dev/null +++ b/src/icons-test/chevrons-right.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ChevronsRight = createASIcon( + "ChevronsRight", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default ChevronsRight; diff --git a/src/icons-test/circle-check-2.tsx b/src/icons-test/circle-check-2.tsx new file mode 100644 index 00000000..14f168ed --- /dev/null +++ b/src/icons-test/circle-check-2.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCheck2 = createASIcon( + "CircleCheck2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default CircleCheck2; diff --git a/src/icons-test/circle-check.tsx b/src/icons-test/circle-check.tsx new file mode 100644 index 00000000..27c0a8ec --- /dev/null +++ b/src/icons-test/circle-check.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCheck = createASIcon( + "CircleCheck", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default CircleCheck; diff --git a/src/icons-test/circle-cross-accent.tsx b/src/icons-test/circle-cross-accent.tsx new file mode 100644 index 00000000..65f254e6 --- /dev/null +++ b/src/icons-test/circle-cross-accent.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCrossAccent = createASIcon( + "CircleCrossAccent", + { + width: "39", + height: "39", + viewBox: "0 0 39 39", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + , + "accent", +); + +export default CircleCrossAccent; diff --git a/src/icons-test/circle-fill.tsx b/src/icons-test/circle-fill.tsx new file mode 100644 index 00000000..99c34350 --- /dev/null +++ b/src/icons-test/circle-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleFill = createASIcon( + "CircleFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default CircleFill; diff --git a/src/icons-test/circle.tsx b/src/icons-test/circle.tsx new file mode 100644 index 00000000..12f4915f --- /dev/null +++ b/src/icons-test/circle.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Circle = createASIcon( + "Circle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Circle; diff --git a/src/icons-test/clock.tsx b/src/icons-test/clock.tsx new file mode 100644 index 00000000..8f2d9048 --- /dev/null +++ b/src/icons-test/clock.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Clock = createASIcon( + "Clock", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Clock; diff --git a/src/icons-test/cloud-upload-accent.tsx b/src/icons-test/cloud-upload-accent.tsx new file mode 100644 index 00000000..a565f35e --- /dev/null +++ b/src/icons-test/cloud-upload-accent.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CloudUploadAccent = createASIcon( + "CloudUploadAccent", + { + width: "48", + height: "48", + viewBox: "0 0 48 48", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default CloudUploadAccent; diff --git a/src/icons-test/cloud-upload.tsx b/src/icons-test/cloud-upload.tsx new file mode 100644 index 00000000..effdac22 --- /dev/null +++ b/src/icons-test/cloud-upload.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CloudUpload = createASIcon( + "CloudUpload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default CloudUpload; diff --git a/src/icons-test/collection.tsx b/src/icons-test/collection.tsx new file mode 100644 index 00000000..ebd6d755 --- /dev/null +++ b/src/icons-test/collection.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Collection = createASIcon( + "Collection", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 25 24", + }, + + + + + + + + + + + , + "mix", +); + +export default Collection; diff --git a/src/icons-test/color-swatch.tsx b/src/icons-test/color-swatch.tsx new file mode 100644 index 00000000..ff9a49bf --- /dev/null +++ b/src/icons-test/color-swatch.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ColorSwatch = createASIcon( + "ColorSwatch", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default ColorSwatch; diff --git a/src/icons-test/confetti.tsx b/src/icons-test/confetti.tsx new file mode 100644 index 00000000..b01db2be --- /dev/null +++ b/src/icons-test/confetti.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Confetti = createASIcon( + "Confetti", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + + , + "outline", +); + +export default Confetti; diff --git a/src/icons-test/copy.tsx b/src/icons-test/copy.tsx new file mode 100644 index 00000000..7647bda3 --- /dev/null +++ b/src/icons-test/copy.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Copy = createASIcon( + "Copy", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default Copy; diff --git a/src/icons-test/crown-2-fill.tsx b/src/icons-test/crown-2-fill.tsx new file mode 100644 index 00000000..ccee50d6 --- /dev/null +++ b/src/icons-test/crown-2-fill.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown2Fill = createASIcon( + "Crown2Fill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default Crown2Fill; diff --git a/src/icons-test/crown.tsx b/src/icons-test/crown.tsx new file mode 100644 index 00000000..6d3c1059 --- /dev/null +++ b/src/icons-test/crown.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Crown = createASIcon( + "Crown", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Crown; diff --git a/src/icons-test/currency-dollar.tsx b/src/icons-test/currency-dollar.tsx new file mode 100644 index 00000000..5c35fcba --- /dev/null +++ b/src/icons-test/currency-dollar.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CurrencyDollar = createASIcon( + "CurrencyDollar", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default CurrencyDollar; diff --git a/src/icons-test/current-location.tsx b/src/icons-test/current-location.tsx new file mode 100644 index 00000000..c8d4dee5 --- /dev/null +++ b/src/icons-test/current-location.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CurrentLocation = createASIcon( + "CurrentLocation", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , + "outline", +); + +export default CurrentLocation; diff --git a/src/icons-test/device-desktop-analytics.tsx b/src/icons-test/device-desktop-analytics.tsx new file mode 100644 index 00000000..581e8870 --- /dev/null +++ b/src/icons-test/device-desktop-analytics.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktopAnalytics = createASIcon( + "DeviceDesktopAnalytics", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , + "outline", +); + +export default DeviceDesktopAnalytics; diff --git a/src/icons-test/device-desktop-off.tsx b/src/icons-test/device-desktop-off.tsx new file mode 100644 index 00000000..13d6cf14 --- /dev/null +++ b/src/icons-test/device-desktop-off.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktopOff = createASIcon( + "DeviceDesktopOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default DeviceDesktopOff; diff --git a/src/icons-test/device-desktop.tsx b/src/icons-test/device-desktop.tsx new file mode 100644 index 00000000..8bfa6673 --- /dev/null +++ b/src/icons-test/device-desktop.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceDesktop = createASIcon( + "DeviceDesktop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default DeviceDesktop; diff --git a/src/icons-test/device-laptop.tsx b/src/icons-test/device-laptop.tsx new file mode 100644 index 00000000..d70a9295 --- /dev/null +++ b/src/icons-test/device-laptop.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceLaptop = createASIcon( + "DeviceLaptop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default DeviceLaptop; diff --git a/src/icons-test/device-tv.tsx b/src/icons-test/device-tv.tsx new file mode 100644 index 00000000..af908ecf --- /dev/null +++ b/src/icons-test/device-tv.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DeviceTv = createASIcon( + "DeviceTv", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default DeviceTv; diff --git a/src/icons-test/diamond.tsx b/src/icons-test/diamond.tsx new file mode 100644 index 00000000..0ca8d85c --- /dev/null +++ b/src/icons-test/diamond.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Diamond = createASIcon( + "Diamond", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Diamond; diff --git a/src/icons-test/discount-2.tsx b/src/icons-test/discount-2.tsx new file mode 100644 index 00000000..119d10d9 --- /dev/null +++ b/src/icons-test/discount-2.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Discount2 = createASIcon( + "Discount2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Discount2; diff --git a/src/icons-test/discount.tsx b/src/icons-test/discount.tsx new file mode 100644 index 00000000..d8a1659f --- /dev/null +++ b/src/icons-test/discount.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Discount = createASIcon( + "Discount", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Discount; diff --git a/src/icons-test/disk.tsx b/src/icons-test/disk.tsx new file mode 100644 index 00000000..57c890b1 --- /dev/null +++ b/src/icons-test/disk.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Disk = createASIcon( + "Disk", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 32 32", + }, + + + + + + , + "outline", +); + +export default Disk; diff --git a/src/icons-test/dots-vertical.tsx b/src/icons-test/dots-vertical.tsx new file mode 100644 index 00000000..8fb5198a --- /dev/null +++ b/src/icons-test/dots-vertical.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DotsVertical = createASIcon( + "DotsVertical", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default DotsVertical; diff --git a/src/icons-test/download-accent.tsx b/src/icons-test/download-accent.tsx new file mode 100644 index 00000000..1df02064 --- /dev/null +++ b/src/icons-test/download-accent.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const DownloadAccent = createASIcon( + "DownloadAccent", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "accent", +); + +export default DownloadAccent; diff --git a/src/icons-test/download.tsx b/src/icons-test/download.tsx new file mode 100644 index 00000000..bb3a8f70 --- /dev/null +++ b/src/icons-test/download.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Download = createASIcon( + "Download", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Download; diff --git a/src/icons-test/edit-icon.tsx b/src/icons-test/edit-icon.tsx new file mode 100644 index 00000000..40bca104 --- /dev/null +++ b/src/icons-test/edit-icon.tsx @@ -0,0 +1,100 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const EditIcon = createASIcon( + "EditIcon", + { + width: "46", + height: "12", + viewBox: "0 0 46 12", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + "logo", +); + +export default EditIcon; diff --git a/src/icons-test/edit.tsx b/src/icons-test/edit.tsx new file mode 100644 index 00000000..cd8d5a44 --- /dev/null +++ b/src/icons-test/edit.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Edit = createASIcon( + "Edit", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Edit; diff --git a/src/icons-test/external-link.tsx b/src/icons-test/external-link.tsx new file mode 100644 index 00000000..645dfa59 --- /dev/null +++ b/src/icons-test/external-link.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ExternalLink = createASIcon( + "ExternalLink", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default ExternalLink; diff --git a/src/icons-test/eye-check.tsx b/src/icons-test/eye-check.tsx new file mode 100644 index 00000000..46964359 --- /dev/null +++ b/src/icons-test/eye-check.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const EyeCheck = createASIcon( + "EyeCheck", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default EyeCheck; diff --git a/src/icons-test/eye-off.tsx b/src/icons-test/eye-off.tsx new file mode 100644 index 00000000..027918b4 --- /dev/null +++ b/src/icons-test/eye-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const EyeOff = createASIcon( + "EyeOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default EyeOff; diff --git a/src/icons-test/eye.tsx b/src/icons-test/eye.tsx new file mode 100644 index 00000000..68469834 --- /dev/null +++ b/src/icons-test/eye.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Eye = createASIcon( + "Eye", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Eye; diff --git a/src/icons-test/facebook.tsx b/src/icons-test/facebook.tsx new file mode 100644 index 00000000..e372218a --- /dev/null +++ b/src/icons-test/facebook.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Facebook = createASIcon( + "Facebook", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default Facebook; diff --git a/src/icons-test/file-download.tsx b/src/icons-test/file-download.tsx new file mode 100644 index 00000000..71d5dfad --- /dev/null +++ b/src/icons-test/file-download.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileDownload = createASIcon( + "FileDownload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default FileDownload; diff --git a/src/icons-test/file-export.tsx b/src/icons-test/file-export.tsx new file mode 100644 index 00000000..a9fcb0d1 --- /dev/null +++ b/src/icons-test/file-export.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileExport = createASIcon( + "FileExport", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default FileExport; diff --git a/src/icons-test/file-report.tsx b/src/icons-test/file-report.tsx new file mode 100644 index 00000000..6230a0bd --- /dev/null +++ b/src/icons-test/file-report.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileReport = createASIcon( + "FileReport", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default FileReport; diff --git a/src/icons-test/file-search.tsx b/src/icons-test/file-search.tsx new file mode 100644 index 00000000..e5b6a247 --- /dev/null +++ b/src/icons-test/file-search.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FileSearch = createASIcon( + "FileSearch", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default FileSearch; diff --git a/src/icons-test/filter-off.tsx b/src/icons-test/filter-off.tsx new file mode 100644 index 00000000..1921e9a4 --- /dev/null +++ b/src/icons-test/filter-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FilterOff = createASIcon( + "FilterOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default FilterOff; diff --git a/src/icons-test/filter.tsx b/src/icons-test/filter.tsx new file mode 100644 index 00000000..f86dd000 --- /dev/null +++ b/src/icons-test/filter.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Filter = createASIcon( + "Filter", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Filter; diff --git a/src/icons-test/flag-fill.tsx b/src/icons-test/flag-fill.tsx new file mode 100644 index 00000000..d454a466 --- /dev/null +++ b/src/icons-test/flag-fill.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FlagFill = createASIcon( + "FlagFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 20 20", + }, + + + + + + + + + + + , + "mix", +); + +export default FlagFill; diff --git a/src/icons-test/flag-off.tsx b/src/icons-test/flag-off.tsx new file mode 100644 index 00000000..c8b1e65b --- /dev/null +++ b/src/icons-test/flag-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FlagOff = createASIcon( + "FlagOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default FlagOff; diff --git a/src/icons-test/flag.tsx b/src/icons-test/flag.tsx new file mode 100644 index 00000000..a2583674 --- /dev/null +++ b/src/icons-test/flag.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Flag = createASIcon( + "Flag", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , + "outline", +); + +export default Flag; diff --git a/src/icons-test/folder-download.tsx b/src/icons-test/folder-download.tsx new file mode 100644 index 00000000..e3758e3e --- /dev/null +++ b/src/icons-test/folder-download.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderDownload = createASIcon( + "FolderDownload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default FolderDownload; diff --git a/src/icons-test/folder-eye.tsx b/src/icons-test/folder-eye.tsx new file mode 100644 index 00000000..05ffb304 --- /dev/null +++ b/src/icons-test/folder-eye.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderEye = createASIcon( + "FolderEye", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default FolderEye; diff --git a/src/icons-test/folder-fill.tsx b/src/icons-test/folder-fill.tsx new file mode 100644 index 00000000..6c670707 --- /dev/null +++ b/src/icons-test/folder-fill.tsx @@ -0,0 +1,45 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderFill = createASIcon( + "FolderFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + , + "no-change", +); + +export default FolderFill; diff --git a/src/icons-test/folder-minus.tsx b/src/icons-test/folder-minus.tsx new file mode 100644 index 00000000..5012fee4 --- /dev/null +++ b/src/icons-test/folder-minus.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderMinus = createASIcon( + "FolderMinus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default FolderMinus; diff --git a/src/icons-test/folder-off.tsx b/src/icons-test/folder-off.tsx new file mode 100644 index 00000000..6071298a --- /dev/null +++ b/src/icons-test/folder-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderOff = createASIcon( + "FolderOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default FolderOff; diff --git a/src/icons-test/folder-plus.tsx b/src/icons-test/folder-plus.tsx new file mode 100644 index 00000000..c2f428c4 --- /dev/null +++ b/src/icons-test/folder-plus.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderPlus = createASIcon( + "FolderPlus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default FolderPlus; diff --git a/src/icons-test/folder-upload.tsx b/src/icons-test/folder-upload.tsx new file mode 100644 index 00000000..77cbed76 --- /dev/null +++ b/src/icons-test/folder-upload.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderUpload = createASIcon( + "FolderUpload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default FolderUpload; diff --git a/src/icons-test/folder-x.tsx b/src/icons-test/folder-x.tsx new file mode 100644 index 00000000..698e9722 --- /dev/null +++ b/src/icons-test/folder-x.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const FolderX = createASIcon( + "FolderX", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default FolderX; diff --git a/src/icons-test/folder.tsx b/src/icons-test/folder.tsx new file mode 100644 index 00000000..df780d40 --- /dev/null +++ b/src/icons-test/folder.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Folder = createASIcon( + "Folder", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + , + "outline", +); + +export default Folder; diff --git a/src/icons-test/folders.tsx b/src/icons-test/folders.tsx new file mode 100644 index 00000000..d537ff90 --- /dev/null +++ b/src/icons-test/folders.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Folders = createASIcon( + "Folders", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default Folders; diff --git a/src/icons-test/google-color.tsx b/src/icons-test/google-color.tsx new file mode 100644 index 00000000..3e341d89 --- /dev/null +++ b/src/icons-test/google-color.tsx @@ -0,0 +1,41 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GoogleColor = createASIcon( + "GoogleColor", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + + + + + + + + + , + "logo", +); + +export default GoogleColor; diff --git a/src/icons-test/grab-hand.tsx b/src/icons-test/grab-hand.tsx new file mode 100644 index 00000000..2c75beba --- /dev/null +++ b/src/icons-test/grab-hand.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GrabHand = createASIcon( + "GrabHand", + { + width: "24", + height: "24", + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + , + "logo", +); + +export default GrabHand; diff --git a/src/icons-test/grid-dots.tsx b/src/icons-test/grid-dots.tsx new file mode 100644 index 00000000..83b75522 --- /dev/null +++ b/src/icons-test/grid-dots.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridDots = createASIcon( + "GridDots", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + , + "outline", +); + +export default GridDots; diff --git a/src/icons-test/grid-view-1.tsx b/src/icons-test/grid-view-1.tsx new file mode 100644 index 00000000..bc46c0c5 --- /dev/null +++ b/src/icons-test/grid-view-1.tsx @@ -0,0 +1,37 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView1 = createASIcon( + "GridView1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , + "fill", +); + +export default GridView1; diff --git a/src/icons-test/grid-view-2.tsx b/src/icons-test/grid-view-2.tsx new file mode 100644 index 00000000..a21c5aa8 --- /dev/null +++ b/src/icons-test/grid-view-2.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const GridView2 = createASIcon( + "GridView2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + , + "fill", +); + +export default GridView2; diff --git a/src/icons-test/home-2.tsx b/src/icons-test/home-2.tsx new file mode 100644 index 00000000..1213b5c4 --- /dev/null +++ b/src/icons-test/home-2.tsx @@ -0,0 +1,41 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Home2 = createASIcon( + "Home2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + + + , + "outline", +); + +export default Home2; diff --git a/src/icons-test/home-mix.tsx b/src/icons-test/home-mix.tsx new file mode 100644 index 00000000..d367c9fd --- /dev/null +++ b/src/icons-test/home-mix.tsx @@ -0,0 +1,56 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const HomeMix = createASIcon( + "HomeMix", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 21 20", + }, + + + + + + + + + + + + + + , + "no-change", +); + +export default HomeMix; diff --git a/src/icons-test/image-border.tsx b/src/icons-test/image-border.tsx new file mode 100644 index 00000000..3d26e1e8 --- /dev/null +++ b/src/icons-test/image-border.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ImageBorder = createASIcon( + "ImageBorder", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default ImageBorder; diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts index d65d950e..d4f2a699 100644 --- a/src/icons-test/index.ts +++ b/src/icons-test/index.ts @@ -1,14 +1,227 @@ -export { default as AlertCircleFill } from './alert-circle-fill'; -export { default as AlertTriangleFill } from './alert-triangle-fill'; -export { default as AtomDi } from './atom-di'; -export { default as CheckBoxEmpty } from './check_box_empty'; +export { default as Import } from './Import'; +export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; +export { default as Adjustments } from './adjustments'; +export { default as AftershootCredit } from './aftershoot-credit'; +export { default as AftershootLogo } from './aftershoot-logo'; +export { default as Alarm } from './alarm'; +export { default as AlertCircleAccent } from './alert-circle-accent'; +export { default as AlertCircle } from './alert-circle'; +export { default as AlertOctagon } from './alert-octagon'; +export { default as AlertTriangleAccent } from './alert-triangle-accent'; +export { default as AlertTriangle } from './alert-triangle'; +export { default as Apple } from './apple'; +export { default as ArrowCurveFill } from './arrow-curve-fill'; +export { default as ArrowDown } from './arrow-down'; +export { default as ArrowLeft } from './arrow-left'; +export { default as ArrowNarrowLeft } from './arrow-narrow-left'; +export { default as ArrowNarrowRight } from './arrow-narrow-right'; +export { default as ArrowRight } from './arrow-right'; +export { default as ArrowSort2 } from './arrow-sort-2'; +export { default as ArrowUp } from './arrow-up'; +export { default as ArrowsDiagonal } from './arrows-diagonal'; +export { default as ArrowsSort } from './arrows-sort'; +export { default as AtomAccent } from './atom-accent'; +export { default as Atom } from './atom'; +export { default as Ban } from './ban'; +export { default as BellMinus } from './bell-minus'; +export { default as BellOff } from './bell-off'; +export { default as BellPlus } from './bell-plus'; +export { default as BellRinging2 } from './bell-ringing-2'; +export { default as BellRinging } from './bell-ringing'; +export { default as BellX } from './bell-x'; +export { default as Bell } from './bell'; +export { default as BrandFacebook } from './brand-facebook'; +export { default as BrandGithub } from './brand-github'; +export { default as BrandInstagram } from './brand-instagram'; +export { default as BrandTwitter } from './brand-twitter'; +export { default as BrandWhatsapp } from './brand-whatsapp'; +export { default as BrandYoutube } from './brand-youtube'; +export { default as BulbOff } from './bulb-off'; +export { default as Bulb } from './bulb'; +export { default as CheckBoxEmpty } from './check-box-empty'; +export { default as Check } from './check'; +export { default as CheckboxBlueAccent } from './checkbox-blue-accent'; +export { default as CheckboxGreenAccent } from './checkbox-green-accent'; +export { default as CheckboxPartialBlueAccent } from './checkbox-partial-blue-accent'; +export { default as ChevronDown } from './chevron-down'; +export { default as ChevronLeft } from './chevron-left'; +export { default as ChevronRight } from './chevron-right'; +export { default as ChevronUp } from './chevron-up'; +export { default as ChevronsLeft } from './chevrons-left'; +export { default as ChevronsRight } from './chevrons-right'; +export { default as CircleCheck2 } from './circle-check-2'; +export { default as CircleCheck } from './circle-check'; +export { default as CircleCrossAccent } from './circle-cross-accent'; +export { default as CircleFill } from './circle-fill'; +export { default as Circle } from './circle'; +export { default as Clock } from './clock'; +export { default as CloudUploadAccent } from './cloud-upload-accent'; +export { default as CloudUpload } from './cloud-upload'; +export { default as Collection } from './collection'; +export { default as ColorSwatch } from './color-swatch'; +export { default as Confetti } from './confetti'; +export { default as Copy } from './copy'; +export { default as Crown2Fill } from './crown-2-fill'; +export { default as Crown } from './crown'; +export { default as CurrencyDollar } from './currency-dollar'; +export { default as CurrentLocation } from './current-location'; +export { default as DeviceDesktopAnalytics } from './device-desktop-analytics'; +export { default as DeviceDesktopOff } from './device-desktop-off'; +export { default as DeviceDesktop } from './device-desktop'; +export { default as DeviceLaptop } from './device-laptop'; +export { default as DeviceTv } from './device-tv'; +export { default as Diamond } from './diamond'; +export { default as Discount2 } from './discount-2'; +export { default as Discount } from './discount'; +export { default as Disk } from './disk'; +export { default as DotsVertical } from './dots-vertical'; +export { default as DownloadAccent } from './download-accent'; +export { default as Download } from './download'; +export { default as EditIcon } from './edit-icon'; +export { default as Edit } from './edit'; +export { default as ExternalLink } from './external-link'; +export { default as EyeCheck } from './eye-check'; +export { default as EyeOff } from './eye-off'; +export { default as Eye } from './eye'; +export { default as Facebook } from './facebook'; +export { default as FileDownload } from './file-download'; +export { default as FileExport } from './file-export'; +export { default as FileReport } from './file-report'; +export { default as FileSearch } from './file-search'; +export { default as FilterOff } from './filter-off'; +export { default as Filter } from './filter'; +export { default as FlagFill } from './flag-fill'; +export { default as FlagOff } from './flag-off'; +export { default as Flag } from './flag'; +export { default as FolderDownload } from './folder-download'; +export { default as FolderEye } from './folder-eye'; +export { default as FolderFill } from './folder-fill'; +export { default as FolderMinus } from './folder-minus'; +export { default as FolderOff } from './folder-off'; +export { default as FolderPlus } from './folder-plus'; +export { default as FolderUpload } from './folder-upload'; +export { default as FolderX } from './folder-x'; +export { default as Folder } from './folder'; +export { default as Folders } from './folders'; +export { default as GoogleColor } from './google-color'; +export { default as GrabHand } from './grab-hand'; +export { default as GridDots } from './grid-dots'; +export { default as GridView1 } from './grid-view-1'; +export { default as GridView2 } from './grid-view-2'; +export { default as Home2 } from './home-2'; +export { default as HomeMix } from './home-mix'; +export { default as ImageBorder } from './image-border'; +export { default as InfoCircle } from './info-circle'; +export { default as InfoCirlce2 } from './info-cirlce-2'; +export { default as InfoSquare } from './info-square'; +export { default as Info } from './info'; +export { default as Key2 } from './key-2'; +export { default as KeyDuplicate } from './key-duplicate'; +export { default as Key } from './key'; +export { default as LayoutSidebarRightMix } from './layout-sidebar-right-mix'; +export { default as Link } from './link'; +export { default as ListFill } from './list-fill'; +export { default as Loader } from './loader'; +export { default as Lock2 } from './lock-2'; +export { default as LockOff } from './lock-off'; +export { default as LockOpen } from './lock-open'; +export { default as Lock } from './lock'; +export { default as Loop } from './loop'; +export { default as LoupeFill } from './loupe-fill'; +export { default as Mail } from './mail'; +export { default as Map2 } from './map-2'; +export { default as MapPinOff } from './map-pin-off'; +export { default as MapPin } from './map-pin'; +export { default as Minus } from './minus'; +export { default as MoodCrazyHappy } from './mood-crazy-happy'; +export { default as MoodEmpty } from './mood-empty'; +export { default as MoodGray } from './mood-gray'; +export { default as MoodSad } from './mood-sad'; +export { default as MoodSmile } from './mood-smile'; +export { default as Mood } from './mood'; +export { default as MouseLeft2 } from './mouse-left-2'; +export { default as MouseLeft } from './mouse-left'; +export { default as MouseRight } from './mouse-right'; export { default as NoDuplicate } from './no-duplicate'; -export { default as PlayDi } from './play-di'; +export { default as NoneSelected } from './none-selected'; +export { default as PaletteFill } from './palette-fill'; +export { default as Palette } from './palette'; +export { default as PauseFill } from './pause-fill'; +export { default as PhotoOff2 } from './photo-off-2'; +export { default as PhotoOff } from './photo-off'; +export { default as PhotoStack } from './photo-stack'; +export { default as Photo } from './photo'; +export { default as Pinned } from './pinned'; +export { default as PlayFill } from './play-fill'; +export { default as Play } from './play'; +export { default as Player } from './player'; +export { default as Plus } from './plus'; +export { default as QuestionMark } from './question-mark'; +export { default as Recull } from './recull'; +export { default as Redeem } from './redeem'; +export { default as Refresh2 } from './refresh-2'; +export { default as RefreshAlert } from './refresh-alert'; +export { default as Refresh } from './refresh'; +export { default as ReloadAlert } from './reload-alert'; +export { default as RotateClockwise } from './rotate-clockwise'; +export { default as Rotate } from './rotate'; +export { default as Scissors } from './scissors'; +export { default as Search } from './search'; +export { default as Share } from './share'; +export { default as ShoppingCartDiscount } from './shopping-cart-discount'; +export { default as ShoppingCart } from './shopping-cart'; +export { default as SortAscending2 } from './sort-ascending-2'; +export { default as SortAscendingLetters } from './sort-ascending-letters'; +export { default as SortAscendingNumbers } from './sort-ascending-numbers'; +export { default as SortAscending } from './sort-ascending'; +export { default as SortDescending2 } from './sort-descending-2'; +export { default as SortDescendingLetters } from './sort-descending-letters'; +export { default as SortDescendingNumbers } from './sort-descending-numbers'; +export { default as SortDescending } from './sort-descending'; +export { default as Sparkle } from './sparkle'; +export { default as Spray } from './spray'; +export { default as Spray2 } from './spray_2'; +export { default as StackDouble } from './stack-double'; +export { default as StackTriple } from './stack-triple'; export { default as Star0 } from './star - 0'; export { default as Star1 } from './star - 1'; export { default as Star2 } from './star - 2'; export { default as Star3 } from './star - 3'; export { default as Star4 } from './star - 4'; export { default as Star5 } from './star - 5'; +export { default as StarFillOff } from './star-fill-off'; +export { default as StarFill } from './star-fill'; +export { default as StarOff } from './star-off'; +export { default as Star } from './star'; export { default as SuccessDi } from './success-di'; +export { default as ThumbDown } from './thumb-down'; +export { default as ThumbUp } from './thumb-up'; +export { default as TrashOff } from './trash-off'; +export { default as Trash } from './trash'; +export { default as Unlink } from './unlink'; +export { default as Upload2 } from './upload-2'; +export { default as UploadAccent } from './upload-accent'; +export { default as UploadC1Cat } from './upload-c1-cat'; +export { default as UploadLrCat } from './upload-lr-cat'; +export { default as Upload } from './upload'; +export { default as UserCheck } from './user-check'; +export { default as UserExclamation } from './user-exclamation'; +export { default as UserMinus } from './user-minus'; +export { default as UserOff } from './user-off'; +export { default as UserPlus } from './user-plus'; +export { default as UserX } from './user-x'; +export { default as User } from './user'; +export { default as Users } from './users'; +export { default as ViewAll } from './view-all'; +export { default as Viewfinder } from './viewfinder'; +export { default as Wifi1 } from './wifi-1'; +export { default as Wifi2 } from './wifi-2'; +export { default as WifiOff } from './wifi-off'; +export { default as Wifi } from './wifi'; +export { default as World } from './world'; +export { default as Writing } from './writing'; +export { default as X } from './x'; +export { default as ZoomIn } from './zoom-in'; +export { default as ZoomOut } from './zoom-out'; +export { default as ZoomQuestion } from './zoom-question'; diff --git a/src/icons-test/info-circle.tsx b/src/icons-test/info-circle.tsx new file mode 100644 index 00000000..ef289a4c --- /dev/null +++ b/src/icons-test/info-circle.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoCircle = createASIcon( + "InfoCircle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default InfoCircle; diff --git a/src/icons-test/info-cirlce-2.tsx b/src/icons-test/info-cirlce-2.tsx new file mode 100644 index 00000000..65133220 --- /dev/null +++ b/src/icons-test/info-cirlce-2.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoCirlce2 = createASIcon( + "InfoCirlce2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 25 25", + }, + + + + + , + "outline", +); + +export default InfoCirlce2; diff --git a/src/icons-test/info-square.tsx b/src/icons-test/info-square.tsx new file mode 100644 index 00000000..b4b7acc6 --- /dev/null +++ b/src/icons-test/info-square.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const InfoSquare = createASIcon( + "InfoSquare", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default InfoSquare; diff --git a/src/icons-test/info.tsx b/src/icons-test/info.tsx new file mode 100644 index 00000000..8f09ab6a --- /dev/null +++ b/src/icons-test/info.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Info = createASIcon( + "Info", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 18 18", + }, + + + + , + "outline", +); + +export default Info; diff --git a/src/icons-test/key-2.tsx b/src/icons-test/key-2.tsx new file mode 100644 index 00000000..390a6d4f --- /dev/null +++ b/src/icons-test/key-2.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Key2 = createASIcon( + "Key2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default Key2; diff --git a/src/icons-test/key-duplicate.tsx b/src/icons-test/key-duplicate.tsx new file mode 100644 index 00000000..1fd558e5 --- /dev/null +++ b/src/icons-test/key-duplicate.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const KeyDuplicate = createASIcon( + "KeyDuplicate", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default KeyDuplicate; diff --git a/src/icons-test/key.tsx b/src/icons-test/key.tsx new file mode 100644 index 00000000..2a31cae0 --- /dev/null +++ b/src/icons-test/key.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Key = createASIcon( + "Key", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Key; diff --git a/src/icons-test/layout-sidebar-right-mix.tsx b/src/icons-test/layout-sidebar-right-mix.tsx new file mode 100644 index 00000000..f4567590 --- /dev/null +++ b/src/icons-test/layout-sidebar-right-mix.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LayoutSidebarRightMix = createASIcon( + "LayoutSidebarRightMix", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + , + "no-change", +); + +export default LayoutSidebarRightMix; diff --git a/src/icons-test/link.tsx b/src/icons-test/link.tsx new file mode 100644 index 00000000..62d351ea --- /dev/null +++ b/src/icons-test/link.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Link = createASIcon( + "Link", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default Link; diff --git a/src/icons-test/list-fill.tsx b/src/icons-test/list-fill.tsx new file mode 100644 index 00000000..23f8fad6 --- /dev/null +++ b/src/icons-test/list-fill.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ListFill = createASIcon( + "ListFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default ListFill; diff --git a/src/icons-test/loader.tsx b/src/icons-test/loader.tsx new file mode 100644 index 00000000..2c55028f --- /dev/null +++ b/src/icons-test/loader.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loader = createASIcon( + "Loader", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , + "outline", +); + +export default Loader; diff --git a/src/icons-test/lock-2.tsx b/src/icons-test/lock-2.tsx new file mode 100644 index 00000000..d294c60e --- /dev/null +++ b/src/icons-test/lock-2.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Lock2 = createASIcon( + "Lock2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Lock2; diff --git a/src/icons-test/lock-off.tsx b/src/icons-test/lock-off.tsx new file mode 100644 index 00000000..29783c8b --- /dev/null +++ b/src/icons-test/lock-off.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LockOff = createASIcon( + "LockOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default LockOff; diff --git a/src/icons-test/lock-open.tsx b/src/icons-test/lock-open.tsx new file mode 100644 index 00000000..120d0a47 --- /dev/null +++ b/src/icons-test/lock-open.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LockOpen = createASIcon( + "LockOpen", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default LockOpen; diff --git a/src/icons-test/lock.tsx b/src/icons-test/lock.tsx new file mode 100644 index 00000000..cbb8dc2a --- /dev/null +++ b/src/icons-test/lock.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Lock = createASIcon( + "Lock", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Lock; diff --git a/src/icons-test/loop.tsx b/src/icons-test/loop.tsx new file mode 100644 index 00000000..9e6240db --- /dev/null +++ b/src/icons-test/loop.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loop = createASIcon( + "Loop", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 35 35", + }, + + + + + + , + "outline", +); + +export default Loop; diff --git a/src/icons-test/loupe-fill.tsx b/src/icons-test/loupe-fill.tsx new file mode 100644 index 00000000..b81811b4 --- /dev/null +++ b/src/icons-test/loupe-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LoupeFill = createASIcon( + "LoupeFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default LoupeFill; diff --git a/src/icons-test/mail.tsx b/src/icons-test/mail.tsx new file mode 100644 index 00000000..15d03972 --- /dev/null +++ b/src/icons-test/mail.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Mail = createASIcon( + "Mail", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Mail; diff --git a/src/icons-test/map-2.tsx b/src/icons-test/map-2.tsx new file mode 100644 index 00000000..a9fd8f98 --- /dev/null +++ b/src/icons-test/map-2.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Map2 = createASIcon( + "Map2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default Map2; diff --git a/src/icons-test/map-pin-off.tsx b/src/icons-test/map-pin-off.tsx new file mode 100644 index 00000000..23bf289a --- /dev/null +++ b/src/icons-test/map-pin-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MapPinOff = createASIcon( + "MapPinOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default MapPinOff; diff --git a/src/icons-test/map-pin.tsx b/src/icons-test/map-pin.tsx new file mode 100644 index 00000000..95255405 --- /dev/null +++ b/src/icons-test/map-pin.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MapPin = createASIcon( + "MapPin", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default MapPin; diff --git a/src/icons-test/minus.tsx b/src/icons-test/minus.tsx new file mode 100644 index 00000000..e774c91b --- /dev/null +++ b/src/icons-test/minus.tsx @@ -0,0 +1,17 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Minus = createASIcon( + "Minus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default Minus; diff --git a/src/icons-test/mood-crazy-happy.tsx b/src/icons-test/mood-crazy-happy.tsx new file mode 100644 index 00000000..e304eda2 --- /dev/null +++ b/src/icons-test/mood-crazy-happy.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodCrazyHappy = createASIcon( + "MoodCrazyHappy", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , + "outline", +); + +export default MoodCrazyHappy; diff --git a/src/icons-test/mood-empty.tsx b/src/icons-test/mood-empty.tsx new file mode 100644 index 00000000..89335f06 --- /dev/null +++ b/src/icons-test/mood-empty.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodEmpty = createASIcon( + "MoodEmpty", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default MoodEmpty; diff --git a/src/icons-test/mood-gray.tsx b/src/icons-test/mood-gray.tsx new file mode 100644 index 00000000..c464662f --- /dev/null +++ b/src/icons-test/mood-gray.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodGray = createASIcon( + "MoodGray", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 31 33", + }, + + + + + + + + + + + + + + , + "no-change", +); + +export default MoodGray; diff --git a/src/icons-test/mood-sad.tsx b/src/icons-test/mood-sad.tsx new file mode 100644 index 00000000..cb545af4 --- /dev/null +++ b/src/icons-test/mood-sad.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodSad = createASIcon( + "MoodSad", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default MoodSad; diff --git a/src/icons-test/mood-smile.tsx b/src/icons-test/mood-smile.tsx new file mode 100644 index 00000000..0ac6d6d4 --- /dev/null +++ b/src/icons-test/mood-smile.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MoodSmile = createASIcon( + "MoodSmile", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default MoodSmile; diff --git a/src/icons-test/mood.tsx b/src/icons-test/mood.tsx new file mode 100644 index 00000000..8c4d873b --- /dev/null +++ b/src/icons-test/mood.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Mood = createASIcon( + "Mood", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 31 33", + }, + + + + + + + + + + + + + + , + "no-change", +); + +export default Mood; diff --git a/src/icons-test/mouse-left-2.tsx b/src/icons-test/mouse-left-2.tsx new file mode 100644 index 00000000..953ab49c --- /dev/null +++ b/src/icons-test/mouse-left-2.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseLeft2 = createASIcon( + "MouseLeft2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 48 48", + }, + + + + + + + + + , + "no-change", +); + +export default MouseLeft2; diff --git a/src/icons-test/mouse-left.tsx b/src/icons-test/mouse-left.tsx new file mode 100644 index 00000000..68e921ac --- /dev/null +++ b/src/icons-test/mouse-left.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseLeft = createASIcon( + "MouseLeft", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default MouseLeft; diff --git a/src/icons-test/mouse-right.tsx b/src/icons-test/mouse-right.tsx new file mode 100644 index 00000000..469b991a --- /dev/null +++ b/src/icons-test/mouse-right.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MouseRight = createASIcon( + "MouseRight", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default MouseRight; diff --git a/src/icons-test/no-duplicate.tsx b/src/icons-test/no-duplicate.tsx index 07c6e0fa..8e296546 100644 --- a/src/icons-test/no-duplicate.tsx +++ b/src/icons-test/no-duplicate.tsx @@ -4,41 +4,30 @@ import React from "react"; const NoDuplicate = createASIcon( "NoDuplicate", { - width: "32", - height: "32", - viewBox: "0 0 32 32", - fill: "none", xmlns: "http://www.w3.org/2000/svg", - "stroke-width": "1", + fill: "none", + viewBox: "0 0 32 32", }, - + , - "accent", + "outline", ); export default NoDuplicate; diff --git a/src/icons-test/none-selected.tsx b/src/icons-test/none-selected.tsx new file mode 100644 index 00000000..ce189361 --- /dev/null +++ b/src/icons-test/none-selected.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const NoneSelected = createASIcon( + "NoneSelected", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "mix", +); + +export default NoneSelected; diff --git a/src/icons-test/palette-fill.tsx b/src/icons-test/palette-fill.tsx new file mode 100644 index 00000000..d3c2d69e --- /dev/null +++ b/src/icons-test/palette-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PaletteFill = createASIcon( + "PaletteFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default PaletteFill; diff --git a/src/icons-test/palette.tsx b/src/icons-test/palette.tsx new file mode 100644 index 00000000..61e25258 --- /dev/null +++ b/src/icons-test/palette.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Palette = createASIcon( + "Palette", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Palette; diff --git a/src/icons-test/pause-fill.tsx b/src/icons-test/pause-fill.tsx new file mode 100644 index 00000000..984339be --- /dev/null +++ b/src/icons-test/pause-fill.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PauseFill = createASIcon( + "PauseFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default PauseFill; diff --git a/src/icons-test/photo-off-2.tsx b/src/icons-test/photo-off-2.tsx new file mode 100644 index 00000000..3b8d36c0 --- /dev/null +++ b/src/icons-test/photo-off-2.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoOff2 = createASIcon( + "PhotoOff2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + , + "outline", +); + +export default PhotoOff2; diff --git a/src/icons-test/photo-off.tsx b/src/icons-test/photo-off.tsx new file mode 100644 index 00000000..e37f62ba --- /dev/null +++ b/src/icons-test/photo-off.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoOff = createASIcon( + "PhotoOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default PhotoOff; diff --git a/src/icons-test/photo-stack.tsx b/src/icons-test/photo-stack.tsx new file mode 100644 index 00000000..a3c1dc3d --- /dev/null +++ b/src/icons-test/photo-stack.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PhotoStack = createASIcon( + "PhotoStack", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default PhotoStack; diff --git a/src/icons-test/photo.tsx b/src/icons-test/photo.tsx new file mode 100644 index 00000000..7da0638e --- /dev/null +++ b/src/icons-test/photo.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Photo = createASIcon( + "Photo", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Photo; diff --git a/src/icons-test/pinned.tsx b/src/icons-test/pinned.tsx new file mode 100644 index 00000000..13fb3718 --- /dev/null +++ b/src/icons-test/pinned.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Pinned = createASIcon( + "Pinned", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default Pinned; diff --git a/src/icons-test/play-fill.tsx b/src/icons-test/play-fill.tsx new file mode 100644 index 00000000..947b4b6c --- /dev/null +++ b/src/icons-test/play-fill.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const PlayFill = createASIcon( + "PlayFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default PlayFill; diff --git a/src/icons-test/play.tsx b/src/icons-test/play.tsx new file mode 100644 index 00000000..1ab7284f --- /dev/null +++ b/src/icons-test/play.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Play = createASIcon( + "Play", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default Play; diff --git a/src/icons-test/play-di.tsx b/src/icons-test/player.tsx similarity index 94% rename from src/icons-test/play-di.tsx rename to src/icons-test/player.tsx index 30a3693f..a2593ba7 100644 --- a/src/icons-test/play-di.tsx +++ b/src/icons-test/player.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PlayDi = createASIcon( - "PlayDi", +const Player = createASIcon( + "Player", { width: "24", height: "24", @@ -25,4 +25,4 @@ const PlayDi = createASIcon( "accent", ); -export default PlayDi; +export default Player; diff --git a/src/icons-test/plus.tsx b/src/icons-test/plus.tsx new file mode 100644 index 00000000..bf490052 --- /dev/null +++ b/src/icons-test/plus.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Plus = createASIcon( + "Plus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default Plus; diff --git a/src/icons-test/question-mark.tsx b/src/icons-test/question-mark.tsx new file mode 100644 index 00000000..28c481dc --- /dev/null +++ b/src/icons-test/question-mark.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const QuestionMark = createASIcon( + "QuestionMark", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default QuestionMark; diff --git a/src/icons-test/recull.tsx b/src/icons-test/recull.tsx new file mode 100644 index 00000000..e680f5be --- /dev/null +++ b/src/icons-test/recull.tsx @@ -0,0 +1,43 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Recull = createASIcon( + "Recull", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 46 46", + }, + + + + + + + + + , + "no-change", +); + +export default Recull; diff --git a/src/icons-test/redeem.tsx b/src/icons-test/redeem.tsx new file mode 100644 index 00000000..99c047cf --- /dev/null +++ b/src/icons-test/redeem.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Redeem = createASIcon( + "Redeem", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + , + "outline", +); + +export default Redeem; diff --git a/src/icons-test/refresh-2.tsx b/src/icons-test/refresh-2.tsx new file mode 100644 index 00000000..b6c0e365 --- /dev/null +++ b/src/icons-test/refresh-2.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Refresh2 = createASIcon( + "Refresh2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + , + "outline", +); + +export default Refresh2; diff --git a/src/icons-test/refresh-alert.tsx b/src/icons-test/refresh-alert.tsx new file mode 100644 index 00000000..2e9ec16e --- /dev/null +++ b/src/icons-test/refresh-alert.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RefreshAlert = createASIcon( + "RefreshAlert", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default RefreshAlert; diff --git a/src/icons-test/refresh.tsx b/src/icons-test/refresh.tsx new file mode 100644 index 00000000..c7327178 --- /dev/null +++ b/src/icons-test/refresh.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Refresh = createASIcon( + "Refresh", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Refresh; diff --git a/src/icons-test/reload-alert.tsx b/src/icons-test/reload-alert.tsx new file mode 100644 index 00000000..5a0c8481 --- /dev/null +++ b/src/icons-test/reload-alert.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ReloadAlert = createASIcon( + "ReloadAlert", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 32 32", + }, + + + , + "outline", +); + +export default ReloadAlert; diff --git a/src/icons-test/rotate-clockwise.tsx b/src/icons-test/rotate-clockwise.tsx new file mode 100644 index 00000000..1b53e098 --- /dev/null +++ b/src/icons-test/rotate-clockwise.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RotateClockwise = createASIcon( + "RotateClockwise", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default RotateClockwise; diff --git a/src/icons-test/rotate.tsx b/src/icons-test/rotate.tsx new file mode 100644 index 00000000..83ad166a --- /dev/null +++ b/src/icons-test/rotate.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Rotate = createASIcon( + "Rotate", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Rotate; diff --git a/src/icons-test/scissors.tsx b/src/icons-test/scissors.tsx new file mode 100644 index 00000000..a5b00872 --- /dev/null +++ b/src/icons-test/scissors.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Scissors = createASIcon( + "Scissors", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + + + + + , + "no-change", +); + +export default Scissors; diff --git a/src/icons-test/search.tsx b/src/icons-test/search.tsx new file mode 100644 index 00000000..c5f904d5 --- /dev/null +++ b/src/icons-test/search.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Search = createASIcon( + "Search", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Search; diff --git a/src/icons-test/share.tsx b/src/icons-test/share.tsx new file mode 100644 index 00000000..bee34cfa --- /dev/null +++ b/src/icons-test/share.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Share = createASIcon( + "Share", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default Share; diff --git a/src/icons-test/shopping-cart-discount.tsx b/src/icons-test/shopping-cart-discount.tsx new file mode 100644 index 00000000..d0f04316 --- /dev/null +++ b/src/icons-test/shopping-cart-discount.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ShoppingCartDiscount = createASIcon( + "ShoppingCartDiscount", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + + , + "outline", +); + +export default ShoppingCartDiscount; diff --git a/src/icons-test/shopping-cart.tsx b/src/icons-test/shopping-cart.tsx new file mode 100644 index 00000000..421862dc --- /dev/null +++ b/src/icons-test/shopping-cart.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ShoppingCart = createASIcon( + "ShoppingCart", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default ShoppingCart; diff --git a/src/icons-test/sort-ascending-2.tsx b/src/icons-test/sort-ascending-2.tsx new file mode 100644 index 00000000..160f12d2 --- /dev/null +++ b/src/icons-test/sort-ascending-2.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscending2 = createASIcon( + "SortAscending2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default SortAscending2; diff --git a/src/icons-test/sort-ascending-letters.tsx b/src/icons-test/sort-ascending-letters.tsx new file mode 100644 index 00000000..9f3f82a7 --- /dev/null +++ b/src/icons-test/sort-ascending-letters.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscendingLetters = createASIcon( + "SortAscendingLetters", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default SortAscendingLetters; diff --git a/src/icons-test/sort-ascending-numbers.tsx b/src/icons-test/sort-ascending-numbers.tsx new file mode 100644 index 00000000..f64970b5 --- /dev/null +++ b/src/icons-test/sort-ascending-numbers.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscendingNumbers = createASIcon( + "SortAscendingNumbers", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default SortAscendingNumbers; diff --git a/src/icons-test/sort-ascending.tsx b/src/icons-test/sort-ascending.tsx new file mode 100644 index 00000000..e634a125 --- /dev/null +++ b/src/icons-test/sort-ascending.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortAscending = createASIcon( + "SortAscending", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default SortAscending; diff --git a/src/icons-test/sort-descending-2.tsx b/src/icons-test/sort-descending-2.tsx new file mode 100644 index 00000000..c50f1e8f --- /dev/null +++ b/src/icons-test/sort-descending-2.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescending2 = createASIcon( + "SortDescending2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default SortDescending2; diff --git a/src/icons-test/sort-descending-letters.tsx b/src/icons-test/sort-descending-letters.tsx new file mode 100644 index 00000000..b634e7b1 --- /dev/null +++ b/src/icons-test/sort-descending-letters.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescendingLetters = createASIcon( + "SortDescendingLetters", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default SortDescendingLetters; diff --git a/src/icons-test/sort-descending-numbers.tsx b/src/icons-test/sort-descending-numbers.tsx new file mode 100644 index 00000000..0b84442b --- /dev/null +++ b/src/icons-test/sort-descending-numbers.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescendingNumbers = createASIcon( + "SortDescendingNumbers", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default SortDescendingNumbers; diff --git a/src/icons-test/sort-descending.tsx b/src/icons-test/sort-descending.tsx new file mode 100644 index 00000000..7dd28c8c --- /dev/null +++ b/src/icons-test/sort-descending.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDescending = createASIcon( + "SortDescending", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default SortDescending; diff --git a/src/icons-test/sparkle.tsx b/src/icons-test/sparkle.tsx new file mode 100644 index 00000000..adf3710d --- /dev/null +++ b/src/icons-test/sparkle.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Sparkle = createASIcon( + "Sparkle", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default Sparkle; diff --git a/src/icons-test/spray.tsx b/src/icons-test/spray.tsx new file mode 100644 index 00000000..42295836 --- /dev/null +++ b/src/icons-test/spray.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Spray = createASIcon( + "Spray", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 16 21", + }, + + + + , + "outline", +); + +export default Spray; diff --git a/src/icons-test/spray_2.tsx b/src/icons-test/spray_2.tsx new file mode 100644 index 00000000..77b1ae78 --- /dev/null +++ b/src/icons-test/spray_2.tsx @@ -0,0 +1,26 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Spray2 = createASIcon( + "Spray2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default Spray2; diff --git a/src/icons-test/stack-double.tsx b/src/icons-test/stack-double.tsx new file mode 100644 index 00000000..e9aa9cc0 --- /dev/null +++ b/src/icons-test/stack-double.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackDouble = createASIcon( + "StackDouble", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default StackDouble; diff --git a/src/icons-test/stack-triple.tsx b/src/icons-test/stack-triple.tsx new file mode 100644 index 00000000..dc0fbb5c --- /dev/null +++ b/src/icons-test/stack-triple.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackTriple = createASIcon( + "StackTriple", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default StackTriple; diff --git a/src/icons-test/star-fill-off.tsx b/src/icons-test/star-fill-off.tsx new file mode 100644 index 00000000..8e6a574b --- /dev/null +++ b/src/icons-test/star-fill-off.tsx @@ -0,0 +1,39 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarFillOff = createASIcon( + "StarFillOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + , + "no-change", +); + +export default StarFillOff; diff --git a/src/icons-test/star-fill.tsx b/src/icons-test/star-fill.tsx new file mode 100644 index 00000000..551f7e45 --- /dev/null +++ b/src/icons-test/star-fill.tsx @@ -0,0 +1,24 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarFill = createASIcon( + "StarFill", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 38 38", + }, + + + , + "mix", +); + +export default StarFill; diff --git a/src/icons-test/star-off.tsx b/src/icons-test/star-off.tsx new file mode 100644 index 00000000..3d152da0 --- /dev/null +++ b/src/icons-test/star-off.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StarOff = createASIcon( + "StarOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default StarOff; diff --git a/src/icons-test/star.tsx b/src/icons-test/star.tsx new file mode 100644 index 00000000..e4e83d99 --- /dev/null +++ b/src/icons-test/star.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Star = createASIcon( + "Star", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default Star; diff --git a/src/icons-test/thumb-down.tsx b/src/icons-test/thumb-down.tsx new file mode 100644 index 00000000..ad563946 --- /dev/null +++ b/src/icons-test/thumb-down.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ThumbDown = createASIcon( + "ThumbDown", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ThumbDown; diff --git a/src/icons-test/thumb-up.tsx b/src/icons-test/thumb-up.tsx new file mode 100644 index 00000000..00130ccc --- /dev/null +++ b/src/icons-test/thumb-up.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ThumbUp = createASIcon( + "ThumbUp", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default ThumbUp; diff --git a/src/icons-test/trash-off.tsx b/src/icons-test/trash-off.tsx new file mode 100644 index 00000000..96b6b073 --- /dev/null +++ b/src/icons-test/trash-off.tsx @@ -0,0 +1,35 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const TrashOff = createASIcon( + "TrashOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + , + "outline", +); + +export default TrashOff; diff --git a/src/icons-test/trash.tsx b/src/icons-test/trash.tsx new file mode 100644 index 00000000..cd7f42d7 --- /dev/null +++ b/src/icons-test/trash.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Trash = createASIcon( + "Trash", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default Trash; diff --git a/src/icons-test/unlink.tsx b/src/icons-test/unlink.tsx new file mode 100644 index 00000000..14e8d460 --- /dev/null +++ b/src/icons-test/unlink.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Unlink = createASIcon( + "Unlink", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , + "outline", +); + +export default Unlink; diff --git a/src/icons-test/upload-2.tsx b/src/icons-test/upload-2.tsx new file mode 100644 index 00000000..a1d594f0 --- /dev/null +++ b/src/icons-test/upload-2.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Upload2 = createASIcon( + "Upload2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default Upload2; diff --git a/src/icons-test/upload-accent.tsx b/src/icons-test/upload-accent.tsx new file mode 100644 index 00000000..9e620038 --- /dev/null +++ b/src/icons-test/upload-accent.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadAccent = createASIcon( + "UploadAccent", + { + width: "48", + height: "48", + viewBox: "0 0 48 48", + fill: "none", + xmlns: "http://www.w3.org/2000/svg", + }, + + + + + , + "accent", +); + +export default UploadAccent; diff --git a/src/icons-test/upload-c1-cat.tsx b/src/icons-test/upload-c1-cat.tsx new file mode 100644 index 00000000..1efa954a --- /dev/null +++ b/src/icons-test/upload-c1-cat.tsx @@ -0,0 +1,52 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadC1Cat = createASIcon( + "UploadC1Cat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , + "mix", +); + +export default UploadC1Cat; diff --git a/src/icons-test/upload-lr-cat.tsx b/src/icons-test/upload-lr-cat.tsx new file mode 100644 index 00000000..1d85f484 --- /dev/null +++ b/src/icons-test/upload-lr-cat.tsx @@ -0,0 +1,52 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UploadLrCat = createASIcon( + "UploadLrCat", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + viewBox: "0 0 36 36", + }, + + + + + + + + + + + + + + + + + + , + "mix", +); + +export default UploadLrCat; diff --git a/src/icons-test/upload.tsx b/src/icons-test/upload.tsx new file mode 100644 index 00000000..7688fcd1 --- /dev/null +++ b/src/icons-test/upload.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Upload = createASIcon( + "Upload", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Upload; diff --git a/src/icons-test/user-check.tsx b/src/icons-test/user-check.tsx new file mode 100644 index 00000000..e3d4d9ff --- /dev/null +++ b/src/icons-test/user-check.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserCheck = createASIcon( + "UserCheck", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default UserCheck; diff --git a/src/icons-test/user-exclamation.tsx b/src/icons-test/user-exclamation.tsx new file mode 100644 index 00000000..0e0ae4ed --- /dev/null +++ b/src/icons-test/user-exclamation.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserExclamation = createASIcon( + "UserExclamation", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default UserExclamation; diff --git a/src/icons-test/user-minus.tsx b/src/icons-test/user-minus.tsx new file mode 100644 index 00000000..23aa0404 --- /dev/null +++ b/src/icons-test/user-minus.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserMinus = createASIcon( + "UserMinus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default UserMinus; diff --git a/src/icons-test/user-off.tsx b/src/icons-test/user-off.tsx new file mode 100644 index 00000000..c56a9846 --- /dev/null +++ b/src/icons-test/user-off.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserOff = createASIcon( + "UserOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default UserOff; diff --git a/src/icons-test/user-plus.tsx b/src/icons-test/user-plus.tsx new file mode 100644 index 00000000..af529239 --- /dev/null +++ b/src/icons-test/user-plus.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserPlus = createASIcon( + "UserPlus", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default UserPlus; diff --git a/src/icons-test/user-x.tsx b/src/icons-test/user-x.tsx new file mode 100644 index 00000000..2684097f --- /dev/null +++ b/src/icons-test/user-x.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const UserX = createASIcon( + "UserX", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default UserX; diff --git a/src/icons-test/user.tsx b/src/icons-test/user.tsx new file mode 100644 index 00000000..738d5e9b --- /dev/null +++ b/src/icons-test/user.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const User = createASIcon( + "User", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default User; diff --git a/src/icons-test/users.tsx b/src/icons-test/users.tsx new file mode 100644 index 00000000..482c5615 --- /dev/null +++ b/src/icons-test/users.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Users = createASIcon( + "Users", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Users; diff --git a/src/icons-test/view-all.tsx b/src/icons-test/view-all.tsx new file mode 100644 index 00000000..66bf8b7c --- /dev/null +++ b/src/icons-test/view-all.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ViewAll = createASIcon( + "ViewAll", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default ViewAll; diff --git a/src/icons-test/viewfinder.tsx b/src/icons-test/viewfinder.tsx new file mode 100644 index 00000000..5c423b54 --- /dev/null +++ b/src/icons-test/viewfinder.tsx @@ -0,0 +1,34 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Viewfinder = createASIcon( + "Viewfinder", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + + , + "outline", +); + +export default Viewfinder; diff --git a/src/icons-test/wifi-1.tsx b/src/icons-test/wifi-1.tsx new file mode 100644 index 00000000..2b847a92 --- /dev/null +++ b/src/icons-test/wifi-1.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi1 = createASIcon( + "Wifi1", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Wifi1; diff --git a/src/icons-test/wifi-2.tsx b/src/icons-test/wifi-2.tsx new file mode 100644 index 00000000..1092983f --- /dev/null +++ b/src/icons-test/wifi-2.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi2 = createASIcon( + "Wifi2", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default Wifi2; diff --git a/src/icons-test/wifi-off.tsx b/src/icons-test/wifi-off.tsx new file mode 100644 index 00000000..8aa96deb --- /dev/null +++ b/src/icons-test/wifi-off.tsx @@ -0,0 +1,46 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const WifiOff = createASIcon( + "WifiOff", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + , + "outline", +); + +export default WifiOff; diff --git a/src/icons-test/wifi.tsx b/src/icons-test/wifi.tsx new file mode 100644 index 00000000..37bba835 --- /dev/null +++ b/src/icons-test/wifi.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Wifi = createASIcon( + "Wifi", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + , + "outline", +); + +export default Wifi; diff --git a/src/icons-test/world.tsx b/src/icons-test/world.tsx new file mode 100644 index 00000000..8d3103a1 --- /dev/null +++ b/src/icons-test/world.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const World = createASIcon( + "World", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default World; diff --git a/src/icons-test/writing.tsx b/src/icons-test/writing.tsx new file mode 100644 index 00000000..9853a783 --- /dev/null +++ b/src/icons-test/writing.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Writing = createASIcon( + "Writing", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default Writing; diff --git a/src/icons-test/x.tsx b/src/icons-test/x.tsx new file mode 100644 index 00000000..b07e3316 --- /dev/null +++ b/src/icons-test/x.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const X = createASIcon( + "X", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default X; diff --git a/src/icons-test/zoom-in.tsx b/src/icons-test/zoom-in.tsx new file mode 100644 index 00000000..9600bbcb --- /dev/null +++ b/src/icons-test/zoom-in.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomIn = createASIcon( + "ZoomIn", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default ZoomIn; diff --git a/src/icons-test/zoom-out.tsx b/src/icons-test/zoom-out.tsx new file mode 100644 index 00000000..d8b330b5 --- /dev/null +++ b/src/icons-test/zoom-out.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomOut = createASIcon( + "ZoomOut", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default ZoomOut; diff --git a/src/icons-test/zoom-question.tsx b/src/icons-test/zoom-question.tsx new file mode 100644 index 00000000..7f2a7ffa --- /dev/null +++ b/src/icons-test/zoom-question.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ZoomQuestion = createASIcon( + "ZoomQuestion", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default ZoomQuestion; diff --git a/src/stories/Adjustments.stories.tsx b/src/stories/Adjustments.stories.tsx new file mode 100644 index 00000000..52ba4424 --- /dev/null +++ b/src/stories/Adjustments.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Adjustments from '../icons-test/adjustments' + + const meta: Meta = { + component: Adjustments, + title: 'outline/Adjustments', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AdjustmentsHorizontal.stories.tsx b/src/stories/AdjustmentsHorizontal.stories.tsx new file mode 100644 index 00000000..3bb851a6 --- /dev/null +++ b/src/stories/AdjustmentsHorizontal.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AdjustmentsHorizontal from '../icons-test/adjustments-horizontal' + + const meta: Meta = { + component: AdjustmentsHorizontal, + title: 'outline/AdjustmentsHorizontal', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangleFill.stories.tsx b/src/stories/AftershootCredit.stories.tsx similarity index 86% rename from src/stories/AlertTriangleFill.stories.tsx rename to src/stories/AftershootCredit.stories.tsx index f20b4b18..fbee1ad3 100644 --- a/src/stories/AlertTriangleFill.stories.tsx +++ b/src/stories/AftershootCredit.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertTriangleFill from '../icons-test/alert-triangle-fill' + import AftershootCredit from '../icons-test/aftershoot-credit' - const meta: Meta = { - component: AlertTriangleFill, - title: 'accent/AlertTriangleFill', + const meta: Meta = { + component: AftershootCredit, + title: 'logo/AftershootCredit', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/AftershootLogo.stories.tsx b/src/stories/AftershootLogo.stories.tsx new file mode 100644 index 00000000..c6a0e4e6 --- /dev/null +++ b/src/stories/AftershootLogo.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AftershootLogo from '../icons-test/aftershoot-logo' + + const meta: Meta = { + component: AftershootLogo, + title: 'fill/AftershootLogo', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Alarm.stories.tsx b/src/stories/Alarm.stories.tsx new file mode 100644 index 00000000..d049ffbd --- /dev/null +++ b/src/stories/Alarm.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Alarm from '../icons-test/alarm' + + const meta: Meta = { + component: Alarm, + title: 'outline/Alarm', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertCircle.stories.tsx b/src/stories/AlertCircle.stories.tsx new file mode 100644 index 00000000..a66e7e24 --- /dev/null +++ b/src/stories/AlertCircle.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertCircle from '../icons-test/alert-circle' + + const meta: Meta = { + component: AlertCircle, + title: 'outline/AlertCircle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertCircleAccent.stories.tsx b/src/stories/AlertCircleAccent.stories.tsx new file mode 100644 index 00000000..22c9cdd4 --- /dev/null +++ b/src/stories/AlertCircleAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertCircleAccent from '../icons-test/alert-circle-accent' + + const meta: Meta = { + component: AlertCircleAccent, + title: 'accent/AlertCircleAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertOctagon.stories.tsx b/src/stories/AlertOctagon.stories.tsx new file mode 100644 index 00000000..6f05867f --- /dev/null +++ b/src/stories/AlertOctagon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertOctagon from '../icons-test/alert-octagon' + + const meta: Meta = { + component: AlertOctagon, + title: 'outline/AlertOctagon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangle.stories.tsx b/src/stories/AlertTriangle.stories.tsx new file mode 100644 index 00000000..8bad11cd --- /dev/null +++ b/src/stories/AlertTriangle.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertTriangle from '../icons-test/alert-triangle' + + const meta: Meta = { + component: AlertTriangle, + title: 'outline/AlertTriangle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangleAccent.stories.tsx b/src/stories/AlertTriangleAccent.stories.tsx new file mode 100644 index 00000000..bef6f3a9 --- /dev/null +++ b/src/stories/AlertTriangleAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertTriangleAccent from '../icons-test/alert-triangle-accent' + + const meta: Meta = { + component: AlertTriangleAccent, + title: 'accent/AlertTriangleAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Apple.stories.tsx b/src/stories/Apple.stories.tsx new file mode 100644 index 00000000..d0034b27 --- /dev/null +++ b/src/stories/Apple.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Apple from '../icons-test/apple' + + const meta: Meta = { + component: Apple, + title: 'fill/Apple', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowCurveFill.stories.tsx b/src/stories/ArrowCurveFill.stories.tsx new file mode 100644 index 00000000..986f62fd --- /dev/null +++ b/src/stories/ArrowCurveFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowCurveFill from '../icons-test/arrow-curve-fill' + + const meta: Meta = { + component: ArrowCurveFill, + title: 'fill/ArrowCurveFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowDown.stories.tsx b/src/stories/ArrowDown.stories.tsx new file mode 100644 index 00000000..ed919adb --- /dev/null +++ b/src/stories/ArrowDown.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowDown from '../icons-test/arrow-down' + + const meta: Meta = { + component: ArrowDown, + title: 'outline/ArrowDown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowLeft.stories.tsx b/src/stories/ArrowLeft.stories.tsx new file mode 100644 index 00000000..38975c64 --- /dev/null +++ b/src/stories/ArrowLeft.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowLeft from '../icons-test/arrow-left' + + const meta: Meta = { + component: ArrowLeft, + title: 'outline/ArrowLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowNarrowLeft.stories.tsx b/src/stories/ArrowNarrowLeft.stories.tsx new file mode 100644 index 00000000..6eace54e --- /dev/null +++ b/src/stories/ArrowNarrowLeft.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowLeft from '../icons-test/arrow-narrow-left' + + const meta: Meta = { + component: ArrowNarrowLeft, + title: 'outline/ArrowNarrowLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowNarrowRight.stories.tsx b/src/stories/ArrowNarrowRight.stories.tsx new file mode 100644 index 00000000..010964d0 --- /dev/null +++ b/src/stories/ArrowNarrowRight.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowRight from '../icons-test/arrow-narrow-right' + + const meta: Meta = { + component: ArrowNarrowRight, + title: 'outline/ArrowNarrowRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowRight.stories.tsx b/src/stories/ArrowRight.stories.tsx new file mode 100644 index 00000000..2f0c09b6 --- /dev/null +++ b/src/stories/ArrowRight.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowRight from '../icons-test/arrow-right' + + const meta: Meta = { + component: ArrowRight, + title: 'outline/ArrowRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowSort2.stories.tsx b/src/stories/ArrowSort2.stories.tsx new file mode 100644 index 00000000..bf7ff2c4 --- /dev/null +++ b/src/stories/ArrowSort2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowSort2 from '../icons-test/arrow-sort-2' + + const meta: Meta = { + component: ArrowSort2, + title: 'outline/ArrowSort2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowUp.stories.tsx b/src/stories/ArrowUp.stories.tsx new file mode 100644 index 00000000..91e84b3d --- /dev/null +++ b/src/stories/ArrowUp.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowUp from '../icons-test/arrow-up' + + const meta: Meta = { + component: ArrowUp, + title: 'outline/ArrowUp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsDiagonal.stories.tsx b/src/stories/ArrowsDiagonal.stories.tsx new file mode 100644 index 00000000..3bf21a2d --- /dev/null +++ b/src/stories/ArrowsDiagonal.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsDiagonal from '../icons-test/arrows-diagonal' + + const meta: Meta = { + component: ArrowsDiagonal, + title: 'outline/ArrowsDiagonal', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsSort.stories.tsx b/src/stories/ArrowsSort.stories.tsx new file mode 100644 index 00000000..527a70cd --- /dev/null +++ b/src/stories/ArrowsSort.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsSort from '../icons-test/arrows-sort' + + const meta: Meta = { + component: ArrowsSort, + title: 'outline/ArrowsSort', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Atom.stories.tsx b/src/stories/Atom.stories.tsx new file mode 100644 index 00000000..2d56dec7 --- /dev/null +++ b/src/stories/Atom.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Atom from '../icons-test/atom' + + const meta: Meta = { + component: Atom, + title: 'outline/Atom', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertCircleFill.stories.tsx b/src/stories/AtomAccent.stories.tsx similarity index 87% rename from src/stories/AlertCircleFill.stories.tsx rename to src/stories/AtomAccent.stories.tsx index a2ca12c3..4fffe6f0 100644 --- a/src/stories/AlertCircleFill.stories.tsx +++ b/src/stories/AtomAccent.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertCircleFill from '../icons-test/alert-circle-fill' + import AtomAccent from '../icons-test/atom-accent' - const meta: Meta = { - component: AlertCircleFill, - title: 'accent/AlertCircleFill', + const meta: Meta = { + component: AtomAccent, + title: 'accent/AtomAccent', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Ban.stories.tsx b/src/stories/Ban.stories.tsx new file mode 100644 index 00000000..19c531cb --- /dev/null +++ b/src/stories/Ban.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Ban from '../icons-test/ban' + + const meta: Meta = { + component: Ban, + title: 'outline/Ban', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Bell.stories.tsx b/src/stories/Bell.stories.tsx new file mode 100644 index 00000000..c852012e --- /dev/null +++ b/src/stories/Bell.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Bell from '../icons-test/bell' + + const meta: Meta = { + component: Bell, + title: 'outline/Bell', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellMinus.stories.tsx b/src/stories/BellMinus.stories.tsx new file mode 100644 index 00000000..14e20d1e --- /dev/null +++ b/src/stories/BellMinus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellMinus from '../icons-test/bell-minus' + + const meta: Meta = { + component: BellMinus, + title: 'outline/BellMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellOff.stories.tsx b/src/stories/BellOff.stories.tsx new file mode 100644 index 00000000..8e036ca8 --- /dev/null +++ b/src/stories/BellOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellOff from '../icons-test/bell-off' + + const meta: Meta = { + component: BellOff, + title: 'outline/BellOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellPlus.stories.tsx b/src/stories/BellPlus.stories.tsx new file mode 100644 index 00000000..0bf6abdc --- /dev/null +++ b/src/stories/BellPlus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellPlus from '../icons-test/bell-plus' + + const meta: Meta = { + component: BellPlus, + title: 'outline/BellPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellRinging.stories.tsx b/src/stories/BellRinging.stories.tsx new file mode 100644 index 00000000..13f6cc87 --- /dev/null +++ b/src/stories/BellRinging.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRinging from '../icons-test/bell-ringing' + + const meta: Meta = { + component: BellRinging, + title: 'outline/BellRinging', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellRinging2.stories.tsx b/src/stories/BellRinging2.stories.tsx new file mode 100644 index 00000000..5a45d866 --- /dev/null +++ b/src/stories/BellRinging2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRinging2 from '../icons-test/bell-ringing-2' + + const meta: Meta = { + component: BellRinging2, + title: 'outline/BellRinging2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellX.stories.tsx b/src/stories/BellX.stories.tsx new file mode 100644 index 00000000..7c2d7edf --- /dev/null +++ b/src/stories/BellX.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellX from '../icons-test/bell-x' + + const meta: Meta = { + component: BellX, + title: 'outline/BellX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandFacebook.stories.tsx b/src/stories/BrandFacebook.stories.tsx new file mode 100644 index 00000000..bc156e20 --- /dev/null +++ b/src/stories/BrandFacebook.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandFacebook from '../icons-test/brand-facebook' + + const meta: Meta = { + component: BrandFacebook, + title: 'outline/BrandFacebook', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandGithub.stories.tsx b/src/stories/BrandGithub.stories.tsx new file mode 100644 index 00000000..313e987e --- /dev/null +++ b/src/stories/BrandGithub.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandGithub from '../icons-test/brand-github' + + const meta: Meta = { + component: BrandGithub, + title: 'outline/BrandGithub', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandInstagram.stories.tsx b/src/stories/BrandInstagram.stories.tsx new file mode 100644 index 00000000..8fe6142a --- /dev/null +++ b/src/stories/BrandInstagram.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandInstagram from '../icons-test/brand-instagram' + + const meta: Meta = { + component: BrandInstagram, + title: 'outline/BrandInstagram', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandTwitter.stories.tsx b/src/stories/BrandTwitter.stories.tsx new file mode 100644 index 00000000..3e47106d --- /dev/null +++ b/src/stories/BrandTwitter.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandTwitter from '../icons-test/brand-twitter' + + const meta: Meta = { + component: BrandTwitter, + title: 'outline/BrandTwitter', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandWhatsapp.stories.tsx b/src/stories/BrandWhatsapp.stories.tsx new file mode 100644 index 00000000..33452d46 --- /dev/null +++ b/src/stories/BrandWhatsapp.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandWhatsapp from '../icons-test/brand-whatsapp' + + const meta: Meta = { + component: BrandWhatsapp, + title: 'outline/BrandWhatsapp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandYoutube.stories.tsx b/src/stories/BrandYoutube.stories.tsx new file mode 100644 index 00000000..859d6693 --- /dev/null +++ b/src/stories/BrandYoutube.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandYoutube from '../icons-test/brand-youtube' + + const meta: Meta = { + component: BrandYoutube, + title: 'outline/BrandYoutube', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Bulb.stories.tsx b/src/stories/Bulb.stories.tsx new file mode 100644 index 00000000..ba07528b --- /dev/null +++ b/src/stories/Bulb.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Bulb from '../icons-test/bulb' + + const meta: Meta = { + component: Bulb, + title: 'outline/Bulb', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BulbOff.stories.tsx b/src/stories/BulbOff.stories.tsx new file mode 100644 index 00000000..b555019c --- /dev/null +++ b/src/stories/BulbOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BulbOff from '../icons-test/bulb-off' + + const meta: Meta = { + component: BulbOff, + title: 'outline/BulbOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Check.stories.tsx b/src/stories/Check.stories.tsx new file mode 100644 index 00000000..5d966fcd --- /dev/null +++ b/src/stories/Check.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Check from '../icons-test/check' + + const meta: Meta = { + component: Check, + title: 'outline/Check', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckBoxEmpty.stories.tsx b/src/stories/CheckBoxEmpty.stories.tsx index a091308d..8d3f81e1 100644 --- a/src/stories/CheckBoxEmpty.stories.tsx +++ b/src/stories/CheckBoxEmpty.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CheckBoxEmpty from '../icons-test/check_box_empty' + import CheckBoxEmpty from '../icons-test/check-box-empty' const meta: Meta = { component: CheckBoxEmpty, - title: 'accent/CheckBoxEmpty', + title: 'mix/CheckBoxEmpty', decorators: [ (Story) => (
@@ -41,6 +41,12 @@ import type { Meta, StoryObj } from '@storybook/react' } + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + diff --git a/src/stories/CheckboxBlueAccent.stories.tsx b/src/stories/CheckboxBlueAccent.stories.tsx new file mode 100644 index 00000000..8c5d0587 --- /dev/null +++ b/src/stories/CheckboxBlueAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxBlueAccent from '../icons-test/checkbox-blue-accent' + + const meta: Meta = { + component: CheckboxBlueAccent, + title: 'accent/CheckboxBlueAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxGreenAccent.stories.tsx b/src/stories/CheckboxGreenAccent.stories.tsx new file mode 100644 index 00000000..446a1f4d --- /dev/null +++ b/src/stories/CheckboxGreenAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxGreenAccent from '../icons-test/checkbox-green-accent' + + const meta: Meta = { + component: CheckboxGreenAccent, + title: 'accent/CheckboxGreenAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxPartialBlueAccent.stories.tsx b/src/stories/CheckboxPartialBlueAccent.stories.tsx new file mode 100644 index 00000000..13329122 --- /dev/null +++ b/src/stories/CheckboxPartialBlueAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxPartialBlueAccent from '../icons-test/checkbox-partial-blue-accent' + + const meta: Meta = { + component: CheckboxPartialBlueAccent, + title: 'accent/CheckboxPartialBlueAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronDown.stories.tsx b/src/stories/ChevronDown.stories.tsx new file mode 100644 index 00000000..091f8577 --- /dev/null +++ b/src/stories/ChevronDown.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronDown from '../icons-test/chevron-down' + + const meta: Meta = { + component: ChevronDown, + title: 'outline/ChevronDown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronLeft.stories.tsx b/src/stories/ChevronLeft.stories.tsx new file mode 100644 index 00000000..c1d8b287 --- /dev/null +++ b/src/stories/ChevronLeft.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronLeft from '../icons-test/chevron-left' + + const meta: Meta = { + component: ChevronLeft, + title: 'outline/ChevronLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronRight.stories.tsx b/src/stories/ChevronRight.stories.tsx new file mode 100644 index 00000000..8afe6a2f --- /dev/null +++ b/src/stories/ChevronRight.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronRight from '../icons-test/chevron-right' + + const meta: Meta = { + component: ChevronRight, + title: 'outline/ChevronRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronUp.stories.tsx b/src/stories/ChevronUp.stories.tsx new file mode 100644 index 00000000..74c270da --- /dev/null +++ b/src/stories/ChevronUp.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronUp from '../icons-test/chevron-up' + + const meta: Meta = { + component: ChevronUp, + title: 'outline/ChevronUp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronsLeft.stories.tsx b/src/stories/ChevronsLeft.stories.tsx new file mode 100644 index 00000000..8c2c4502 --- /dev/null +++ b/src/stories/ChevronsLeft.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsLeft from '../icons-test/chevrons-left' + + const meta: Meta = { + component: ChevronsLeft, + title: 'outline/ChevronsLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronsRight.stories.tsx b/src/stories/ChevronsRight.stories.tsx new file mode 100644 index 00000000..e75d3cf0 --- /dev/null +++ b/src/stories/ChevronsRight.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsRight from '../icons-test/chevrons-right' + + const meta: Meta = { + component: ChevronsRight, + title: 'outline/ChevronsRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Circle.stories.tsx b/src/stories/Circle.stories.tsx new file mode 100644 index 00000000..9722c79e --- /dev/null +++ b/src/stories/Circle.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Circle from '../icons-test/circle' + + const meta: Meta = { + component: Circle, + title: 'outline/Circle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleCheck.stories.tsx b/src/stories/CircleCheck.stories.tsx new file mode 100644 index 00000000..3be993c8 --- /dev/null +++ b/src/stories/CircleCheck.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheck from '../icons-test/circle-check' + + const meta: Meta = { + component: CircleCheck, + title: 'outline/CircleCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleCheck2.stories.tsx b/src/stories/CircleCheck2.stories.tsx new file mode 100644 index 00000000..8ba8c671 --- /dev/null +++ b/src/stories/CircleCheck2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheck2 from '../icons-test/circle-check-2' + + const meta: Meta = { + component: CircleCheck2, + title: 'outline/CircleCheck2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleCrossAccent.stories.tsx b/src/stories/CircleCrossAccent.stories.tsx new file mode 100644 index 00000000..136bb9bf --- /dev/null +++ b/src/stories/CircleCrossAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCrossAccent from '../icons-test/circle-cross-accent' + + const meta: Meta = { + component: CircleCrossAccent, + title: 'accent/CircleCrossAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleFill.stories.tsx b/src/stories/CircleFill.stories.tsx new file mode 100644 index 00000000..524f32bb --- /dev/null +++ b/src/stories/CircleFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleFill from '../icons-test/circle-fill' + + const meta: Meta = { + component: CircleFill, + title: 'fill/CircleFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Clock.stories.tsx b/src/stories/Clock.stories.tsx new file mode 100644 index 00000000..09d83f1e --- /dev/null +++ b/src/stories/Clock.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Clock from '../icons-test/clock' + + const meta: Meta = { + component: Clock, + title: 'outline/Clock', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CloudUpload.stories.tsx b/src/stories/CloudUpload.stories.tsx new file mode 100644 index 00000000..b4b1f404 --- /dev/null +++ b/src/stories/CloudUpload.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CloudUpload from '../icons-test/cloud-upload' + + const meta: Meta = { + component: CloudUpload, + title: 'outline/CloudUpload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CloudUploadAccent.stories.tsx b/src/stories/CloudUploadAccent.stories.tsx new file mode 100644 index 00000000..1c82660e --- /dev/null +++ b/src/stories/CloudUploadAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CloudUploadAccent from '../icons-test/cloud-upload-accent' + + const meta: Meta = { + component: CloudUploadAccent, + title: 'accent/CloudUploadAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Collection.stories.tsx b/src/stories/Collection.stories.tsx new file mode 100644 index 00000000..fec9d623 --- /dev/null +++ b/src/stories/Collection.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Collection from '../icons-test/collection' + + const meta: Meta = { + component: Collection, + title: 'mix/Collection', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ColorSwatch.stories.tsx b/src/stories/ColorSwatch.stories.tsx new file mode 100644 index 00000000..8a7191d8 --- /dev/null +++ b/src/stories/ColorSwatch.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ColorSwatch from '../icons-test/color-swatch' + + const meta: Meta = { + component: ColorSwatch, + title: 'outline/ColorSwatch', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Confetti.stories.tsx b/src/stories/Confetti.stories.tsx new file mode 100644 index 00000000..6e05f821 --- /dev/null +++ b/src/stories/Confetti.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Confetti from '../icons-test/confetti' + + const meta: Meta = { + component: Confetti, + title: 'outline/Confetti', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Copy.stories.tsx b/src/stories/Copy.stories.tsx new file mode 100644 index 00000000..5d860149 --- /dev/null +++ b/src/stories/Copy.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Copy from '../icons-test/copy' + + const meta: Meta = { + component: Copy, + title: 'outline/Copy', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown.stories.tsx b/src/stories/Crown.stories.tsx new file mode 100644 index 00000000..ba97a38a --- /dev/null +++ b/src/stories/Crown.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Crown from '../icons-test/crown' + + const meta: Meta = { + component: Crown, + title: 'outline/Crown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown2Fill.stories.tsx b/src/stories/Crown2Fill.stories.tsx new file mode 100644 index 00000000..36804c8e --- /dev/null +++ b/src/stories/Crown2Fill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Crown2Fill from '../icons-test/crown-2-fill' + + const meta: Meta = { + component: Crown2Fill, + title: 'fill/Crown2Fill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CurrencyDollar.stories.tsx b/src/stories/CurrencyDollar.stories.tsx new file mode 100644 index 00000000..e058216a --- /dev/null +++ b/src/stories/CurrencyDollar.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrencyDollar from '../icons-test/currency-dollar' + + const meta: Meta = { + component: CurrencyDollar, + title: 'outline/CurrencyDollar', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CurrentLocation.stories.tsx b/src/stories/CurrentLocation.stories.tsx new file mode 100644 index 00000000..169e3e95 --- /dev/null +++ b/src/stories/CurrentLocation.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrentLocation from '../icons-test/current-location' + + const meta: Meta = { + component: CurrentLocation, + title: 'outline/CurrentLocation', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktop.stories.tsx b/src/stories/DeviceDesktop.stories.tsx new file mode 100644 index 00000000..a576b96a --- /dev/null +++ b/src/stories/DeviceDesktop.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktop from '../icons-test/device-desktop' + + const meta: Meta = { + component: DeviceDesktop, + title: 'outline/DeviceDesktop', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktopAnalytics.stories.tsx b/src/stories/DeviceDesktopAnalytics.stories.tsx new file mode 100644 index 00000000..c0576dd1 --- /dev/null +++ b/src/stories/DeviceDesktopAnalytics.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopAnalytics from '../icons-test/device-desktop-analytics' + + const meta: Meta = { + component: DeviceDesktopAnalytics, + title: 'outline/DeviceDesktopAnalytics', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktopOff.stories.tsx b/src/stories/DeviceDesktopOff.stories.tsx new file mode 100644 index 00000000..678e3cd8 --- /dev/null +++ b/src/stories/DeviceDesktopOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopOff from '../icons-test/device-desktop-off' + + const meta: Meta = { + component: DeviceDesktopOff, + title: 'outline/DeviceDesktopOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceLaptop.stories.tsx b/src/stories/DeviceLaptop.stories.tsx new file mode 100644 index 00000000..165a8038 --- /dev/null +++ b/src/stories/DeviceLaptop.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceLaptop from '../icons-test/device-laptop' + + const meta: Meta = { + component: DeviceLaptop, + title: 'outline/DeviceLaptop', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceTv.stories.tsx b/src/stories/DeviceTv.stories.tsx new file mode 100644 index 00000000..d9da0946 --- /dev/null +++ b/src/stories/DeviceTv.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceTv from '../icons-test/device-tv' + + const meta: Meta = { + component: DeviceTv, + title: 'outline/DeviceTv', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Diamond.stories.tsx b/src/stories/Diamond.stories.tsx new file mode 100644 index 00000000..a5a4ca90 --- /dev/null +++ b/src/stories/Diamond.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Diamond from '../icons-test/diamond' + + const meta: Meta = { + component: Diamond, + title: 'outline/Diamond', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Discount.stories.tsx b/src/stories/Discount.stories.tsx new file mode 100644 index 00000000..05f15ccf --- /dev/null +++ b/src/stories/Discount.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Discount from '../icons-test/discount' + + const meta: Meta = { + component: Discount, + title: 'outline/Discount', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Discount2.stories.tsx b/src/stories/Discount2.stories.tsx new file mode 100644 index 00000000..a8d063bc --- /dev/null +++ b/src/stories/Discount2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Discount2 from '../icons-test/discount-2' + + const meta: Meta = { + component: Discount2, + title: 'outline/Discount2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Disk.stories.tsx b/src/stories/Disk.stories.tsx new file mode 100644 index 00000000..293276ec --- /dev/null +++ b/src/stories/Disk.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Disk from '../icons-test/disk' + + const meta: Meta = { + component: Disk, + title: 'outline/Disk', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DotsVertical.stories.tsx b/src/stories/DotsVertical.stories.tsx new file mode 100644 index 00000000..b767663d --- /dev/null +++ b/src/stories/DotsVertical.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DotsVertical from '../icons-test/dots-vertical' + + const meta: Meta = { + component: DotsVertical, + title: 'outline/DotsVertical', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Download.stories.tsx b/src/stories/Download.stories.tsx new file mode 100644 index 00000000..dd8016e8 --- /dev/null +++ b/src/stories/Download.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Download from '../icons-test/download' + + const meta: Meta = { + component: Download, + title: 'outline/Download', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DownloadAccent.stories.tsx b/src/stories/DownloadAccent.stories.tsx new file mode 100644 index 00000000..b7649b08 --- /dev/null +++ b/src/stories/DownloadAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DownloadAccent from '../icons-test/download-accent' + + const meta: Meta = { + component: DownloadAccent, + title: 'accent/DownloadAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Edit.stories.tsx b/src/stories/Edit.stories.tsx new file mode 100644 index 00000000..b8517e1c --- /dev/null +++ b/src/stories/Edit.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Edit from '../icons-test/edit' + + const meta: Meta = { + component: Edit, + title: 'outline/Edit', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PlayDi.stories.tsx b/src/stories/EditIcon.stories.tsx similarity index 89% rename from src/stories/PlayDi.stories.tsx rename to src/stories/EditIcon.stories.tsx index 56979c1a..2f18191f 100644 --- a/src/stories/PlayDi.stories.tsx +++ b/src/stories/EditIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import PlayDi from '../icons-test/play-di' + import EditIcon from '../icons-test/edit-icon' - const meta: Meta = { - component: PlayDi, - title: 'accent/PlayDi', + const meta: Meta = { + component: EditIcon, + title: 'logo/EditIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ExternalLink.stories.tsx b/src/stories/ExternalLink.stories.tsx new file mode 100644 index 00000000..f88b8a22 --- /dev/null +++ b/src/stories/ExternalLink.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ExternalLink from '../icons-test/external-link' + + const meta: Meta = { + component: ExternalLink, + title: 'outline/ExternalLink', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Eye.stories.tsx b/src/stories/Eye.stories.tsx new file mode 100644 index 00000000..cdbdf64c --- /dev/null +++ b/src/stories/Eye.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Eye from '../icons-test/eye' + + const meta: Meta = { + component: Eye, + title: 'outline/Eye', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/EyeCheck.stories.tsx b/src/stories/EyeCheck.stories.tsx new file mode 100644 index 00000000..e64bee02 --- /dev/null +++ b/src/stories/EyeCheck.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeCheck from '../icons-test/eye-check' + + const meta: Meta = { + component: EyeCheck, + title: 'outline/EyeCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/EyeOff.stories.tsx b/src/stories/EyeOff.stories.tsx new file mode 100644 index 00000000..ab593823 --- /dev/null +++ b/src/stories/EyeOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeOff from '../icons-test/eye-off' + + const meta: Meta = { + component: EyeOff, + title: 'outline/EyeOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Facebook.stories.tsx b/src/stories/Facebook.stories.tsx new file mode 100644 index 00000000..81b7fbd3 --- /dev/null +++ b/src/stories/Facebook.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Facebook from '../icons-test/facebook' + + const meta: Meta = { + component: Facebook, + title: 'fill/Facebook', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileDownload.stories.tsx b/src/stories/FileDownload.stories.tsx new file mode 100644 index 00000000..e01fedef --- /dev/null +++ b/src/stories/FileDownload.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileDownload from '../icons-test/file-download' + + const meta: Meta = { + component: FileDownload, + title: 'outline/FileDownload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileExport.stories.tsx b/src/stories/FileExport.stories.tsx new file mode 100644 index 00000000..71466141 --- /dev/null +++ b/src/stories/FileExport.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileExport from '../icons-test/file-export' + + const meta: Meta = { + component: FileExport, + title: 'outline/FileExport', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileReport.stories.tsx b/src/stories/FileReport.stories.tsx new file mode 100644 index 00000000..3642b5a6 --- /dev/null +++ b/src/stories/FileReport.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileReport from '../icons-test/file-report' + + const meta: Meta = { + component: FileReport, + title: 'outline/FileReport', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileSearch.stories.tsx b/src/stories/FileSearch.stories.tsx new file mode 100644 index 00000000..441b2188 --- /dev/null +++ b/src/stories/FileSearch.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileSearch from '../icons-test/file-search' + + const meta: Meta = { + component: FileSearch, + title: 'outline/FileSearch', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Filter.stories.tsx b/src/stories/Filter.stories.tsx new file mode 100644 index 00000000..7f241ece --- /dev/null +++ b/src/stories/Filter.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Filter from '../icons-test/filter' + + const meta: Meta = { + component: Filter, + title: 'outline/Filter', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FilterOff.stories.tsx b/src/stories/FilterOff.stories.tsx new file mode 100644 index 00000000..04c47312 --- /dev/null +++ b/src/stories/FilterOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FilterOff from '../icons-test/filter-off' + + const meta: Meta = { + component: FilterOff, + title: 'outline/FilterOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Flag.stories.tsx b/src/stories/Flag.stories.tsx new file mode 100644 index 00000000..fa6f23f4 --- /dev/null +++ b/src/stories/Flag.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Flag from '../icons-test/flag' + + const meta: Meta = { + component: Flag, + title: 'outline/Flag', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FlagFill.stories.tsx b/src/stories/FlagFill.stories.tsx new file mode 100644 index 00000000..ba3d11b1 --- /dev/null +++ b/src/stories/FlagFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagFill from '../icons-test/flag-fill' + + const meta: Meta = { + component: FlagFill, + title: 'mix/FlagFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FlagOff.stories.tsx b/src/stories/FlagOff.stories.tsx new file mode 100644 index 00000000..a3021319 --- /dev/null +++ b/src/stories/FlagOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagOff from '../icons-test/flag-off' + + const meta: Meta = { + component: FlagOff, + title: 'outline/FlagOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Folder.stories.tsx b/src/stories/Folder.stories.tsx new file mode 100644 index 00000000..42f86c1f --- /dev/null +++ b/src/stories/Folder.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Folder from '../icons-test/folder' + + const meta: Meta = { + component: Folder, + title: 'outline/Folder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderDownload.stories.tsx b/src/stories/FolderDownload.stories.tsx new file mode 100644 index 00000000..357b05f2 --- /dev/null +++ b/src/stories/FolderDownload.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderDownload from '../icons-test/folder-download' + + const meta: Meta = { + component: FolderDownload, + title: 'outline/FolderDownload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderEye.stories.tsx b/src/stories/FolderEye.stories.tsx new file mode 100644 index 00000000..c2e07f34 --- /dev/null +++ b/src/stories/FolderEye.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderEye from '../icons-test/folder-eye' + + const meta: Meta = { + component: FolderEye, + title: 'outline/FolderEye', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderFill.stories.tsx b/src/stories/FolderFill.stories.tsx new file mode 100644 index 00000000..45573514 --- /dev/null +++ b/src/stories/FolderFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderFill from '../icons-test/folder-fill' + + const meta: Meta = { + component: FolderFill, + title: 'no-change/FolderFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderMinus.stories.tsx b/src/stories/FolderMinus.stories.tsx new file mode 100644 index 00000000..73e481ac --- /dev/null +++ b/src/stories/FolderMinus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderMinus from '../icons-test/folder-minus' + + const meta: Meta = { + component: FolderMinus, + title: 'outline/FolderMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderOff.stories.tsx b/src/stories/FolderOff.stories.tsx new file mode 100644 index 00000000..ff19638d --- /dev/null +++ b/src/stories/FolderOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderOff from '../icons-test/folder-off' + + const meta: Meta = { + component: FolderOff, + title: 'outline/FolderOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderPlus.stories.tsx b/src/stories/FolderPlus.stories.tsx new file mode 100644 index 00000000..0d20accb --- /dev/null +++ b/src/stories/FolderPlus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderPlus from '../icons-test/folder-plus' + + const meta: Meta = { + component: FolderPlus, + title: 'outline/FolderPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderUpload.stories.tsx b/src/stories/FolderUpload.stories.tsx new file mode 100644 index 00000000..9bed0e2f --- /dev/null +++ b/src/stories/FolderUpload.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderUpload from '../icons-test/folder-upload' + + const meta: Meta = { + component: FolderUpload, + title: 'outline/FolderUpload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderX.stories.tsx b/src/stories/FolderX.stories.tsx new file mode 100644 index 00000000..db677d3c --- /dev/null +++ b/src/stories/FolderX.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderX from '../icons-test/folder-x' + + const meta: Meta = { + component: FolderX, + title: 'outline/FolderX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Folders.stories.tsx b/src/stories/Folders.stories.tsx new file mode 100644 index 00000000..5a7b2d3a --- /dev/null +++ b/src/stories/Folders.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Folders from '../icons-test/folders' + + const meta: Meta = { + component: Folders, + title: 'outline/Folders', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GoogleColor.stories.tsx b/src/stories/GoogleColor.stories.tsx new file mode 100644 index 00000000..936d49fa --- /dev/null +++ b/src/stories/GoogleColor.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GoogleColor from '../icons-test/google-color' + + const meta: Meta = { + component: GoogleColor, + title: 'logo/GoogleColor', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GrabHand.stories.tsx b/src/stories/GrabHand.stories.tsx new file mode 100644 index 00000000..760fba7d --- /dev/null +++ b/src/stories/GrabHand.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GrabHand from '../icons-test/grab-hand' + + const meta: Meta = { + component: GrabHand, + title: 'logo/GrabHand', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridDots.stories.tsx b/src/stories/GridDots.stories.tsx new file mode 100644 index 00000000..f647c48c --- /dev/null +++ b/src/stories/GridDots.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridDots from '../icons-test/grid-dots' + + const meta: Meta = { + component: GridDots, + title: 'outline/GridDots', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridView1.stories.tsx b/src/stories/GridView1.stories.tsx new file mode 100644 index 00000000..0c06c27f --- /dev/null +++ b/src/stories/GridView1.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView1 from '../icons-test/grid-view-1' + + const meta: Meta = { + component: GridView1, + title: 'fill/GridView1', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridView2.stories.tsx b/src/stories/GridView2.stories.tsx new file mode 100644 index 00000000..f5e1a31d --- /dev/null +++ b/src/stories/GridView2.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView2 from '../icons-test/grid-view-2' + + const meta: Meta = { + component: GridView2, + title: 'fill/GridView2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Home2.stories.tsx b/src/stories/Home2.stories.tsx new file mode 100644 index 00000000..59b63fe2 --- /dev/null +++ b/src/stories/Home2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Home2 from '../icons-test/home-2' + + const meta: Meta = { + component: Home2, + title: 'outline/Home2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/HomeMix.stories.tsx b/src/stories/HomeMix.stories.tsx new file mode 100644 index 00000000..1e8d663a --- /dev/null +++ b/src/stories/HomeMix.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import HomeMix from '../icons-test/home-mix' + + const meta: Meta = { + component: HomeMix, + title: 'no-change/HomeMix', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ImageBorder.stories.tsx b/src/stories/ImageBorder.stories.tsx new file mode 100644 index 00000000..22729ada --- /dev/null +++ b/src/stories/ImageBorder.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ImageBorder from '../icons-test/image-border' + + const meta: Meta = { + component: ImageBorder, + title: 'mix/ImageBorder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Import.stories.tsx b/src/stories/Import.stories.tsx new file mode 100644 index 00000000..62382af2 --- /dev/null +++ b/src/stories/Import.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Import from '../icons-test/Import' + + const meta: Meta = { + component: Import, + title: 'outline/Import', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Info.stories.tsx b/src/stories/Info.stories.tsx new file mode 100644 index 00000000..80f5c137 --- /dev/null +++ b/src/stories/Info.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Info from '../icons-test/info' + + const meta: Meta = { + component: Info, + title: 'outline/Info', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoCircle.stories.tsx b/src/stories/InfoCircle.stories.tsx new file mode 100644 index 00000000..3252d804 --- /dev/null +++ b/src/stories/InfoCircle.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCircle from '../icons-test/info-circle' + + const meta: Meta = { + component: InfoCircle, + title: 'outline/InfoCircle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoCirlce2.stories.tsx b/src/stories/InfoCirlce2.stories.tsx new file mode 100644 index 00000000..26064abe --- /dev/null +++ b/src/stories/InfoCirlce2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCirlce2 from '../icons-test/info-cirlce-2' + + const meta: Meta = { + component: InfoCirlce2, + title: 'outline/InfoCirlce2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoSquare.stories.tsx b/src/stories/InfoSquare.stories.tsx new file mode 100644 index 00000000..cf312b69 --- /dev/null +++ b/src/stories/InfoSquare.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoSquare from '../icons-test/info-square' + + const meta: Meta = { + component: InfoSquare, + title: 'outline/InfoSquare', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Key.stories.tsx b/src/stories/Key.stories.tsx new file mode 100644 index 00000000..6e5e0208 --- /dev/null +++ b/src/stories/Key.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Key from '../icons-test/key' + + const meta: Meta = { + component: Key, + title: 'outline/Key', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Key2.stories.tsx b/src/stories/Key2.stories.tsx new file mode 100644 index 00000000..645acc83 --- /dev/null +++ b/src/stories/Key2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Key2 from '../icons-test/key-2' + + const meta: Meta = { + component: Key2, + title: 'outline/Key2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/KeyDuplicate.stories.tsx b/src/stories/KeyDuplicate.stories.tsx new file mode 100644 index 00000000..aedf9916 --- /dev/null +++ b/src/stories/KeyDuplicate.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import KeyDuplicate from '../icons-test/key-duplicate' + + const meta: Meta = { + component: KeyDuplicate, + title: 'outline/KeyDuplicate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LayoutSidebarRightMix.stories.tsx b/src/stories/LayoutSidebarRightMix.stories.tsx new file mode 100644 index 00000000..5fa5eef4 --- /dev/null +++ b/src/stories/LayoutSidebarRightMix.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LayoutSidebarRightMix from '../icons-test/layout-sidebar-right-mix' + + const meta: Meta = { + component: LayoutSidebarRightMix, + title: 'no-change/LayoutSidebarRightMix', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Link.stories.tsx b/src/stories/Link.stories.tsx new file mode 100644 index 00000000..d30cab5d --- /dev/null +++ b/src/stories/Link.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Link from '../icons-test/link' + + const meta: Meta = { + component: Link, + title: 'outline/Link', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ListFill.stories.tsx b/src/stories/ListFill.stories.tsx new file mode 100644 index 00000000..318f121f --- /dev/null +++ b/src/stories/ListFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ListFill from '../icons-test/list-fill' + + const meta: Meta = { + component: ListFill, + title: 'fill/ListFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Loader.stories.tsx b/src/stories/Loader.stories.tsx new file mode 100644 index 00000000..76332ef2 --- /dev/null +++ b/src/stories/Loader.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Loader from '../icons-test/loader' + + const meta: Meta = { + component: Loader, + title: 'outline/Loader', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Lock.stories.tsx b/src/stories/Lock.stories.tsx new file mode 100644 index 00000000..5a2cfefd --- /dev/null +++ b/src/stories/Lock.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Lock from '../icons-test/lock' + + const meta: Meta = { + component: Lock, + title: 'outline/Lock', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Lock2.stories.tsx b/src/stories/Lock2.stories.tsx new file mode 100644 index 00000000..ed8a6cdc --- /dev/null +++ b/src/stories/Lock2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Lock2 from '../icons-test/lock-2' + + const meta: Meta = { + component: Lock2, + title: 'outline/Lock2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LockOff.stories.tsx b/src/stories/LockOff.stories.tsx new file mode 100644 index 00000000..1199f255 --- /dev/null +++ b/src/stories/LockOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOff from '../icons-test/lock-off' + + const meta: Meta = { + component: LockOff, + title: 'outline/LockOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LockOpen.stories.tsx b/src/stories/LockOpen.stories.tsx new file mode 100644 index 00000000..1cdefd68 --- /dev/null +++ b/src/stories/LockOpen.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOpen from '../icons-test/lock-open' + + const meta: Meta = { + component: LockOpen, + title: 'outline/LockOpen', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Loop.stories.tsx b/src/stories/Loop.stories.tsx new file mode 100644 index 00000000..3b0419a7 --- /dev/null +++ b/src/stories/Loop.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Loop from '../icons-test/loop' + + const meta: Meta = { + component: Loop, + title: 'outline/Loop', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LoupeFill.stories.tsx b/src/stories/LoupeFill.stories.tsx new file mode 100644 index 00000000..7dda4f4b --- /dev/null +++ b/src/stories/LoupeFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoupeFill from '../icons-test/loupe-fill' + + const meta: Meta = { + component: LoupeFill, + title: 'fill/LoupeFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Mail.stories.tsx b/src/stories/Mail.stories.tsx new file mode 100644 index 00000000..13069b48 --- /dev/null +++ b/src/stories/Mail.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Mail from '../icons-test/mail' + + const meta: Meta = { + component: Mail, + title: 'outline/Mail', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Map2.stories.tsx b/src/stories/Map2.stories.tsx new file mode 100644 index 00000000..18781710 --- /dev/null +++ b/src/stories/Map2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Map2 from '../icons-test/map-2' + + const meta: Meta = { + component: Map2, + title: 'outline/Map2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MapPin.stories.tsx b/src/stories/MapPin.stories.tsx new file mode 100644 index 00000000..a474d035 --- /dev/null +++ b/src/stories/MapPin.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPin from '../icons-test/map-pin' + + const meta: Meta = { + component: MapPin, + title: 'outline/MapPin', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MapPinOff.stories.tsx b/src/stories/MapPinOff.stories.tsx new file mode 100644 index 00000000..5b85b18f --- /dev/null +++ b/src/stories/MapPinOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPinOff from '../icons-test/map-pin-off' + + const meta: Meta = { + component: MapPinOff, + title: 'outline/MapPinOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Minus.stories.tsx b/src/stories/Minus.stories.tsx new file mode 100644 index 00000000..c59afe80 --- /dev/null +++ b/src/stories/Minus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Minus from '../icons-test/minus' + + const meta: Meta = { + component: Minus, + title: 'outline/Minus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Mood.stories.tsx b/src/stories/Mood.stories.tsx new file mode 100644 index 00000000..f971aa7e --- /dev/null +++ b/src/stories/Mood.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Mood from '../icons-test/mood' + + const meta: Meta = { + component: Mood, + title: 'no-change/Mood', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodCrazyHappy.stories.tsx b/src/stories/MoodCrazyHappy.stories.tsx new file mode 100644 index 00000000..d663226e --- /dev/null +++ b/src/stories/MoodCrazyHappy.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodCrazyHappy from '../icons-test/mood-crazy-happy' + + const meta: Meta = { + component: MoodCrazyHappy, + title: 'outline/MoodCrazyHappy', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodEmpty.stories.tsx b/src/stories/MoodEmpty.stories.tsx new file mode 100644 index 00000000..8077e9d8 --- /dev/null +++ b/src/stories/MoodEmpty.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodEmpty from '../icons-test/mood-empty' + + const meta: Meta = { + component: MoodEmpty, + title: 'outline/MoodEmpty', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodGray.stories.tsx b/src/stories/MoodGray.stories.tsx new file mode 100644 index 00000000..4076087a --- /dev/null +++ b/src/stories/MoodGray.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodGray from '../icons-test/mood-gray' + + const meta: Meta = { + component: MoodGray, + title: 'no-change/MoodGray', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodSad.stories.tsx b/src/stories/MoodSad.stories.tsx new file mode 100644 index 00000000..c16f9683 --- /dev/null +++ b/src/stories/MoodSad.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSad from '../icons-test/mood-sad' + + const meta: Meta = { + component: MoodSad, + title: 'outline/MoodSad', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodSmile.stories.tsx b/src/stories/MoodSmile.stories.tsx new file mode 100644 index 00000000..34f32f8d --- /dev/null +++ b/src/stories/MoodSmile.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSmile from '../icons-test/mood-smile' + + const meta: Meta = { + component: MoodSmile, + title: 'outline/MoodSmile', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseLeft.stories.tsx b/src/stories/MouseLeft.stories.tsx new file mode 100644 index 00000000..3473c310 --- /dev/null +++ b/src/stories/MouseLeft.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseLeft from '../icons-test/mouse-left' + + const meta: Meta = { + component: MouseLeft, + title: 'outline/MouseLeft', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseLeft2.stories.tsx b/src/stories/MouseLeft2.stories.tsx new file mode 100644 index 00000000..ba3ab375 --- /dev/null +++ b/src/stories/MouseLeft2.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseLeft2 from '../icons-test/mouse-left-2' + + const meta: Meta = { + component: MouseLeft2, + title: 'no-change/MouseLeft2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseRight.stories.tsx b/src/stories/MouseRight.stories.tsx new file mode 100644 index 00000000..05bf1f7b --- /dev/null +++ b/src/stories/MouseRight.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseRight from '../icons-test/mouse-right' + + const meta: Meta = { + component: MouseRight, + title: 'outline/MouseRight', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/NoDuplicate.stories.tsx b/src/stories/NoDuplicate.stories.tsx index a82236a7..c4f904b1 100644 --- a/src/stories/NoDuplicate.stories.tsx +++ b/src/stories/NoDuplicate.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: NoDuplicate, - title: 'accent/NoDuplicate', + title: 'outline/NoDuplicate', decorators: [ (Story) => (
@@ -33,13 +33,12 @@ import type { Meta, StoryObj } from '@storybook/react' export const Default: Story = {} - + export const Color: Story = { args: { - className: 'text-red-500', - }, + color: 'red', + }, } - diff --git a/src/stories/NoneSelected.stories.tsx b/src/stories/NoneSelected.stories.tsx new file mode 100644 index 00000000..234069cb --- /dev/null +++ b/src/stories/NoneSelected.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoneSelected from '../icons-test/none-selected' + + const meta: Meta = { + component: NoneSelected, + title: 'mix/NoneSelected', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Palette.stories.tsx b/src/stories/Palette.stories.tsx new file mode 100644 index 00000000..4654d81e --- /dev/null +++ b/src/stories/Palette.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Palette from '../icons-test/palette' + + const meta: Meta = { + component: Palette, + title: 'outline/Palette', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PaletteFill.stories.tsx b/src/stories/PaletteFill.stories.tsx new file mode 100644 index 00000000..6e32bc53 --- /dev/null +++ b/src/stories/PaletteFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PaletteFill from '../icons-test/palette-fill' + + const meta: Meta = { + component: PaletteFill, + title: 'fill/PaletteFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PauseFill.stories.tsx b/src/stories/PauseFill.stories.tsx new file mode 100644 index 00000000..481a88a4 --- /dev/null +++ b/src/stories/PauseFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PauseFill from '../icons-test/pause-fill' + + const meta: Meta = { + component: PauseFill, + title: 'fill/PauseFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Photo.stories.tsx b/src/stories/Photo.stories.tsx new file mode 100644 index 00000000..5298fa32 --- /dev/null +++ b/src/stories/Photo.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Photo from '../icons-test/photo' + + const meta: Meta = { + component: Photo, + title: 'outline/Photo', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoOff.stories.tsx b/src/stories/PhotoOff.stories.tsx new file mode 100644 index 00000000..e7a4911d --- /dev/null +++ b/src/stories/PhotoOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOff from '../icons-test/photo-off' + + const meta: Meta = { + component: PhotoOff, + title: 'outline/PhotoOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoOff2.stories.tsx b/src/stories/PhotoOff2.stories.tsx new file mode 100644 index 00000000..5f0ff300 --- /dev/null +++ b/src/stories/PhotoOff2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOff2 from '../icons-test/photo-off-2' + + const meta: Meta = { + component: PhotoOff2, + title: 'outline/PhotoOff2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoStack.stories.tsx b/src/stories/PhotoStack.stories.tsx new file mode 100644 index 00000000..4fb308a4 --- /dev/null +++ b/src/stories/PhotoStack.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoStack from '../icons-test/photo-stack' + + const meta: Meta = { + component: PhotoStack, + title: 'outline/PhotoStack', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Pinned.stories.tsx b/src/stories/Pinned.stories.tsx new file mode 100644 index 00000000..58f3a046 --- /dev/null +++ b/src/stories/Pinned.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Pinned from '../icons-test/pinned' + + const meta: Meta = { + component: Pinned, + title: 'outline/Pinned', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Play.stories.tsx b/src/stories/Play.stories.tsx new file mode 100644 index 00000000..8ba8dc28 --- /dev/null +++ b/src/stories/Play.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Play from '../icons-test/play' + + const meta: Meta = { + component: Play, + title: 'mix/Play', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PlayFill.stories.tsx b/src/stories/PlayFill.stories.tsx new file mode 100644 index 00000000..2b8609b7 --- /dev/null +++ b/src/stories/PlayFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PlayFill from '../icons-test/play-fill' + + const meta: Meta = { + component: PlayFill, + title: 'fill/PlayFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AtomDi.stories.tsx b/src/stories/Player.stories.tsx similarity index 89% rename from src/stories/AtomDi.stories.tsx rename to src/stories/Player.stories.tsx index 5f8ef7db..633f1854 100644 --- a/src/stories/AtomDi.stories.tsx +++ b/src/stories/Player.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AtomDi from '../icons-test/atom-di' + import Player from '../icons-test/player' - const meta: Meta = { - component: AtomDi, - title: 'accent/AtomDi', + const meta: Meta = { + component: Player, + title: 'accent/Player', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Plus.stories.tsx b/src/stories/Plus.stories.tsx new file mode 100644 index 00000000..de45456f --- /dev/null +++ b/src/stories/Plus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Plus from '../icons-test/plus' + + const meta: Meta = { + component: Plus, + title: 'outline/Plus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/QuestionMark.stories.tsx b/src/stories/QuestionMark.stories.tsx new file mode 100644 index 00000000..e66c7a87 --- /dev/null +++ b/src/stories/QuestionMark.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import QuestionMark from '../icons-test/question-mark' + + const meta: Meta = { + component: QuestionMark, + title: 'outline/QuestionMark', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Recull.stories.tsx b/src/stories/Recull.stories.tsx new file mode 100644 index 00000000..f028ff4c --- /dev/null +++ b/src/stories/Recull.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Recull from '../icons-test/recull' + + const meta: Meta = { + component: Recull, + title: 'no-change/Recull', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Redeem.stories.tsx b/src/stories/Redeem.stories.tsx new file mode 100644 index 00000000..a22cdf78 --- /dev/null +++ b/src/stories/Redeem.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Redeem from '../icons-test/redeem' + + const meta: Meta = { + component: Redeem, + title: 'outline/Redeem', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Refresh.stories.tsx b/src/stories/Refresh.stories.tsx new file mode 100644 index 00000000..32728532 --- /dev/null +++ b/src/stories/Refresh.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Refresh from '../icons-test/refresh' + + const meta: Meta = { + component: Refresh, + title: 'outline/Refresh', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Refresh2.stories.tsx b/src/stories/Refresh2.stories.tsx new file mode 100644 index 00000000..569ec97b --- /dev/null +++ b/src/stories/Refresh2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Refresh2 from '../icons-test/refresh-2' + + const meta: Meta = { + component: Refresh2, + title: 'outline/Refresh2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RefreshAlert.stories.tsx b/src/stories/RefreshAlert.stories.tsx new file mode 100644 index 00000000..a317a0ee --- /dev/null +++ b/src/stories/RefreshAlert.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RefreshAlert from '../icons-test/refresh-alert' + + const meta: Meta = { + component: RefreshAlert, + title: 'outline/RefreshAlert', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ReloadAlert.stories.tsx b/src/stories/ReloadAlert.stories.tsx new file mode 100644 index 00000000..934ec516 --- /dev/null +++ b/src/stories/ReloadAlert.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ReloadAlert from '../icons-test/reload-alert' + + const meta: Meta = { + component: ReloadAlert, + title: 'outline/ReloadAlert', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Rotate.stories.tsx b/src/stories/Rotate.stories.tsx new file mode 100644 index 00000000..81ca3608 --- /dev/null +++ b/src/stories/Rotate.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Rotate from '../icons-test/rotate' + + const meta: Meta = { + component: Rotate, + title: 'outline/Rotate', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RotateClockwise.stories.tsx b/src/stories/RotateClockwise.stories.tsx new file mode 100644 index 00000000..bf7f0c38 --- /dev/null +++ b/src/stories/RotateClockwise.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateClockwise from '../icons-test/rotate-clockwise' + + const meta: Meta = { + component: RotateClockwise, + title: 'outline/RotateClockwise', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Scissors.stories.tsx b/src/stories/Scissors.stories.tsx new file mode 100644 index 00000000..aff5275b --- /dev/null +++ b/src/stories/Scissors.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Scissors from '../icons-test/scissors' + + const meta: Meta = { + component: Scissors, + title: 'no-change/Scissors', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Search.stories.tsx b/src/stories/Search.stories.tsx new file mode 100644 index 00000000..f7a0f936 --- /dev/null +++ b/src/stories/Search.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Search from '../icons-test/search' + + const meta: Meta = { + component: Search, + title: 'outline/Search', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Share.stories.tsx b/src/stories/Share.stories.tsx new file mode 100644 index 00000000..90f91400 --- /dev/null +++ b/src/stories/Share.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Share from '../icons-test/share' + + const meta: Meta = { + component: Share, + title: 'outline/Share', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ShoppingCart.stories.tsx b/src/stories/ShoppingCart.stories.tsx new file mode 100644 index 00000000..4e761628 --- /dev/null +++ b/src/stories/ShoppingCart.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShoppingCart from '../icons-test/shopping-cart' + + const meta: Meta = { + component: ShoppingCart, + title: 'outline/ShoppingCart', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ShoppingCartDiscount.stories.tsx b/src/stories/ShoppingCartDiscount.stories.tsx new file mode 100644 index 00000000..ad4a0d9b --- /dev/null +++ b/src/stories/ShoppingCartDiscount.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShoppingCartDiscount from '../icons-test/shopping-cart-discount' + + const meta: Meta = { + component: ShoppingCartDiscount, + title: 'outline/ShoppingCartDiscount', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscending.stories.tsx b/src/stories/SortAscending.stories.tsx new file mode 100644 index 00000000..7ee75919 --- /dev/null +++ b/src/stories/SortAscending.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscending from '../icons-test/sort-ascending' + + const meta: Meta = { + component: SortAscending, + title: 'outline/SortAscending', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscending2.stories.tsx b/src/stories/SortAscending2.stories.tsx new file mode 100644 index 00000000..8e318934 --- /dev/null +++ b/src/stories/SortAscending2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscending2 from '../icons-test/sort-ascending-2' + + const meta: Meta = { + component: SortAscending2, + title: 'outline/SortAscending2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscendingLetters.stories.tsx b/src/stories/SortAscendingLetters.stories.tsx new file mode 100644 index 00000000..2ceeb320 --- /dev/null +++ b/src/stories/SortAscendingLetters.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingLetters from '../icons-test/sort-ascending-letters' + + const meta: Meta = { + component: SortAscendingLetters, + title: 'outline/SortAscendingLetters', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscendingNumbers.stories.tsx b/src/stories/SortAscendingNumbers.stories.tsx new file mode 100644 index 00000000..600bb35b --- /dev/null +++ b/src/stories/SortAscendingNumbers.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingNumbers from '../icons-test/sort-ascending-numbers' + + const meta: Meta = { + component: SortAscendingNumbers, + title: 'outline/SortAscendingNumbers', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescending.stories.tsx b/src/stories/SortDescending.stories.tsx new file mode 100644 index 00000000..1aeed2cc --- /dev/null +++ b/src/stories/SortDescending.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescending from '../icons-test/sort-descending' + + const meta: Meta = { + component: SortDescending, + title: 'outline/SortDescending', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescending2.stories.tsx b/src/stories/SortDescending2.stories.tsx new file mode 100644 index 00000000..848b4b3a --- /dev/null +++ b/src/stories/SortDescending2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescending2 from '../icons-test/sort-descending-2' + + const meta: Meta = { + component: SortDescending2, + title: 'outline/SortDescending2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescendingLetters.stories.tsx b/src/stories/SortDescendingLetters.stories.tsx new file mode 100644 index 00000000..2e727b46 --- /dev/null +++ b/src/stories/SortDescendingLetters.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingLetters from '../icons-test/sort-descending-letters' + + const meta: Meta = { + component: SortDescendingLetters, + title: 'outline/SortDescendingLetters', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescendingNumbers.stories.tsx b/src/stories/SortDescendingNumbers.stories.tsx new file mode 100644 index 00000000..a985cf9d --- /dev/null +++ b/src/stories/SortDescendingNumbers.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingNumbers from '../icons-test/sort-descending-numbers' + + const meta: Meta = { + component: SortDescendingNumbers, + title: 'outline/SortDescendingNumbers', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Sparkle.stories.tsx b/src/stories/Sparkle.stories.tsx new file mode 100644 index 00000000..1562efeb --- /dev/null +++ b/src/stories/Sparkle.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Sparkle from '../icons-test/sparkle' + + const meta: Meta = { + component: Sparkle, + title: 'mix/Sparkle', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Spray.stories.tsx b/src/stories/Spray.stories.tsx new file mode 100644 index 00000000..d7c98b68 --- /dev/null +++ b/src/stories/Spray.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Spray from '../icons-test/spray' + + const meta: Meta = { + component: Spray, + title: 'outline/Spray', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Spray2.stories.tsx b/src/stories/Spray2.stories.tsx new file mode 100644 index 00000000..59e3d4b5 --- /dev/null +++ b/src/stories/Spray2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Spray2 from '../icons-test/spray_2' + + const meta: Meta = { + component: Spray2, + title: 'outline/Spray2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StackDouble.stories.tsx b/src/stories/StackDouble.stories.tsx new file mode 100644 index 00000000..13f50aad --- /dev/null +++ b/src/stories/StackDouble.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackDouble from '../icons-test/stack-double' + + const meta: Meta = { + component: StackDouble, + title: 'outline/StackDouble', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StackTriple.stories.tsx b/src/stories/StackTriple.stories.tsx new file mode 100644 index 00000000..5d6333ee --- /dev/null +++ b/src/stories/StackTriple.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackTriple from '../icons-test/stack-triple' + + const meta: Meta = { + component: StackTriple, + title: 'outline/StackTriple', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star.stories.tsx b/src/stories/Star.stories.tsx new file mode 100644 index 00000000..e6067dc6 --- /dev/null +++ b/src/stories/Star.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star from '../icons-test/star' + + const meta: Meta = { + component: Star, + title: 'outline/Star', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarFill.stories.tsx b/src/stories/StarFill.stories.tsx new file mode 100644 index 00000000..5568be78 --- /dev/null +++ b/src/stories/StarFill.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarFill from '../icons-test/star-fill' + + const meta: Meta = { + component: StarFill, + title: 'mix/StarFill', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarFillOff.stories.tsx b/src/stories/StarFillOff.stories.tsx new file mode 100644 index 00000000..7d5fff20 --- /dev/null +++ b/src/stories/StarFillOff.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarFillOff from '../icons-test/star-fill-off' + + const meta: Meta = { + component: StarFillOff, + title: 'no-change/StarFillOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarOff.stories.tsx b/src/stories/StarOff.stories.tsx new file mode 100644 index 00000000..a82985b8 --- /dev/null +++ b/src/stories/StarOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarOff from '../icons-test/star-off' + + const meta: Meta = { + component: StarOff, + title: 'outline/StarOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ThumbDown.stories.tsx b/src/stories/ThumbDown.stories.tsx new file mode 100644 index 00000000..141ecae2 --- /dev/null +++ b/src/stories/ThumbDown.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbDown from '../icons-test/thumb-down' + + const meta: Meta = { + component: ThumbDown, + title: 'outline/ThumbDown', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ThumbUp.stories.tsx b/src/stories/ThumbUp.stories.tsx new file mode 100644 index 00000000..60872e72 --- /dev/null +++ b/src/stories/ThumbUp.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbUp from '../icons-test/thumb-up' + + const meta: Meta = { + component: ThumbUp, + title: 'outline/ThumbUp', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Trash.stories.tsx b/src/stories/Trash.stories.tsx new file mode 100644 index 00000000..ce002d26 --- /dev/null +++ b/src/stories/Trash.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Trash from '../icons-test/trash' + + const meta: Meta = { + component: Trash, + title: 'outline/Trash', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/TrashOff.stories.tsx b/src/stories/TrashOff.stories.tsx new file mode 100644 index 00000000..ce1bc435 --- /dev/null +++ b/src/stories/TrashOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TrashOff from '../icons-test/trash-off' + + const meta: Meta = { + component: TrashOff, + title: 'outline/TrashOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Unlink.stories.tsx b/src/stories/Unlink.stories.tsx new file mode 100644 index 00000000..a3921d5f --- /dev/null +++ b/src/stories/Unlink.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Unlink from '../icons-test/unlink' + + const meta: Meta = { + component: Unlink, + title: 'outline/Unlink', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Upload.stories.tsx b/src/stories/Upload.stories.tsx new file mode 100644 index 00000000..5cce862a --- /dev/null +++ b/src/stories/Upload.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Upload from '../icons-test/upload' + + const meta: Meta = { + component: Upload, + title: 'outline/Upload', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Upload2.stories.tsx b/src/stories/Upload2.stories.tsx new file mode 100644 index 00000000..17a4b175 --- /dev/null +++ b/src/stories/Upload2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Upload2 from '../icons-test/upload-2' + + const meta: Meta = { + component: Upload2, + title: 'outline/Upload2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadAccent.stories.tsx b/src/stories/UploadAccent.stories.tsx new file mode 100644 index 00000000..a29b84a7 --- /dev/null +++ b/src/stories/UploadAccent.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadAccent from '../icons-test/upload-accent' + + const meta: Meta = { + component: UploadAccent, + title: 'accent/UploadAccent', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadC1Cat.stories.tsx b/src/stories/UploadC1Cat.stories.tsx new file mode 100644 index 00000000..b7adc31a --- /dev/null +++ b/src/stories/UploadC1Cat.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadC1Cat from '../icons-test/upload-c1-cat' + + const meta: Meta = { + component: UploadC1Cat, + title: 'mix/UploadC1Cat', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadLrCat.stories.tsx b/src/stories/UploadLrCat.stories.tsx new file mode 100644 index 00000000..96a1fbec --- /dev/null +++ b/src/stories/UploadLrCat.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadLrCat from '../icons-test/upload-lr-cat' + + const meta: Meta = { + component: UploadLrCat, + title: 'mix/UploadLrCat', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/User.stories.tsx b/src/stories/User.stories.tsx new file mode 100644 index 00000000..f0ecb28b --- /dev/null +++ b/src/stories/User.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import User from '../icons-test/user' + + const meta: Meta = { + component: User, + title: 'outline/User', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserCheck.stories.tsx b/src/stories/UserCheck.stories.tsx new file mode 100644 index 00000000..c734ba50 --- /dev/null +++ b/src/stories/UserCheck.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserCheck from '../icons-test/user-check' + + const meta: Meta = { + component: UserCheck, + title: 'outline/UserCheck', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserExclamation.stories.tsx b/src/stories/UserExclamation.stories.tsx new file mode 100644 index 00000000..5f73b80a --- /dev/null +++ b/src/stories/UserExclamation.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserExclamation from '../icons-test/user-exclamation' + + const meta: Meta = { + component: UserExclamation, + title: 'outline/UserExclamation', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserMinus.stories.tsx b/src/stories/UserMinus.stories.tsx new file mode 100644 index 00000000..50a11473 --- /dev/null +++ b/src/stories/UserMinus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserMinus from '../icons-test/user-minus' + + const meta: Meta = { + component: UserMinus, + title: 'outline/UserMinus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserOff.stories.tsx b/src/stories/UserOff.stories.tsx new file mode 100644 index 00000000..f770d71d --- /dev/null +++ b/src/stories/UserOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserOff from '../icons-test/user-off' + + const meta: Meta = { + component: UserOff, + title: 'outline/UserOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserPlus.stories.tsx b/src/stories/UserPlus.stories.tsx new file mode 100644 index 00000000..d74ef7ba --- /dev/null +++ b/src/stories/UserPlus.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserPlus from '../icons-test/user-plus' + + const meta: Meta = { + component: UserPlus, + title: 'outline/UserPlus', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserX.stories.tsx b/src/stories/UserX.stories.tsx new file mode 100644 index 00000000..c3376606 --- /dev/null +++ b/src/stories/UserX.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserX from '../icons-test/user-x' + + const meta: Meta = { + component: UserX, + title: 'outline/UserX', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Users.stories.tsx b/src/stories/Users.stories.tsx new file mode 100644 index 00000000..40195dd7 --- /dev/null +++ b/src/stories/Users.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Users from '../icons-test/users' + + const meta: Meta = { + component: Users, + title: 'outline/Users', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ViewAll.stories.tsx b/src/stories/ViewAll.stories.tsx new file mode 100644 index 00000000..78034cc6 --- /dev/null +++ b/src/stories/ViewAll.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ViewAll from '../icons-test/view-all' + + const meta: Meta = { + component: ViewAll, + title: 'outline/ViewAll', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Viewfinder.stories.tsx b/src/stories/Viewfinder.stories.tsx new file mode 100644 index 00000000..4f1b3d93 --- /dev/null +++ b/src/stories/Viewfinder.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Viewfinder from '../icons-test/viewfinder' + + const meta: Meta = { + component: Viewfinder, + title: 'outline/Viewfinder', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Wifi.stories.tsx b/src/stories/Wifi.stories.tsx new file mode 100644 index 00000000..83862311 --- /dev/null +++ b/src/stories/Wifi.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi from '../icons-test/wifi' + + const meta: Meta = { + component: Wifi, + title: 'outline/Wifi', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Wifi1.stories.tsx b/src/stories/Wifi1.stories.tsx new file mode 100644 index 00000000..a0d0ca6b --- /dev/null +++ b/src/stories/Wifi1.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi1 from '../icons-test/wifi-1' + + const meta: Meta = { + component: Wifi1, + title: 'outline/Wifi1', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Wifi2.stories.tsx b/src/stories/Wifi2.stories.tsx new file mode 100644 index 00000000..723bd96e --- /dev/null +++ b/src/stories/Wifi2.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi2 from '../icons-test/wifi-2' + + const meta: Meta = { + component: Wifi2, + title: 'outline/Wifi2', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/WifiOff.stories.tsx b/src/stories/WifiOff.stories.tsx new file mode 100644 index 00000000..74514185 --- /dev/null +++ b/src/stories/WifiOff.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WifiOff from '../icons-test/wifi-off' + + const meta: Meta = { + component: WifiOff, + title: 'outline/WifiOff', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/World.stories.tsx b/src/stories/World.stories.tsx new file mode 100644 index 00000000..43b903ae --- /dev/null +++ b/src/stories/World.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import World from '../icons-test/world' + + const meta: Meta = { + component: World, + title: 'outline/World', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Writing.stories.tsx b/src/stories/Writing.stories.tsx new file mode 100644 index 00000000..065a0549 --- /dev/null +++ b/src/stories/Writing.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Writing from '../icons-test/writing' + + const meta: Meta = { + component: Writing, + title: 'outline/Writing', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/X.stories.tsx b/src/stories/X.stories.tsx new file mode 100644 index 00000000..6eeabd75 --- /dev/null +++ b/src/stories/X.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import X from '../icons-test/x' + + const meta: Meta = { + component: X, + title: 'outline/X', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ZoomIn.stories.tsx b/src/stories/ZoomIn.stories.tsx new file mode 100644 index 00000000..f07ca97f --- /dev/null +++ b/src/stories/ZoomIn.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomIn from '../icons-test/zoom-in' + + const meta: Meta = { + component: ZoomIn, + title: 'outline/ZoomIn', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ZoomOut.stories.tsx b/src/stories/ZoomOut.stories.tsx new file mode 100644 index 00000000..7f464e1e --- /dev/null +++ b/src/stories/ZoomOut.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomOut from '../icons-test/zoom-out' + + const meta: Meta = { + component: ZoomOut, + title: 'outline/ZoomOut', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ZoomQuestion.stories.tsx b/src/stories/ZoomQuestion.stories.tsx new file mode 100644 index 00000000..a061c264 --- /dev/null +++ b/src/stories/ZoomQuestion.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomQuestion from '../icons-test/zoom-question' + + const meta: Meta = { + component: ZoomQuestion, + title: 'outline/ZoomQuestion', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 42eef3ba..c5213ff0 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -641,14 +641,14 @@ video { stroke: #fff; } -.stroke-\[1\.5px\] { - stroke-width: 1.5px; -} - .stroke-1 { stroke-width: 1; } +.stroke-\[1\.5px\] { + stroke-width: 1.5px; +} + .stroke-\[2px\] { stroke-width: 2px; } @@ -667,9 +667,9 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-white { +.text-green-600 { --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); + color: rgb(22 163 74 / var(--tw-text-opacity)); } .text-red-400 { @@ -682,6 +682,11 @@ video { color: rgb(239 68 68 / var(--tw-text-opacity)); } +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + .outline { outline-style: solid; } diff --git a/svg-children/alert-circle-fill.svg b/svg-children/alert-circle-fill.svg deleted file mode 100644 index e2d6ded4..00000000 --- a/svg-children/alert-circle-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/alert-triangle-fill.svg b/svg-children/alert-triangle-fill.svg deleted file mode 100644 index fef069c5..00000000 --- a/svg-children/alert-triangle-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/atom-di.svg b/svg-children/atom-di.svg deleted file mode 100644 index 7c510e69..00000000 --- a/svg-children/atom-di.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/check_box_empty.svg b/svg-children/check_box_empty.svg deleted file mode 100644 index 991dd4f0..00000000 --- a/svg-children/check_box_empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/no-duplicate.svg b/svg-children/no-duplicate.svg deleted file mode 100644 index 25d55f9d..00000000 --- a/svg-children/no-duplicate.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/play-di.svg b/svg-children/play-di.svg deleted file mode 100644 index 8b7e7e11..00000000 --- a/svg-children/play-di.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 0.svg b/svg-children/star - 0.svg deleted file mode 100644 index 7c184b5f..00000000 --- a/svg-children/star - 0.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 1.svg b/svg-children/star - 1.svg deleted file mode 100644 index 4327073c..00000000 --- a/svg-children/star - 1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 2.svg b/svg-children/star - 2.svg deleted file mode 100644 index 57ff2acd..00000000 --- a/svg-children/star - 2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 3.svg b/svg-children/star - 3.svg deleted file mode 100644 index 84d41cea..00000000 --- a/svg-children/star - 3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 4.svg b/svg-children/star - 4.svg deleted file mode 100644 index 880b6302..00000000 --- a/svg-children/star - 4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/star - 5.svg b/svg-children/star - 5.svg deleted file mode 100644 index 81d23cb9..00000000 --- a/svg-children/star - 5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg-children/success-di.svg b/svg-children/success-di.svg deleted file mode 100644 index fe0d39b9..00000000 --- a/svg-children/success-di.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/unicons.config.json b/unicons.config.json index 7551bfad..13a274cc 100644 --- a/unicons.config.json +++ b/unicons.config.json @@ -2,6 +2,7 @@ "icon_input_dir": "icons-original", "icon_output_dir": "icons-test", "stories_output_dir": "stories", + "exclude_svg_process": ["no_change", "logo", "accent"], "svg_process_options": { "outline": { "stroke": "#555555", From 6acd6c3fd542739b7eb3ff6ad2b02bcecfb24c7c Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 4 Jun 2024 11:26:35 +0530 Subject: [PATCH 27/34] update: add icon to every icon name --- .../culling/BorderSquareIcon.tsx | 0 .../culling/CardBgIcon.tsx | 0 .../culling/CartIcon.tsx | 0 .../culling/CelebrateIcon.tsx | 0 .../culling/CheckFillCircleIcon.tsx | 0 .../culling/ComputerBgIcon.tsx | 0 .../culling/ContactSupportIcon.tsx | 0 .../culling/CouponIcon.tsx | 0 .../culling/CreateProfileIcon.tsx | 0 .../culling/DiamonIcon.tsx | 0 .../culling/DownloadIcon.tsx | 0 .../culling/DublicateStackIcon.tsx | 0 .../culling/DuplicateFillIcon.tsx | 0 .../culling/DuplicateIcon.tsx | 0 .../culling/EditAlbumNameIcon.tsx | 0 .../culling/EditPhotoIcon.tsx | 0 .../culling/ExitAppBgIcon.tsx | 0 .../culling/ExpandIcon.tsx | 0 .../culling/EyeCheckedIcon.tsx | 0 .../culling/EyeCrossedIcon.tsx | 0 .../culling/EyeIcon.tsx | 0 .../culling/FacebookPeopleIcon.tsx | 0 .../culling/FilterCircleIcon.tsx | 0 .../culling/FilterIcon.tsx | 0 .../culling/FinderIcon.tsx | 0 .../culling/FiveStarBgIcon.tsx | 0 .../culling/FolderOutlineBgIcon.tsx | 0 .../culling/FullScreenIcon.tsx | 0 .../culling/GridBgIcon.tsx | 0 .../culling/GridDotsIcon.tsx | 0 .../culling/GridIcon.tsx | 0 .../culling/GridThreeLitIcon.tsx | 0 .../culling/GridTwoLitIcon.tsx | 0 .../culling/GroupingLessIcon.tsx | 0 .../culling/GroupingMoreIcon.tsx | 0 .../culling/HomeIcon.tsx | 0 .../culling/ImageBorderCircleIcon.tsx | 0 .../culling/ImageBorderIcon.tsx | 0 .../culling/ImageCrossedBgIcon.tsx | 0 .../culling/ImageCrossedIcon.tsx | 0 .../culling/ImageIcon.tsx | 0 .../culling/ImageStackIcon.tsx | 0 .../culling/KeyCircleIcon.tsx | 0 .../culling/KeyIcon.tsx | 0 .../culling/LinkIcon.tsx | 0 .../culling/ListNotSelectedIcon.tsx | 0 .../culling/ListSelectedIcon.tsx | 0 .../culling/LoaderIcon.tsx | 0 .../culling/LockIcon.tsx | 0 .../culling/LoopCircleIcon.tsx | 0 .../culling/LoopIcon.tsx | 0 .../culling/LoupeIcon.tsx | 0 .../culling/MaximizeIcon.tsx | 0 .../culling/MenuIcon.tsx | 0 .../culling/MinimizeIcon.tsx | 0 .../culling/MoneyBagIcon.tsx | 0 .../culling/MouseLeftClick.tsx | 0 .../culling/MouseLeftClickCircleIcon.tsx | 0 .../culling/MouseRightClick.tsx | 0 .../culling/MoveBgIcon.tsx | 0 .../culling/NoDuplicateIcon.tsx | 0 .../culling/NoneIcon.tsx | 0 .../culling/NoneSelectedIcon.tsx | 0 .../culling/NotAllowIcon.tsx | 0 .../culling/NotSelectedCircleIcon.tsx | 0 .../culling/RecullIcon.tsx | 0 .../culling/ReloadIcon.tsx | 0 .../culling/ReloadWarningIcon.tsx | 0 .../culling/RotateLeftSquareIcon.tsx | 0 .../culling/RotateRightSquareIcon.tsx | 0 .../culling/SelectedFillCircleIcon.tsx | 0 .../culling/ShareIcon.tsx | 0 .../culling/ShowDuplicateIcon.tsx | 0 .../culling/SmileyHappyIcon.tsx | 0 .../culling/SmileySadIcon.tsx | 0 .../culling/SortCircleIcon.tsx | 0 .../culling/SortDuplicateCircleIcon.tsx | 0 .../culling/SortDuplicatesIcon.tsx | 0 .../culling/SortIcon.tsx | 0 .../culling/SortOptionAlphaIcon.tsx | 0 .../culling/SortOptionNumIcon.tsx | 0 .../culling/SparkleIcon.tsx | 0 .../culling/SprayBgIcon.tsx | 0 .../culling/SprayCanIcon.tsx | 0 .../culling/SprayCircleIcon.tsx | 0 .../culling/StackThreeIcon.tsx | 0 .../culling/StackTwoIcon.tsx | 0 .../culling/StorageCrossedIcon.tsx | 0 .../culling/SurveyModeIcon.tsx | 0 .../culling/ThunderBgIcon.tsx | 0 .../culling/UploadFolderIcon.tsx | 0 .../culling/ViewAllIcon.tsx | 0 .../culling/ZoomCircleIcon.tsx | 0 .../culling/ZoomIcon.tsx | 0 {src/Icons => icons-legacy}/culling/index.ts | 0 .../edit/AftershootEditIcon.tsx | 0 .../edit/CheckBoxEmptyIcon.tsx | 0 .../edit/CheckBoxIcon.tsx | 0 .../edit/CheckBoxPartialIcon.tsx | 0 .../edit/CollectionsIcon.tsx | 0 .../edit/ComputerIcon.tsx | 0 .../edit/ConfettiLeftScreen.tsx | 0 .../edit/ConfettiRightScreen.tsx | 0 .../edit/ConfettiSideScreen.tsx | 0 .../edit/DecrementIcon.tsx | 0 .../edit/DotsVerticalIcon.tsx | 0 .../edit/EditProgressIcon.tsx | 0 .../edit/FailFillBgIcon.tsx | 0 .../edit/FailFillIcon.tsx | 0 .../edit/FileSearchIcon.tsx | 0 .../edit/FlagFillIcon.tsx | 0 .../edit/FlagOutlineCrossedIcon.tsx | 0 .../edit/FlagOutlineIcon.tsx | 0 {src/Icons => icons-legacy}/edit/MoodIcon.tsx | 0 .../edit/PlusBgIcon.tsx | 0 .../edit/RightArrowBgIcon.tsx | 0 .../edit/SuccessFillBgIcon.tsx | 0 .../edit/TrainBgIcon.tsx | 0 {src/Icons => icons-legacy}/edit/index.ts | 0 .../enable/PowerHighIcon.tsx | 0 .../enable/PowerLowIcon.tsx | 0 .../enable/PowerMidIcon.tsx | 0 {src/Icons => icons-legacy}/enable/index.ts | 0 .../general/AdjustmentIcon.tsx | 0 .../general/AlertCircleIcon.tsx | 0 .../general/AlertFillIcon.tsx | 0 .../general/AlertFillTriangleBgIcon.tsx | 0 .../general/AlertFillTriangleIcon.tsx | 0 .../general/AlertHexagonBgIcon.tsx | 0 .../general/AlertHexagonIcon.tsx | 0 .../general/AlertTriangleBgIcon.tsx | 0 .../general/AlertTriangleIcon.tsx | 0 .../general/ArrowCurveIcon.tsx | 0 .../general/ArrowDownIcon.tsx | 0 .../general/ArrowFillRightIcon.tsx | 0 .../general/ArrowFillUpIcon.tsx | 0 .../general/ArrowLeftIcon.tsx | 0 .../general/ArrowRightIcon.tsx | 0 .../general/ArrowUpIcon.tsx | 0 .../general/BulbIcon.tsx | 0 .../general/C1UploadIcon.tsx | 0 .../general/CheckCircleBgIcon.tsx | 0 .../general/CheckCircleIcon.tsx | 0 .../general/CheckFillIcon.tsx | 0 .../general/CheckIcon.tsx | 0 .../general/ChevronDownIcon.tsx | 0 .../general/ChevronLeftIcon.tsx | 0 .../general/ChevronRightIcon.tsx | 0 .../general/ChevronUpIcon.tsx | 0 .../general/CircleFillIcon.tsx | 0 .../general/CircleIcon.tsx | 0 .../general/ClockIcon.tsx | 0 .../general/CloseCircleIcon.tsx | 0 .../general/CloseIcon.tsx | 0 .../general/ColorPaletteIcon.tsx | 0 .../general/ConfettiIcon.tsx | 0 .../general/CopyContentIcon.tsx | 0 .../general/CopyIcon.tsx | 0 .../general/CreditIcon.tsx | 0 .../general/CrossCircleIcon.tsx | 0 .../general/CrossIcon.tsx | 0 .../general/CrownBgIcon.tsx | 0 .../general/CrownIcon.tsx | 0 .../general/DeleteBgIcon.tsx | 0 .../general/DeleteIcon.tsx | 0 .../general/DollarIcon.tsx | 0 .../general/DrawerIcon.tsx | 0 .../general/EditIcon.tsx | 0 .../general/ExportIcon.tsx | 0 .../general/FolderFillIcon.tsx | 0 .../general/FolderOutlineCrossedIcon.tsx | 0 .../general/GlobalIcon.tsx | 0 .../general/InfoBgIcon.tsx | 0 .../general/InfoCircleIcon.tsx | 0 .../general/LrUploadIcon.tsx | 0 .../general/MailBgIcon.tsx | 0 .../general/OpenlinkIcon.tsx | 0 .../general/PauseBgIcon.tsx | 0 .../general/PersonPlusIcon.tsx | 0 .../general/PersonTwoIcon.tsx | 0 .../general/PipeIcon.tsx | 0 .../general/PlayBgIcon.tsx | 0 .../general/PlayCircleIcon.tsx | 0 .../general/QuestionMarkCircleIcon.tsx | 0 .../general/QuestionMarkIcon.tsx | 0 .../general/RefreshIcon.tsx | 0 .../general/RevertIcon.tsx | 0 .../general/RotateIcon.tsx | 0 .../general/ScissorsIcon.tsx | 0 .../general/SearchIcon.tsx | 0 .../general/StarCrossedIcon.tsx | 0 .../general/StarIcon.tsx | 0 .../general/ThumbDownBgIcon.tsx | 0 .../general/ThumbUpBgIcon.tsx | 0 .../general/TrophyColorIcon.tsx | 0 .../general/UploadBgIcon.tsx | 0 .../general/UploadCloudBgIcon.tsx | 0 .../general/UploadCloudIcon.tsx | 0 .../general/UploadIcon.tsx | 0 .../general/WifiCrossedBgIcon.tsx | 0 .../general/WifiCrossedIcon.tsx | 0 {src/Icons => icons-legacy}/general/index.ts | 0 icons-legacy/index.ts | 6 + .../logo/AfterShootLogoIcon.tsx | 0 .../logo/AftershootLogoWhite.tsx | 0 .../logo/CaptureOneIcon.tsx | 0 .../logo/DragBridgeIcon.tsx | 0 .../logo/DragCaptureOneIcon.tsx | 0 .../logo/DragFolderIcon.tsx | 0 .../logo/DragLrIcon.tsx | 0 .../logo/DragLrcIcon.tsx | 0 .../logo/DragPhotoshopIcon.tsx | 0 .../logo/EditsLogoTextIcon.tsx | 0 .../logo/LightroomClassicIcon.tsx | 0 .../logo/LightroomIcon.tsx | 0 {src/Icons => icons-legacy}/logo/index.ts | 0 .../social/AppleIcon.tsx | 0 .../social/FacebookBgIcon.tsx | 0 .../social/FacebookIcon.tsx | 0 .../social/FacebookOutlineIcon.tsx | 0 .../social/GoogleColorIcon.tsx | 0 .../social/InstagramIcon.tsx | 0 .../social/WhatsappIcon.tsx | 0 {src/Icons => icons-legacy}/social/XIcon.tsx | 0 {src/Icons => icons-legacy}/social/index.ts | 0 .../{adjustments.json => Import-icon.json} | 2 +- .../adjustments-horizontal-icon.json | 9 + icons-metadata/adjustments-icon.json | 9 + icons-metadata/aftershoot-credit-icon.json | 4 + icons-metadata/aftershoot-credit.json | 4 - icons-metadata/aftershoot-logo-icon.json | 7 + .../{arrow-down.json => alarm-icon.json} | 2 +- icons-metadata/alert-circle-accent-icon.json | 4 + icons-metadata/alert-circle-accent.json | 4 - icons-metadata/alert-circle-icon.json | 9 + icons-metadata/alert-octagon-icon.json | 9 + icons-metadata/alert-octagon.json | 9 - .../alert-triangle-accent-icon.json | 4 + icons-metadata/alert-triangle-accent.json | 4 - icons-metadata/alert-triangle-icon.json | 9 + icons-metadata/alert-triangle.json | 9 - .../{list-fill.json => apple-icon.json} | 2 +- icons-metadata/arrow-curve-fill-icon.json | 7 + icons-metadata/arrow-down-icon.json | 9 + icons-metadata/arrow-left-icon.json | 9 + ...ontal.json => arrow-narrow-left-icon.json} | 2 +- icons-metadata/arrow-narrow-left.json | 9 - icons-metadata/arrow-narrow-right-icon.json | 9 + icons-metadata/arrow-narrow-right.json | 9 - icons-metadata/arrow-right-icon.json | 9 + icons-metadata/arrow-right.json | 9 - icons-metadata/arrow-sort-2-icon.json | 9 + icons-metadata/arrow-sort-2.json | 9 - icons-metadata/arrow-up-icon.json | 9 + icons-metadata/arrows-diagonal-icon.json | 9 + icons-metadata/arrows-diagonal.json | 9 - icons-metadata/arrows-sort-icon.json | 9 + icons-metadata/arrows-sort.json | 9 - icons-metadata/atom-accent-icon.json | 4 + icons-metadata/atom-icon.json | 9 + .../{arrow-up.json => ban-icon.json} | 2 +- icons-metadata/ban.json | 9 - icons-metadata/bell-icon.json | 9 + icons-metadata/bell-minus-icon.json | 9 + icons-metadata/bell-minus.json | 9 - icons-metadata/bell-off-icon.json | 9 + icons-metadata/bell-off.json | 9 - icons-metadata/bell-plus-icon.json | 9 + icons-metadata/bell-plus.json | 9 - icons-metadata/bell-ringing-2-icon.json | 9 + icons-metadata/bell-ringing-2.json | 9 - icons-metadata/bell-ringing-icon.json | 9 + icons-metadata/bell-ringing.json | 9 - icons-metadata/bell-x-icon.json | 9 + icons-metadata/bell-x.json | 9 - icons-metadata/bell.json | 9 - icons-metadata/brand-facebook-icon.json | 9 + icons-metadata/brand-facebook.json | 9 - icons-metadata/brand-github-icon.json | 9 + icons-metadata/brand-github.json | 9 - icons-metadata/brand-instagram-icon.json | 9 + icons-metadata/brand-instagram.json | 9 - icons-metadata/brand-twitter-icon.json | 9 + icons-metadata/brand-twitter.json | 9 - icons-metadata/brand-whatsapp-icon.json | 9 + icons-metadata/brand-whatsapp.json | 9 - icons-metadata/brand-youtube-icon.json | 9 + icons-metadata/brand-youtube.json | 9 - icons-metadata/bulb-icon.json | 9 + icons-metadata/bulb-off-icon.json | 9 + icons-metadata/bulb-off.json | 9 - icons-metadata/bulb.json | 9 - icons-metadata/check-box-empty-icon.json | 9 + .../{arrow-left.json => check-icon.json} | 2 +- icons-metadata/check.json | 9 - icons-metadata/checkbox-blue-accent-icon.json | 4 + icons-metadata/checkbox-blue-accent.json | 4 - .../checkbox-green-accent-icon.json | 4 + icons-metadata/checkbox-green-accent.json | 4 - .../checkbox-partial-blue-accent-icon.json | 4 + .../checkbox-partial-blue-accent.json | 4 - icons-metadata/chevron-down-icon.json | 9 + icons-metadata/chevron-down.json | 9 - icons-metadata/chevron-left-icon.json | 9 + icons-metadata/chevron-left.json | 9 - icons-metadata/chevron-right-icon.json | 9 + icons-metadata/chevron-right.json | 9 - icons-metadata/chevron-up-icon.json | 9 + icons-metadata/chevron-up.json | 9 - icons-metadata/chevrons-left-icon.json | 9 + icons-metadata/chevrons-left.json | 9 - icons-metadata/chevrons-right-icon.json | 9 + icons-metadata/chevrons-right.json | 9 - icons-metadata/circle-check-2-icon.json | 9 + icons-metadata/circle-check-2.json | 9 - icons-metadata/circle-check-icon.json | 9 + icons-metadata/circle-check.json | 9 - icons-metadata/circle-cross-accent-icon.json | 4 + icons-metadata/circle-cross-accent.json | 4 - ...-curve-fill.json => circle-fill-icon.json} | 2 +- icons-metadata/circle-icon.json | 9 + icons-metadata/circle.json | 9 - icons-metadata/clock-icon.json | 9 + icons-metadata/clock.json | 9 - icons-metadata/cloud-upload-accent-icon.json | 4 + icons-metadata/cloud-upload-accent.json | 4 - icons-metadata/cloud-upload-icon.json | 9 + icons-metadata/cloud-upload.json | 9 - ...ck-box-empty.json => collection-icon.json} | 2 +- icons-metadata/color-swatch-icon.json | 9 + icons-metadata/color-swatch.json | 9 - icons-metadata/confetti-icon.json | 9 + icons-metadata/confetti.json | 9 - icons-metadata/copy-icon.json | 9 + icons-metadata/copy.json | 9 - icons-metadata/crown-2-fill-icon.json | 7 + icons-metadata/crown-icon.json | 9 + icons-metadata/crown.json | 9 - icons-metadata/currency-dollar-icon.json | 9 + icons-metadata/currency-dollar.json | 9 - icons-metadata/current-location-icon.json | 9 + icons-metadata/current-location.json | 9 - .../device-desktop-analytics-icon.json | 9 + icons-metadata/device-desktop-analytics.json | 9 - icons-metadata/device-desktop-icon.json | 9 + icons-metadata/device-desktop-off-icon.json | 9 + icons-metadata/device-desktop-off.json | 9 - icons-metadata/device-desktop.json | 9 - icons-metadata/device-laptop-icon.json | 9 + icons-metadata/device-laptop.json | 9 - icons-metadata/device-tv-icon.json | 9 + icons-metadata/device-tv.json | 9 - .../{alert-circle.json => diamond-icon.json} | 2 +- icons-metadata/diamond.json | 9 - icons-metadata/discount-2-icon.json | 9 + icons-metadata/discount-2.json | 9 - icons-metadata/discount-icon.json | 9 + icons-metadata/discount.json | 9 - icons-metadata/disk-icon.json | 9 + icons-metadata/disk.json | 9 - icons-metadata/dots-vertical-icon.json | 9 + icons-metadata/dots-vertical.json | 9 - icons-metadata/download-accent-icon.json | 4 + icons-metadata/download-icon.json | 9 + icons-metadata/download.json | 9 - icons-metadata/edit-icon-icon.json | 4 + icons-metadata/edit-icon.json | 9 +- icons-metadata/edit.json | 9 - icons-metadata/external-link-icon.json | 9 + icons-metadata/external-link.json | 9 - icons-metadata/eye-check-icon.json | 9 + icons-metadata/eye-check.json | 9 - icons-metadata/{atom.json => eye-icon.json} | 2 +- icons-metadata/eye-off-icon.json | 9 + icons-metadata/eye-off.json | 9 - icons-metadata/eye.json | 9 - .../{crown-2-fill.json => facebook-icon.json} | 2 +- icons-metadata/facebook.json | 7 - icons-metadata/file-download-icon.json | 9 + icons-metadata/file-download.json | 9 - icons-metadata/file-export-icon.json | 9 + icons-metadata/file-export.json | 9 - icons-metadata/file-report-icon.json | 9 + icons-metadata/file-report.json | 9 - icons-metadata/file-search-icon.json | 9 + icons-metadata/file-search.json | 9 - icons-metadata/filter-icon.json | 9 + icons-metadata/filter-off-icon.json | 9 + icons-metadata/filter-off.json | 9 - icons-metadata/filter.json | 9 - ...none-selected.json => flag-fill-icon.json} | 2 +- icons-metadata/flag-icon.json | 9 + icons-metadata/flag-off-icon.json | 9 + icons-metadata/flag-off.json | 9 - icons-metadata/flag.json | 9 - icons-metadata/folder-download-icon.json | 9 + icons-metadata/folder-download.json | 9 - icons-metadata/folder-eye-icon.json | 9 + icons-metadata/folder-eye.json | 9 - icons-metadata/folder-fill-icon.json | 4 + icons-metadata/folder-icon.json | 9 + icons-metadata/folder-minus-icon.json | 9 + icons-metadata/folder-minus.json | 9 - icons-metadata/folder-off-icon.json | 9 + icons-metadata/folder-off.json | 9 - icons-metadata/folder-plus-icon.json | 9 + icons-metadata/folder-plus.json | 9 - icons-metadata/folder-upload-icon.json | 9 + icons-metadata/folder-upload.json | 9 - icons-metadata/folder-x-icon.json | 9 + icons-metadata/folder-x.json | 9 - icons-metadata/folder.json | 9 - icons-metadata/folders-icon.json | 9 + icons-metadata/folders.json | 9 - icons-metadata/google-color-icon.json | 4 + icons-metadata/google-color.json | 4 - icons-metadata/grab-hand-icon.json | 4 + icons-metadata/grab-hand.json | 4 - icons-metadata/grid-dots-icon.json | 9 + icons-metadata/grid-dots.json | 9 - icons-metadata/grid-view-1-icon.json | 7 + icons-metadata/grid-view-1.json | 7 - icons-metadata/grid-view-2-icon.json | 7 + icons-metadata/grid-view-2.json | 7 - icons-metadata/home-2-icon.json | 9 + icons-metadata/home-2.json | 9 - .../{home-mix.json => home-icon.json} | 2 +- ...age-border.json => image-border-icon.json} | 2 +- icons-metadata/info-circle-icon.json | 9 + icons-metadata/info-circle.json | 9 - icons-metadata/info-cirlce-2-icon.json | 9 + icons-metadata/info-cirlce-2.json | 9 - icons-metadata/info-icon.json | 9 + icons-metadata/info-square-icon.json | 9 + icons-metadata/info-square.json | 9 - icons-metadata/info.json | 9 - icons-metadata/key-2-icon.json | 9 + icons-metadata/key-2.json | 9 - icons-metadata/key-duplicate-icon.json | 9 + icons-metadata/key-duplicate.json | 9 - icons-metadata/{alarm.json => key-icon.json} | 2 +- icons-metadata/key.json | 9 - .../layout-sidebar-right-mix-icon.json | 4 + icons-metadata/layout-sidebar-right-mix.json | 4 - icons-metadata/link-icon.json | 9 + icons-metadata/link.json | 9 - .../{circle-fill.json => list-fill-icon.json} | 2 +- icons-metadata/loader-icon.json | 9 + icons-metadata/loader.json | 9 - icons-metadata/lock-2-icon.json | 9 + icons-metadata/lock-2.json | 9 - icons-metadata/lock-icon.json | 9 + icons-metadata/lock-off-icon.json | 9 + icons-metadata/lock-off.json | 9 - icons-metadata/lock-open-icon.json | 9 + icons-metadata/lock-open.json | 9 - icons-metadata/lock.json | 9 - icons-metadata/loop-icon.json | 9 + icons-metadata/loop.json | 9 - ...ershoot-logo.json => loupe-fill-icon.json} | 2 +- icons-metadata/loupe-fill.json | 7 - icons-metadata/mail-icon.json | 9 + icons-metadata/mail.json | 9 - icons-metadata/map-2-icon.json | 9 + icons-metadata/map-2.json | 9 - icons-metadata/map-pin-icon.json | 9 + icons-metadata/map-pin-off-icon.json | 9 + icons-metadata/map-pin-off.json | 9 - icons-metadata/map-pin.json | 9 - icons-metadata/minus-icon.json | 9 + icons-metadata/minus.json | 9 - icons-metadata/mood-crazy-happy-icon.json | 9 + icons-metadata/mood-crazy-happy.json | 9 - icons-metadata/mood-empty-icon.json | 9 + icons-metadata/mood-empty.json | 9 - .../{mood-gray.json => mood-gray-icon.json} | 2 +- .../{recull.json => mood-icon.json} | 2 +- icons-metadata/mood-sad-icon.json | 9 + icons-metadata/mood-sad.json | 9 - icons-metadata/mood-smile-icon.json | 9 + icons-metadata/mood-smile.json | 9 - icons-metadata/mouse-left-2-icon.json | 4 + icons-metadata/mouse-left-2.json | 4 - icons-metadata/mouse-left-icon.json | 9 + icons-metadata/mouse-left.json | 9 - icons-metadata/mouse-right-icon.json | 9 + icons-metadata/mouse-right.json | 9 - icons-metadata/no-duplicate-icon.json | 9 + icons-metadata/no-duplicate.json | 9 - icons-metadata/none-selected-icon.json | 9 + icons-metadata/palette-fill-icon.json | 7 + icons-metadata/palette-fill.json | 7 - icons-metadata/palette-icon.json | 9 + icons-metadata/palette.json | 9 - icons-metadata/pause-fill-icon.json | 7 + icons-metadata/pause-fill.json | 7 - icons-metadata/photo-icon.json | 9 + icons-metadata/photo-off-2-icon.json | 9 + icons-metadata/photo-off-2.json | 9 - icons-metadata/photo-off-icon.json | 9 + icons-metadata/photo-off.json | 9 - icons-metadata/photo-stack-icon.json | 9 + icons-metadata/photo-stack.json | 9 - icons-metadata/photo.json | 9 - icons-metadata/pinned-icon.json | 9 + icons-metadata/pinned.json | 9 - .../{apple.json => play-fill-icon.json} | 2 +- icons-metadata/play-fill.json | 7 - icons-metadata/{play.json => play-icon.json} | 2 +- .../{star - 1.json => player-icon.json} | 2 +- icons-metadata/plus-icon.json | 9 + icons-metadata/plus.json | 9 - icons-metadata/question-mark-icon.json | 9 + icons-metadata/question-mark.json | 9 - .../{mood.json => recull-icon.json} | 2 +- icons-metadata/redeem-icon.json | 9 + icons-metadata/redeem.json | 9 - icons-metadata/refresh-2-icon.json | 9 + icons-metadata/refresh-2.json | 9 - icons-metadata/refresh-alert-icon.json | 9 + icons-metadata/refresh-alert.json | 9 - icons-metadata/refresh-icon.json | 9 + icons-metadata/refresh.json | 9 - icons-metadata/reload-alert-icon.json | 9 + icons-metadata/reload-alert.json | 9 - icons-metadata/rotate-clockwise-icon.json | 9 + icons-metadata/rotate-clockwise.json | 9 - icons-metadata/rotate-icon.json | 9 + icons-metadata/rotate.json | 9 - .../{folder-fill.json => scissors-icon.json} | 2 +- icons-metadata/scissors.json | 4 - icons-metadata/search-icon.json | 9 + icons-metadata/search.json | 9 - icons-metadata/share-icon.json | 9 + icons-metadata/share.json | 9 - .../shopping-cart-discount-icon.json | 9 + icons-metadata/shopping-cart-discount.json | 9 - icons-metadata/shopping-cart-icon.json | 9 + icons-metadata/shopping-cart.json | 9 - icons-metadata/sort-ascending-2-icon.json | 9 + icons-metadata/sort-ascending-2.json | 9 - icons-metadata/sort-ascending-icon.json | 9 + .../sort-ascending-letters-icon.json | 9 + icons-metadata/sort-ascending-letters.json | 9 - .../sort-ascending-numbers-icon.json | 9 + icons-metadata/sort-ascending-numbers.json | 9 - icons-metadata/sort-ascending.json | 9 - icons-metadata/sort-descending-2-icon.json | 9 + icons-metadata/sort-descending-2.json | 9 - icons-metadata/sort-descending-icon.json | 9 + .../sort-descending-letters-icon.json | 9 + icons-metadata/sort-descending-letters.json | 9 - .../sort-descending-numbers-icon.json | 9 + icons-metadata/sort-descending-numbers.json | 9 - icons-metadata/sort-descending.json | 9 - .../{collection.json => sparkle-icon.json} | 2 +- icons-metadata/sparkle.json | 9 - icons-metadata/spray-icon.json | 9 + icons-metadata/spray.json | 9 - icons-metadata/spray_2-icon.json | 9 + icons-metadata/spray_2.json | 9 - icons-metadata/stack-double-icon.json | 9 + icons-metadata/stack-double.json | 9 - icons-metadata/stack-triple-icon.json | 9 + icons-metadata/stack-triple.json | 9 - .../{atom-accent.json => star - 0-icon.json} | 2 +- .../{player.json => star - 1-icon.json} | 2 +- .../{star - 0.json => star - 2-icon.json} | 2 +- icons-metadata/star - 2.json | 4 - icons-metadata/star - 3-icon.json | 4 + icons-metadata/star - 3.json | 4 - icons-metadata/star - 4-icon.json | 4 + icons-metadata/star - 4.json | 4 - icons-metadata/star - 5-icon.json | 4 + icons-metadata/star - 5.json | 4 - .../{flag-fill.json => star-fill-icon.json} | 2 +- icons-metadata/star-fill-off-icon.json | 4 + icons-metadata/star-fill-off.json | 4 - icons-metadata/star-fill.json | 9 - icons-metadata/star-icon.json | 9 + icons-metadata/star-off-icon.json | 9 + icons-metadata/star-off.json | 9 - icons-metadata/star.json | 9 - ...nload-accent.json => success-di-icon.json} | 2 +- icons-metadata/success-di.json | 4 - icons-metadata/thumb-down-icon.json | 9 + icons-metadata/thumb-down.json | 9 - icons-metadata/thumb-up-icon.json | 9 + icons-metadata/thumb-up.json | 9 - icons-metadata/trash-icon.json | 9 + icons-metadata/trash-off-icon.json | 9 + icons-metadata/trash-off.json | 9 - icons-metadata/trash.json | 9 - icons-metadata/unlink-icon.json | 9 + icons-metadata/unlink.json | 9 - icons-metadata/upload-2-icon.json | 9 + icons-metadata/upload-2.json | 9 - icons-metadata/upload-accent-icon.json | 4 + icons-metadata/upload-accent.json | 4 - icons-metadata/upload-c1-cat-icon.json | 9 + icons-metadata/upload-c1-cat.json | 9 - icons-metadata/upload-icon.json | 9 + icons-metadata/upload-lr-cat-icon.json | 9 + icons-metadata/upload-lr-cat.json | 9 - icons-metadata/upload.json | 9 - icons-metadata/user-check-icon.json | 9 + icons-metadata/user-check.json | 9 - icons-metadata/user-exclamation-icon.json | 9 + icons-metadata/user-exclamation.json | 9 - icons-metadata/user-icon.json | 9 + icons-metadata/user-minus-icon.json | 9 + icons-metadata/user-minus.json | 9 - icons-metadata/user-off-icon.json | 9 + icons-metadata/user-off.json | 9 - icons-metadata/user-plus-icon.json | 9 + icons-metadata/user-plus.json | 9 - icons-metadata/user-x-icon.json | 9 + icons-metadata/user-x.json | 9 - icons-metadata/user.json | 9 - icons-metadata/users-icon.json | 9 + icons-metadata/users.json | 9 - icons-metadata/view-all-icon.json | 9 + icons-metadata/view-all.json | 9 - icons-metadata/viewfinder-icon.json | 9 + icons-metadata/viewfinder.json | 9 - icons-metadata/wifi-1-icon.json | 9 + icons-metadata/wifi-1.json | 9 - icons-metadata/wifi-2-icon.json | 9 + icons-metadata/wifi-2.json | 9 - icons-metadata/wifi-icon.json | 9 + icons-metadata/wifi-off-icon.json | 9 + icons-metadata/wifi-off.json | 9 - icons-metadata/wifi.json | 9 - icons-metadata/world-icon.json | 9 + icons-metadata/world.json | 9 - icons-metadata/writing-icon.json | 9 + icons-metadata/writing.json | 9 - icons-metadata/{Import.json => x-icon.json} | 2 +- icons-metadata/x.json | 9 - icons-metadata/zoom-in-icon.json | 9 + icons-metadata/zoom-in.json | 9 - icons-metadata/zoom-out-icon.json | 9 + icons-metadata/zoom-out.json | 9 - icons-metadata/zoom-question-icon.json | 9 + icons-metadata/zoom-question.json | 9 - .../{Import.svg => Import-icon.svg} | 0 ...al.svg => adjustments-horizontal-icon.svg} | 0 .../{adjustments.svg => adjustments-icon.svg} | 0 ...-credit.svg => aftershoot-credit-icon.svg} | 0 ...hoot-logo.svg => aftershoot-logo-icon.svg} | 0 icons-optimized/{alarm.svg => alarm-icon.svg} | 0 ...ccent.svg => alert-circle-accent-icon.svg} | 0 ...alert-circle.svg => alert-circle-icon.svg} | 0 ...ert-octagon.svg => alert-octagon-icon.svg} | 0 ...ent.svg => alert-triangle-accent-icon.svg} | 0 ...t-triangle.svg => alert-triangle-icon.svg} | 0 icons-optimized/{apple.svg => apple-icon.svg} | 0 ...rve-fill.svg => arrow-curve-fill-icon.svg} | 0 .../{arrow-down.svg => arrow-down-icon.svg} | 0 .../{arrow-left.svg => arrow-left-icon.svg} | 0 ...ow-left.svg => arrow-narrow-left-icon.svg} | 0 ...-right.svg => arrow-narrow-right-icon.svg} | 0 .../{arrow-right.svg => arrow-right-icon.svg} | 0 ...arrow-sort-2.svg => arrow-sort-2-icon.svg} | 0 .../{arrow-up.svg => arrow-up-icon.svg} | 0 ...-diagonal.svg => arrows-diagonal-icon.svg} | 0 .../{arrows-sort.svg => arrows-sort-icon.svg} | 0 .../{atom-accent.svg => atom-accent-icon.svg} | 0 icons-optimized/{atom.svg => atom-icon.svg} | 0 icons-optimized/{ban.svg => ban-icon.svg} | 0 icons-optimized/{bell.svg => bell-icon.svg} | 0 .../{bell-minus.svg => bell-minus-icon.svg} | 0 .../{bell-off.svg => bell-off-icon.svg} | 0 .../{bell-plus.svg => bell-plus-icon.svg} | 0 ...-ringing-2.svg => bell-ringing-2-icon.svg} | 0 ...bell-ringing.svg => bell-ringing-icon.svg} | 0 .../{bell-x.svg => bell-x-icon.svg} | 0 ...d-facebook.svg => brand-facebook-icon.svg} | 0 ...brand-github.svg => brand-github-icon.svg} | 0 ...instagram.svg => brand-instagram-icon.svg} | 0 ...and-twitter.svg => brand-twitter-icon.svg} | 0 ...d-whatsapp.svg => brand-whatsapp-icon.svg} | 0 ...and-youtube.svg => brand-youtube-icon.svg} | 0 icons-optimized/{bulb.svg => bulb-icon.svg} | 0 .../{bulb-off.svg => bulb-off-icon.svg} | 0 ...box-empty.svg => check-box-empty-icon.svg} | 0 icons-optimized/{check.svg => check-icon.svg} | 0 ...cent.svg => checkbox-blue-accent-icon.svg} | 0 ...ent.svg => checkbox-green-accent-icon.svg} | 0 ... => checkbox-partial-blue-accent-icon.svg} | 0 ...chevron-down.svg => chevron-down-icon.svg} | 0 ...chevron-left.svg => chevron-left-icon.svg} | 0 ...evron-right.svg => chevron-right-icon.svg} | 0 .../{chevron-up.svg => chevron-up-icon.svg} | 0 ...evrons-left.svg => chevrons-left-icon.svg} | 0 ...rons-right.svg => chevrons-right-icon.svg} | 0 ...le-check-2.svg => circle-check-2-icon.svg} | 0 ...circle-check.svg => circle-check-icon.svg} | 0 ...ccent.svg => circle-cross-accent-icon.svg} | 0 .../{circle-fill.svg => circle-fill-icon.svg} | 0 .../{circle.svg => circle-icon.svg} | 0 icons-optimized/{clock.svg => clock-icon.svg} | 0 ...ccent.svg => cloud-upload-accent-icon.svg} | 0 ...cloud-upload.svg => cloud-upload-icon.svg} | 0 .../{collection.svg => collection-icon.svg} | 0 ...color-swatch.svg => color-swatch-icon.svg} | 0 .../{confetti.svg => confetti-icon.svg} | 0 icons-optimized/{copy.svg => copy-icon.svg} | 0 ...crown-2-fill.svg => crown-2-fill-icon.svg} | 0 icons-optimized/{crown.svg => crown-icon.svg} | 0 ...cy-dollar.svg => currency-dollar-icon.svg} | 0 ...location.svg => current-location-icon.svg} | 0 ....svg => device-desktop-analytics-icon.svg} | 0 ...ce-desktop.svg => device-desktop-icon.svg} | 0 ...op-off.svg => device-desktop-off-icon.svg} | 0 ...vice-laptop.svg => device-laptop-icon.svg} | 0 .../{device-tv.svg => device-tv-icon.svg} | 0 .../{diamond.svg => diamond-icon.svg} | 0 .../{discount-2.svg => discount-2-icon.svg} | 0 .../{discount.svg => discount-icon.svg} | 0 icons-optimized/{disk.svg => disk-icon.svg} | 0 ...ts-vertical.svg => dots-vertical-icon.svg} | 0 ...ad-accent.svg => download-accent-icon.svg} | 0 .../{download.svg => download-icon.svg} | 0 icons-optimized/edit-icon-icon.svg | 85 +++++++ icons-optimized/edit-icon.svg | 91 +------ icons-optimized/edit.svg | 12 - ...ternal-link.svg => external-link-icon.svg} | 0 .../{eye-check.svg => eye-check-icon.svg} | 0 icons-optimized/{eye.svg => eye-icon.svg} | 0 .../{eye-off.svg => eye-off-icon.svg} | 0 .../{facebook.svg => facebook-icon.svg} | 0 ...le-download.svg => file-download-icon.svg} | 0 .../{file-export.svg => file-export-icon.svg} | 0 .../{file-report.svg => file-report-icon.svg} | 0 .../{file-search.svg => file-search-icon.svg} | 0 .../{filter.svg => filter-icon.svg} | 0 .../{filter-off.svg => filter-off-icon.svg} | 0 .../{flag-fill.svg => flag-fill-icon.svg} | 0 icons-optimized/{flag.svg => flag-icon.svg} | 0 .../{flag-off.svg => flag-off-icon.svg} | 0 ...-download.svg => folder-download-icon.svg} | 0 .../{folder-eye.svg => folder-eye-icon.svg} | 0 .../{folder-fill.svg => folder-fill-icon.svg} | 0 .../{folder.svg => folder-icon.svg} | 0 ...folder-minus.svg => folder-minus-icon.svg} | 0 .../{folder-off.svg => folder-off-icon.svg} | 0 .../{folder-plus.svg => folder-plus-icon.svg} | 0 ...lder-upload.svg => folder-upload-icon.svg} | 0 .../{folder-x.svg => folder-x-icon.svg} | 0 .../{folders.svg => folders-icon.svg} | 0 ...google-color.svg => google-color-icon.svg} | 0 .../{grab-hand.svg => grab-hand-icon.svg} | 0 .../{grid-dots.svg => grid-dots-icon.svg} | 0 .../{grid-view-1.svg => grid-view-1-icon.svg} | 0 .../{grid-view-2.svg => grid-view-2-icon.svg} | 0 .../{home-2.svg => home-2-icon.svg} | 10 +- .../{home-mix.svg => home-icon.svg} | 0 ...image-border.svg => image-border-icon.svg} | 0 .../{info-circle.svg => info-circle-icon.svg} | 0 ...fo-cirlce-2.svg => info-cirlce-2-icon.svg} | 0 icons-optimized/{info.svg => info-icon.svg} | 0 .../{info-square.svg => info-square-icon.svg} | 0 icons-optimized/{key-2.svg => key-2-icon.svg} | 0 ...y-duplicate.svg => key-duplicate-icon.svg} | 0 icons-optimized/{key.svg => key-icon.svg} | 0 ....svg => layout-sidebar-right-mix-icon.svg} | 0 icons-optimized/{link.svg => link-icon.svg} | 0 .../{list-fill.svg => list-fill-icon.svg} | 0 .../{loader.svg => loader-icon.svg} | 0 .../{lock-2.svg => lock-2-icon.svg} | 0 icons-optimized/{lock.svg => lock-icon.svg} | 0 .../{lock-off.svg => lock-off-icon.svg} | 0 .../{lock-open.svg => lock-open-icon.svg} | 0 icons-optimized/{loop.svg => loop-icon.svg} | 0 .../{loupe-fill.svg => loupe-fill-icon.svg} | 0 icons-optimized/{mail.svg => mail-icon.svg} | 0 icons-optimized/{map-2.svg => map-2-icon.svg} | 0 .../{map-pin.svg => map-pin-icon.svg} | 0 .../{map-pin-off.svg => map-pin-off-icon.svg} | 0 icons-optimized/{minus.svg => minus-icon.svg} | 0 ...zy-happy.svg => mood-crazy-happy-icon.svg} | 0 .../{mood-empty.svg => mood-empty-icon.svg} | 0 .../{mood-gray.svg => mood-gray-icon.svg} | 0 icons-optimized/{mood.svg => mood-icon.svg} | 0 .../{mood-sad.svg => mood-sad-icon.svg} | 0 .../{mood-smile.svg => mood-smile-icon.svg} | 0 ...mouse-left-2.svg => mouse-left-2-icon.svg} | 0 .../{mouse-left.svg => mouse-left-icon.svg} | 0 .../{mouse-right.svg => mouse-right-icon.svg} | 0 ...no-duplicate.svg => no-duplicate-icon.svg} | 0 ...ne-selected.svg => none-selected-icon.svg} | 0 ...palette-fill.svg => palette-fill-icon.svg} | 0 .../{palette.svg => palette-icon.svg} | 0 .../{pause-fill.svg => pause-fill-icon.svg} | 0 icons-optimized/{photo.svg => photo-icon.svg} | 0 .../{photo-off-2.svg => photo-off-2-icon.svg} | 0 .../{photo-off.svg => photo-off-icon.svg} | 0 .../{photo-stack.svg => photo-stack-icon.svg} | 0 .../{pinned.svg => pinned-icon.svg} | 0 .../{play-fill.svg => play-fill-icon.svg} | 0 icons-optimized/{play.svg => play-icon.svg} | 0 .../{player.svg => player-icon.svg} | 0 icons-optimized/{plus.svg => plus-icon.svg} | 0 ...estion-mark.svg => question-mark-icon.svg} | 0 .../{recull.svg => recull-icon.svg} | 0 .../{redeem.svg => redeem-icon.svg} | 0 .../{refresh-2.svg => refresh-2-icon.svg} | 0 ...fresh-alert.svg => refresh-alert-icon.svg} | 0 .../{refresh.svg => refresh-icon.svg} | 0 ...reload-alert.svg => reload-alert-icon.svg} | 0 ...lockwise.svg => rotate-clockwise-icon.svg} | 0 .../{rotate.svg => rotate-icon.svg} | 0 .../{scissors.svg => scissors-icon.svg} | 0 .../{search.svg => search-icon.svg} | 0 icons-optimized/{share.svg => share-icon.svg} | 0 ...nt.svg => shopping-cart-discount-icon.svg} | 0 ...opping-cart.svg => shopping-cart-icon.svg} | 0 ...ending-2.svg => sort-ascending-2-icon.svg} | 0 ...-ascending.svg => sort-ascending-icon.svg} | 0 ...rs.svg => sort-ascending-letters-icon.svg} | 0 ...rs.svg => sort-ascending-numbers-icon.svg} | 0 ...nding-2.svg => sort-descending-2-icon.svg} | 0 ...escending.svg => sort-descending-icon.svg} | 0 ...s.svg => sort-descending-letters-icon.svg} | 0 ...s.svg => sort-descending-numbers-icon.svg} | 0 .../{sparkle.svg => sparkle-icon.svg} | 0 icons-optimized/{spray.svg => spray-icon.svg} | 0 .../{spray_2.svg => spray_2-icon.svg} | 0 ...stack-double.svg => stack-double-icon.svg} | 0 ...stack-triple.svg => stack-triple-icon.svg} | 0 .../{star - 0.svg => star - 0-icon.svg} | 0 .../{star - 1.svg => star - 1-icon.svg} | 0 .../{star - 2.svg => star - 2-icon.svg} | 0 .../{star - 3.svg => star - 3-icon.svg} | 0 .../{star - 4.svg => star - 4-icon.svg} | 0 .../{star - 5.svg => star - 5-icon.svg} | 0 .../{star-fill.svg => star-fill-icon.svg} | 0 ...ar-fill-off.svg => star-fill-off-icon.svg} | 0 icons-optimized/{star.svg => star-icon.svg} | 0 .../{star-off.svg => star-off-icon.svg} | 0 .../{success-di.svg => success-di-icon.svg} | 0 .../{thumb-down.svg => thumb-down-icon.svg} | 0 .../{thumb-up.svg => thumb-up-icon.svg} | 0 icons-optimized/{trash.svg => trash-icon.svg} | 0 .../{trash-off.svg => trash-off-icon.svg} | 0 .../{unlink.svg => unlink-icon.svg} | 0 .../{upload-2.svg => upload-2-icon.svg} | 0 ...load-accent.svg => upload-accent-icon.svg} | 0 ...load-c1-cat.svg => upload-c1-cat-icon.svg} | 0 .../{upload.svg => upload-icon.svg} | 0 ...load-lr-cat.svg => upload-lr-cat-icon.svg} | 0 .../{user-check.svg => user-check-icon.svg} | 0 ...lamation.svg => user-exclamation-icon.svg} | 0 icons-optimized/{user.svg => user-icon.svg} | 0 .../{user-minus.svg => user-minus-icon.svg} | 0 .../{user-off.svg => user-off-icon.svg} | 0 .../{user-plus.svg => user-plus-icon.svg} | 0 .../{user-x.svg => user-x-icon.svg} | 0 icons-optimized/{users.svg => users-icon.svg} | 0 .../{view-all.svg => view-all-icon.svg} | 0 .../{viewfinder.svg => viewfinder-icon.svg} | 0 .../{wifi-1.svg => wifi-1-icon.svg} | 0 .../{wifi-2.svg => wifi-2-icon.svg} | 0 icons-optimized/{wifi.svg => wifi-icon.svg} | 0 .../{wifi-off.svg => wifi-off-icon.svg} | 0 icons-optimized/{world.svg => world-icon.svg} | 0 .../{writing.svg => writing-icon.svg} | 0 icons-optimized/{x.svg => x-icon.svg} | 0 .../{zoom-in.svg => zoom-in-icon.svg} | 0 .../{zoom-out.svg => zoom-out-icon.svg} | 0 ...om-question.svg => zoom-question-icon.svg} | 0 .../no-change/{home-mix.svg => home.svg} | 0 icons-original/outline/home-2.svg | 2 +- package.json | 4 +- scripts/optimizeSvgs.mjs | 5 +- scripts/writeSvgMetadata.mjs | 2 +- src/.DS_Store | Bin 6148 -> 6148 bytes .../download.tsx => Icons/Import-icon.tsx} | 6 +- .../adjustments-horizontal-icon.tsx} | 6 +- .../adjustments-icon.tsx} | 6 +- .../aftershoot-credit-icon.tsx} | 6 +- .../aftershoot-logo-icon.tsx} | 6 +- .../alarm.tsx => Icons/alarm-icon.tsx} | 6 +- .../alert-circle-accent-icon.tsx} | 6 +- .../alert-circle-icon.tsx} | 6 +- .../alert-octagon-icon.tsx} | 6 +- .../alert-triangle-accent-icon.tsx} | 6 +- .../alert-triangle-icon.tsx} | 6 +- .../apple.tsx => Icons/apple-icon.tsx} | 6 +- .../arrow-curve-fill-icon.tsx} | 6 +- .../arrow-down-icon.tsx} | 6 +- .../arrow-left-icon.tsx} | 6 +- .../arrow-narrow-left-icon.tsx} | 6 +- .../arrow-narrow-right-icon.tsx} | 6 +- .../arrow-right-icon.tsx} | 6 +- .../arrow-sort-2-icon.tsx} | 6 +- .../arrow-up.tsx => Icons/arrow-up-icon.tsx} | 6 +- .../arrows-diagonal-icon.tsx} | 6 +- .../arrows-sort-icon.tsx} | 6 +- .../atom-accent-icon.tsx} | 6 +- .../atom.tsx => Icons/atom-icon.tsx} | 6 +- .../ban.tsx => Icons/ban-icon.tsx} | 6 +- .../bell.tsx => Icons/bell-icon.tsx} | 6 +- .../bell-minus-icon.tsx} | 6 +- .../bell-off.tsx => Icons/bell-off-icon.tsx} | 6 +- .../bell-plus-icon.tsx} | 6 +- .../bell-ringing-2-icon.tsx} | 6 +- .../bell-ringing-icon.tsx} | 6 +- .../bell-x.tsx => Icons/bell-x-icon.tsx} | 6 +- .../brand-facebook-icon.tsx} | 6 +- .../brand-github-icon.tsx} | 6 +- .../brand-instagram-icon.tsx} | 6 +- .../brand-twitter-icon.tsx} | 6 +- .../brand-whatsapp-icon.tsx} | 6 +- .../brand-youtube-icon.tsx} | 6 +- .../bulb.tsx => Icons/bulb-icon.tsx} | 6 +- .../bulb-off.tsx => Icons/bulb-off-icon.tsx} | 6 +- .../check-box-empty-icon.tsx} | 6 +- .../check.tsx => Icons/check-icon.tsx} | 6 +- .../checkbox-blue-accent-icon.tsx} | 6 +- .../checkbox-green-accent-icon.tsx} | 6 +- .../checkbox-partial-blue-accent-icon.tsx} | 6 +- .../chevron-down-icon.tsx} | 6 +- .../chevron-left-icon.tsx} | 6 +- .../chevron-right-icon.tsx} | 6 +- .../chevron-up-icon.tsx} | 6 +- .../chevrons-left-icon.tsx} | 6 +- .../chevrons-right-icon.tsx} | 6 +- .../circle-check-2-icon.tsx} | 6 +- .../circle-check-icon.tsx} | 6 +- .../circle-cross-accent-icon.tsx} | 6 +- .../circle-fill-icon.tsx} | 6 +- .../circle.tsx => Icons/circle-icon.tsx} | 6 +- .../clock.tsx => Icons/clock-icon.tsx} | 6 +- .../cloud-upload-accent-icon.tsx} | 6 +- .../cloud-upload-icon.tsx} | 6 +- .../collection-icon.tsx} | 6 +- .../color-swatch-icon.tsx} | 6 +- .../confetti.tsx => Icons/confetti-icon.tsx} | 6 +- .../copy.tsx => Icons/copy-icon.tsx} | 6 +- .../crown-2-fill-icon.tsx} | 6 +- .../crown.tsx => Icons/crown-icon.tsx} | 6 +- .../currency-dollar-icon.tsx} | 6 +- .../current-location-icon.tsx} | 6 +- .../device-desktop-analytics-icon.tsx} | 6 +- .../device-desktop-icon.tsx} | 6 +- .../device-desktop-off-icon.tsx} | 6 +- .../device-laptop-icon.tsx} | 6 +- .../device-tv-icon.tsx} | 6 +- .../diamond.tsx => Icons/diamond-icon.tsx} | 6 +- .../discount-2-icon.tsx} | 6 +- .../discount.tsx => Icons/discount-icon.tsx} | 6 +- .../disk.tsx => Icons/disk-icon.tsx} | 6 +- .../dots-vertical-icon.tsx} | 6 +- .../download-accent-icon.tsx} | 6 +- .../Import.tsx => Icons/download-icon.tsx} | 6 +- .../edit-icon-icon.tsx} | 6 +- .../edit.tsx => Icons/edit-icon.tsx} | 6 +- .../external-link-icon.tsx} | 6 +- .../eye-check-icon.tsx} | 6 +- .../eye.tsx => Icons/eye-icon.tsx} | 6 +- .../eye-off.tsx => Icons/eye-off-icon.tsx} | 6 +- .../facebook.tsx => Icons/facebook-icon.tsx} | 6 +- .../file-download-icon.tsx} | 6 +- .../file-export-icon.tsx} | 6 +- .../file-report-icon.tsx} | 6 +- .../file-search-icon.tsx} | 6 +- .../filter.tsx => Icons/filter-icon.tsx} | 6 +- .../filter-off-icon.tsx} | 6 +- .../flag-fill-icon.tsx} | 6 +- .../flag.tsx => Icons/flag-icon.tsx} | 6 +- .../flag-off.tsx => Icons/flag-off-icon.tsx} | 6 +- .../folder-download-icon.tsx} | 6 +- .../folder-eye-icon.tsx} | 6 +- .../folder-fill-icon.tsx} | 6 +- .../folder.tsx => Icons/folder-icon.tsx} | 6 +- .../folder-minus-icon.tsx} | 6 +- .../folder-off-icon.tsx} | 6 +- .../folder-plus-icon.tsx} | 6 +- .../folder-upload-icon.tsx} | 6 +- .../folder-x.tsx => Icons/folder-x-icon.tsx} | 6 +- .../folders.tsx => Icons/folders-icon.tsx} | 6 +- .../google-color-icon.tsx} | 6 +- .../grab-hand-icon.tsx} | 6 +- .../grid-dots-icon.tsx} | 6 +- .../grid-view-1-icon.tsx} | 6 +- .../grid-view-2-icon.tsx} | 6 +- .../home-2.tsx => Icons/home-2-icon.tsx} | 7 +- .../home-mix.tsx => Icons/home-icon.tsx} | 6 +- .../image-border-icon.tsx} | 6 +- src/Icons/index.ts | 233 +++++++++++++++++- .../info-circle-icon.tsx} | 6 +- .../info-cirlce-2-icon.tsx} | 6 +- .../info.tsx => Icons/info-icon.tsx} | 6 +- .../info-square-icon.tsx} | 6 +- .../key-2.tsx => Icons/key-2-icon.tsx} | 6 +- .../key-duplicate-icon.tsx} | 6 +- .../key.tsx => Icons/key-icon.tsx} | 6 +- .../layout-sidebar-right-mix-icon.tsx} | 6 +- .../link.tsx => Icons/link-icon.tsx} | 6 +- .../list-fill-icon.tsx} | 6 +- .../loader.tsx => Icons/loader-icon.tsx} | 6 +- .../lock-2.tsx => Icons/lock-2-icon.tsx} | 6 +- .../lock.tsx => Icons/lock-icon.tsx} | 6 +- .../lock-off.tsx => Icons/lock-off-icon.tsx} | 6 +- .../lock-open-icon.tsx} | 6 +- .../loop.tsx => Icons/loop-icon.tsx} | 6 +- .../loupe-fill-icon.tsx} | 6 +- .../mail.tsx => Icons/mail-icon.tsx} | 6 +- .../map-2.tsx => Icons/map-2-icon.tsx} | 6 +- .../map-pin.tsx => Icons/map-pin-icon.tsx} | 6 +- .../map-pin-off-icon.tsx} | 6 +- .../minus.tsx => Icons/minus-icon.tsx} | 6 +- .../mood-crazy-happy-icon.tsx} | 6 +- .../mood-empty-icon.tsx} | 6 +- .../mood-gray-icon.tsx} | 6 +- .../mood.tsx => Icons/mood-icon.tsx} | 6 +- .../mood-sad.tsx => Icons/mood-sad-icon.tsx} | 6 +- .../mood-smile-icon.tsx} | 6 +- .../mouse-left-2-icon.tsx} | 6 +- .../mouse-left-icon.tsx} | 6 +- .../mouse-right-icon.tsx} | 6 +- .../no-duplicate-icon.tsx} | 6 +- .../none-selected-icon.tsx} | 6 +- .../palette-fill-icon.tsx} | 6 +- .../palette.tsx => Icons/palette-icon.tsx} | 6 +- .../pause-fill-icon.tsx} | 6 +- .../photo.tsx => Icons/photo-icon.tsx} | 6 +- .../photo-off-2-icon.tsx} | 6 +- .../photo-off-icon.tsx} | 6 +- .../photo-stack-icon.tsx} | 6 +- .../pinned.tsx => Icons/pinned-icon.tsx} | 6 +- .../play-fill-icon.tsx} | 6 +- .../play.tsx => Icons/play-icon.tsx} | 6 +- .../player.tsx => Icons/player-icon.tsx} | 6 +- .../plus.tsx => Icons/plus-icon.tsx} | 6 +- .../question-mark-icon.tsx} | 6 +- .../recull.tsx => Icons/recull-icon.tsx} | 6 +- .../redeem.tsx => Icons/redeem-icon.tsx} | 6 +- .../refresh-2-icon.tsx} | 6 +- .../refresh-alert-icon.tsx} | 6 +- .../refresh.tsx => Icons/refresh-icon.tsx} | 6 +- .../reload-alert-icon.tsx} | 6 +- .../rotate-clockwise-icon.tsx} | 6 +- .../rotate.tsx => Icons/rotate-icon.tsx} | 6 +- .../scissors.tsx => Icons/scissors-icon.tsx} | 6 +- .../search.tsx => Icons/search-icon.tsx} | 6 +- .../share.tsx => Icons/share-icon.tsx} | 6 +- .../shopping-cart-discount-icon.tsx} | 6 +- .../shopping-cart-icon.tsx} | 6 +- .../sort-ascending-2-icon.tsx} | 6 +- .../sort-ascending-icon.tsx} | 6 +- .../sort-ascending-letters-icon.tsx} | 6 +- .../sort-ascending-numbers-icon.tsx} | 6 +- .../sort-descending-2-icon.tsx} | 6 +- .../sort-descending-icon.tsx} | 6 +- .../sort-descending-letters-icon.tsx} | 6 +- .../sort-descending-numbers-icon.tsx} | 6 +- .../sparkle.tsx => Icons/sparkle-icon.tsx} | 6 +- .../spray.tsx => Icons/spray-icon.tsx} | 6 +- .../spray_2.tsx => Icons/spray_2-icon.tsx} | 6 +- .../stack-double-icon.tsx} | 6 +- .../stack-triple-icon.tsx} | 6 +- .../star - 0.tsx => Icons/star - 0-icon.tsx} | 6 +- .../star - 1.tsx => Icons/star - 1-icon.tsx} | 6 +- .../star - 2.tsx => Icons/star - 2-icon.tsx} | 6 +- .../star - 3.tsx => Icons/star - 3-icon.tsx} | 6 +- .../star - 4.tsx => Icons/star - 4-icon.tsx} | 6 +- .../star - 5.tsx => Icons/star - 5-icon.tsx} | 6 +- .../star-fill-icon.tsx} | 6 +- .../star-fill-off-icon.tsx} | 6 +- .../star.tsx => Icons/star-icon.tsx} | 6 +- .../star-off.tsx => Icons/star-off-icon.tsx} | 6 +- .../success-di-icon.tsx} | 6 +- .../thumb-down-icon.tsx} | 6 +- .../thumb-up.tsx => Icons/thumb-up-icon.tsx} | 6 +- .../trash.tsx => Icons/trash-icon.tsx} | 6 +- .../trash-off-icon.tsx} | 6 +- .../unlink.tsx => Icons/unlink-icon.tsx} | 6 +- .../upload-2.tsx => Icons/upload-2-icon.tsx} | 6 +- .../upload-accent-icon.tsx} | 6 +- .../upload-c1-cat-icon.tsx} | 6 +- .../upload.tsx => Icons/upload-icon.tsx} | 6 +- .../upload-lr-cat-icon.tsx} | 6 +- .../user-check-icon.tsx} | 6 +- .../user-exclamation-icon.tsx} | 6 +- .../user.tsx => Icons/user-icon.tsx} | 6 +- .../user-minus-icon.tsx} | 6 +- .../user-off.tsx => Icons/user-off-icon.tsx} | 6 +- .../user-plus-icon.tsx} | 6 +- .../user-x.tsx => Icons/user-x-icon.tsx} | 6 +- .../users.tsx => Icons/users-icon.tsx} | 6 +- .../view-all.tsx => Icons/view-all-icon.tsx} | 6 +- .../viewfinder-icon.tsx} | 6 +- .../wifi-1.tsx => Icons/wifi-1-icon.tsx} | 6 +- .../wifi-2.tsx => Icons/wifi-2-icon.tsx} | 6 +- .../wifi.tsx => Icons/wifi-icon.tsx} | 6 +- .../wifi-off.tsx => Icons/wifi-off-icon.tsx} | 6 +- .../world.tsx => Icons/world-icon.tsx} | 6 +- .../writing.tsx => Icons/writing-icon.tsx} | 6 +- src/{icons-test/x.tsx => Icons/x-icon.tsx} | 6 +- .../zoom-in.tsx => Icons/zoom-in-icon.tsx} | 6 +- .../zoom-out.tsx => Icons/zoom-out-icon.tsx} | 6 +- .../zoom-question-icon.tsx} | 6 +- src/icons-omega/Crown Play.tsx | 23 -- src/icons-omega/Import.tsx | 30 --- src/icons-omega/adjustments-horizontal.tsx | 36 --- src/icons-omega/adjustments.tsx | 36 --- src/icons-omega/aftershoot-logo.tsx | 20 -- src/icons-omega/alarm.tsx | 31 --- src/icons-omega/alert-circle-fill.tsx | 29 --- src/icons-omega/alert-circle.tsx | 30 --- src/icons-omega/alert-octagon.tsx | 30 --- src/icons-omega/alert-triangle-fill.tsx | 26 -- src/icons-omega/alert-triangle.tsx | 29 --- src/icons-omega/apple-all.tsx | 20 -- src/icons-omega/arrow-curve-fill.tsx | 20 -- src/icons-omega/arrow-down.tsx | 30 --- src/icons-omega/arrow-left.tsx | 30 --- src/icons-omega/arrow-narrow-left.tsx | 30 --- src/icons-omega/arrow-narrow-right.tsx | 30 --- src/icons-omega/arrow-right.tsx | 30 --- src/icons-omega/arrow-sort-2.tsx | 21 -- src/icons-omega/arrow-up.tsx | 30 --- src/icons-omega/arrows-diagonal.tsx | 31 --- src/icons-omega/arrows-sort.tsx | 29 --- src/icons-omega/atom.tsx | 30 --- src/icons-omega/ban.tsx | 29 --- src/icons-omega/bell-minus.tsx | 30 --- src/icons-omega/bell-off.tsx | 30 --- src/icons-omega/bell-plus.tsx | 31 --- src/icons-omega/bell-ringing-2.tsx | 29 --- src/icons-omega/bell-ringing.tsx | 31 --- src/icons-omega/bell-x.tsx | 30 --- src/icons-omega/bell.tsx | 29 --- src/icons-omega/brand-facebook.tsx | 27 -- src/icons-omega/brand-github.tsx | 27 -- src/icons-omega/brand-instagram.tsx | 30 --- src/icons-omega/brand-twitter.tsx | 27 -- src/icons-omega/brand-whatsapp.tsx | 29 --- src/icons-omega/brand-youtube.tsx | 29 --- src/icons-omega/bulb-off.tsx | 29 --- src/icons-omega/bulb.tsx | 30 --- src/icons-omega/check.tsx | 23 -- src/icons-omega/checkBlue.tsx | 27 -- src/icons-omega/check_box.tsx | 40 --- src/icons-omega/check_box_empty.tsx | 32 --- src/icons-omega/chevron-down.tsx | 23 -- src/icons-omega/chevron-left.tsx | 23 -- src/icons-omega/chevron-right.tsx | 23 -- src/icons-omega/chevron-up.tsx | 23 -- src/icons-omega/chevrons-left.tsx | 29 --- src/icons-omega/chevrons-right.tsx | 29 --- src/icons-omega/circle-check-2.tsx | 27 -- src/icons-omega/circle-check.tsx | 29 --- src/icons-omega/circle-fill.tsx | 20 -- src/icons-omega/circle.tsx | 27 -- src/icons-omega/clock.tsx | 29 --- src/icons-omega/cloud-upload-accent.tsx | 27 -- src/icons-omega/cloud-upload.tsx | 30 --- src/icons-omega/collection.tsx | 29 --- src/icons-omega/color-swatch.tsx | 31 --- src/icons-omega/confetti.tsx | 37 --- src/icons-omega/copy.tsx | 29 --- src/icons-omega/crown-2-fill.tsx | 27 -- src/icons-omega/crown.tsx | 27 -- src/icons-omega/currency-dollar.tsx | 29 --- src/icons-omega/current-location.tsx | 33 --- src/icons-omega/device-desktop-analytics.tsx | 35 --- src/icons-omega/device-desktop-off.tsx | 32 --- src/icons-omega/device-desktop.tsx | 30 --- src/icons-omega/device-laptop.tsx | 29 --- src/icons-omega/device-tv.tsx | 29 --- src/icons-omega/diamond.tsx | 29 --- src/icons-omega/discount-2.tsx | 31 --- src/icons-omega/discount.tsx | 31 --- src/icons-omega/disk.tsx | 39 --- src/icons-omega/dots-vertical.tsx | 31 --- src/icons-omega/download-accent.tsx | 27 -- src/icons-omega/download.tsx | 30 --- src/icons-omega/edit.tsx | 30 --- src/icons-omega/external-link.tsx | 30 --- src/icons-omega/eye-check.tsx | 30 --- src/icons-omega/eye-off.tsx | 30 --- src/icons-omega/eye.tsx | 29 --- src/icons-omega/facebook.tsx | 20 -- src/icons-omega/file-download.tsx | 31 --- src/icons-omega/file-export.tsx | 29 --- src/icons-omega/file-report.tsx | 31 --- src/icons-omega/file-search.tsx | 31 --- src/icons-omega/filter-off.tsx | 29 --- src/icons-omega/filter.tsx | 27 -- src/icons-omega/flag-fill.tsx | 28 --- src/icons-omega/flag-off.tsx | 29 --- src/icons-omega/flag.tsx | 27 -- src/icons-omega/folder-download.tsx | 30 --- src/icons-omega/folder-eye.tsx | 29 --- src/icons-omega/folder-fill.tsx | 44 ---- src/icons-omega/folder-minus.tsx | 29 --- src/icons-omega/folder-off.tsx | 29 --- src/icons-omega/folder-plus.tsx | 30 --- src/icons-omega/folder-upload.tsx | 30 --- src/icons-omega/folder-x.tsx | 29 --- src/icons-omega/folder.tsx | 27 -- src/icons-omega/folders.tsx | 29 --- src/icons-omega/grid-dots.tsx | 36 --- src/icons-omega/grid-view-1.tsx | 35 --- src/icons-omega/grid-view-2.tsx | 35 --- src/icons-omega/home-2.tsx | 40 --- src/icons-omega/home-mix.tsx | 54 ---- src/icons-omega/image-border.tsx | 24 -- src/icons-omega/index.ts | 17 -- src/icons-omega/info-circle.tsx | 30 --- src/icons-omega/info-cirlce-2.tsx | 32 --- src/icons-omega/info-square.tsx | 30 --- src/icons-omega/info.tsx | 27 -- src/icons-omega/key-2.tsx | 21 -- src/icons-omega/key-duplicate-fill.tsx | 25 -- src/icons-omega/key-duplicate.tsx | 27 -- src/icons-omega/key.tsx | 31 --- src/icons-omega/layout-sidebar-right-mix.tsx | 35 --- src/icons-omega/link.tsx | 29 --- src/icons-omega/list-fill.tsx | 25 -- src/icons-omega/loader.tsx | 35 --- src/icons-omega/lock-2.tsx | 29 --- src/icons-omega/lock-off.tsx | 31 --- src/icons-omega/lock-open.tsx | 30 --- src/icons-omega/lock.tsx | 30 --- src/icons-omega/loop.tsx | 39 --- src/icons-omega/loupe-fill.tsx | 25 -- src/icons-omega/mail.tsx | 29 --- src/icons-omega/map-2.tsx | 32 --- src/icons-omega/map-pin-off.tsx | 30 --- src/icons-omega/map-pin.tsx | 29 --- src/icons-omega/minus.tsx | 16 -- src/icons-omega/mood-crazy-happy.tsx | 33 --- src/icons-omega/mood-empty.tsx | 31 --- src/icons-omega/mood-sad.tsx | 31 --- src/icons-omega/mood-smile.tsx | 31 --- src/icons-omega/mood.tsx | 37 --- src/icons-omega/mood_gray.tsx | 37 --- src/icons-omega/mouse-left-2.tsx | 36 --- src/icons-omega/mouse-left.tsx | 26 -- src/icons-omega/mouse-right.tsx | 26 -- src/icons-omega/no-duplicate.tsx | 32 --- src/icons-omega/none-selected.tsx | 32 --- src/icons-omega/palette-fill.tsx | 20 -- src/icons-omega/palette.tsx | 31 --- src/icons-omega/partially_checked.tsx | 47 ---- src/icons-omega/pause-fill.tsx | 25 -- src/icons-omega/photo-off-2.tsx | 28 --- src/icons-omega/photo-off.tsx | 32 --- src/icons-omega/photo-stack.tsx | 32 --- src/icons-omega/photo.tsx | 31 --- src/icons-omega/pinned.tsx | 30 --- src/icons-omega/play-fill.tsx | 20 -- src/icons-omega/plus.tsx | 29 --- src/icons-omega/question-mark.tsx | 29 --- src/icons-omega/recull.tsx | 42 ---- src/icons-omega/redeem.tsx | 39 --- src/icons-omega/refresh-2.tsx | 33 --- src/icons-omega/refresh-alert.tsx | 27 -- src/icons-omega/refresh.tsx | 27 -- src/icons-omega/reload-alert.tsx | 21 -- src/icons-omega/rotate-90.tsx | 29 --- src/icons-omega/rotate-clockwise.tsx | 32 --- src/icons-omega/rotate.tsx | 32 --- src/icons-omega/scissors-fill.tsx | 36 --- src/icons-omega/search.tsx | 29 --- src/icons-omega/share.tsx | 32 --- src/icons-omega/shopping-cart-discount.tsx | 34 --- src/icons-omega/shopping-cart.tsx | 31 --- src/icons-omega/sort-ascending-2.tsx | 31 --- src/icons-omega/sort-ascending-letters.tsx | 31 --- src/icons-omega/sort-ascending-numbers.tsx | 32 --- src/icons-omega/sort-ascending.tsx | 32 --- src/icons-omega/sort-descending-2.tsx | 31 --- src/icons-omega/sort-descending-letters.tsx | 31 --- src/icons-omega/sort-descending-numbers.tsx | 32 --- src/icons-omega/sort-descending.tsx | 32 --- src/icons-omega/sparkle.tsx | 25 -- src/icons-omega/spray.tsx | 27 -- src/icons-omega/spray_2.tsx | 25 -- src/icons-omega/stack-2.tsx | 31 --- src/icons-omega/stack-double.tsx | 29 --- src/icons-omega/stack-triple.tsx | 30 --- src/icons-omega/stack.tsx | 32 --- src/icons-omega/star - 0.tsx | 33 --- src/icons-omega/star - 1.tsx | 33 --- src/icons-omega/star - 2.tsx | 33 --- src/icons-omega/star - 3.tsx | 33 --- src/icons-omega/star - 4.tsx | 33 --- src/icons-omega/star - 5.tsx | 33 --- src/icons-omega/star-fill.tsx | 22 -- src/icons-omega/star-off-fill.tsx | 34 --- src/icons-omega/star-off.tsx | 29 --- src/icons-omega/star.tsx | 27 -- src/icons-omega/thumb-down.tsx | 27 -- src/icons-omega/thumb-up.tsx | 27 -- src/icons-omega/trash-off.tsx | 34 --- src/icons-omega/trash.tsx | 32 --- src/icons-omega/unlink.tsx | 33 --- src/icons-omega/upload-2.tsx | 21 -- src/icons-omega/upload-accent.tsx | 33 --- src/icons-omega/upload-c1-cat.tsx | 46 ---- src/icons-omega/upload-lr-cat.tsx | 46 ---- src/icons-omega/upload.tsx | 30 --- src/icons-omega/user-check.tsx | 30 --- src/icons-omega/user-exclamation.tsx | 31 --- src/icons-omega/user-minus.tsx | 30 --- src/icons-omega/user-off.tsx | 30 --- src/icons-omega/user-plus.tsx | 30 --- src/icons-omega/user-x.tsx | 30 --- src/icons-omega/user.tsx | 29 --- src/icons-omega/users.tsx | 31 --- src/icons-omega/view-all.tsx | 20 -- src/icons-omega/viewfinder.tsx | 33 --- src/icons-omega/wifi-1.tsx | 29 --- src/icons-omega/wifi-2.tsx | 30 --- src/icons-omega/wifi-off.tsx | 45 ---- src/icons-omega/wifi.tsx | 31 --- src/icons-omega/world.tsx | 32 --- src/icons-omega/writing.tsx | 21 -- src/icons-omega/x.tsx | 29 --- src/icons-omega/zoom-in.tsx | 31 --- src/icons-omega/zoom-out.tsx | 30 --- src/icons-omega/zoom-question.tsx | 31 --- src/icons-test/index.ts | 227 ----------------- src/index.ts | 1 + .../AdjustmentsHorizontalIcon.stories.tsx | 70 ++++++ src/stories/AdjustmentsIcon.stories.tsx | 70 ++++++ ...s.tsx => AftershootCreditIcon.stories.tsx} | 10 +- ...ies.tsx => AftershootLogoIcon.stories.tsx} | 10 +- src/stories/AlarmIcon.stories.tsx | 70 ++++++ ....tsx => AlertCircleAccentIcon.stories.tsx} | 10 +- src/stories/AlertCircleIcon.stories.tsx | 70 ++++++ src/stories/AlertOctagonIcon.stories.tsx | 70 ++++++ src/stories/AlertTriangle.stories.tsx | 70 ------ .../AlertTriangleAccentIcon.stories.tsx | 71 ++++++ ...ries.tsx => AlertTriangleIcon.stories.tsx} | 10 +- ...pple.stories.tsx => AppleIcon.stories.tsx} | 10 +- src/stories/ArrowCurveFillIcon.stories.tsx | 77 ++++++ ....stories.tsx => ArrowDownIcon.stories.tsx} | 10 +- src/stories/ArrowLeftIcon.stories.tsx | 70 ++++++ src/stories/ArrowNarrowLeft.stories.tsx | 70 ------ src/stories/ArrowNarrowLeftIcon.stories.tsx | 70 ++++++ src/stories/ArrowNarrowRightIcon.stories.tsx | 70 ++++++ ...stories.tsx => ArrowRightIcon.stories.tsx} | 10 +- src/stories/ArrowSort2.stories.tsx | 70 ------ src/stories/ArrowSort2Icon.stories.tsx | 70 ++++++ src/stories/ArrowUpIcon.stories.tsx | 70 ++++++ src/stories/ArrowsDiagonal.stories.tsx | 70 ------ src/stories/ArrowsDiagonalIcon.stories.tsx | 70 ++++++ src/stories/ArrowsSort.stories.tsx | 70 ------ src/stories/ArrowsSortIcon.stories.tsx | 70 ++++++ src/stories/AtomAccentIcon.stories.tsx | 71 ++++++ ...rowUp.stories.tsx => AtomIcon.stories.tsx} | 10 +- .../{Atom.stories.tsx => BanIcon.stories.tsx} | 10 +- src/stories/BellIcon.stories.tsx | 70 ++++++ src/stories/BellMinus.stories.tsx | 70 ------ src/stories/BellMinusIcon.stories.tsx | 70 ++++++ src/stories/BellOff.stories.tsx | 70 ------ src/stories/BellOffIcon.stories.tsx | 70 ++++++ src/stories/BellPlus.stories.tsx | 70 ------ src/stories/BellPlusIcon.stories.tsx | 70 ++++++ src/stories/BellRinging.stories.tsx | 70 ------ src/stories/BellRinging2.stories.tsx | 70 ------ src/stories/BellRinging2Icon.stories.tsx | 70 ++++++ src/stories/BellRingingIcon.stories.tsx | 70 ++++++ src/stories/BellX.stories.tsx | 70 ------ src/stories/BellXIcon.stories.tsx | 70 ++++++ src/stories/BrandFacebook.stories.tsx | 70 ------ ...ries.tsx => BrandFacebookIcon.stories.tsx} | 10 +- src/stories/BrandGithub.stories.tsx | 70 ------ src/stories/BrandGithubIcon.stories.tsx | 70 ++++++ src/stories/BrandInstagram.stories.tsx | 70 ------ src/stories/BrandInstagramIcon.stories.tsx | 70 ++++++ src/stories/BrandTwitter.stories.tsx | 70 ------ src/stories/BrandTwitterIcon.stories.tsx | 70 ++++++ src/stories/BrandWhatsapp.stories.tsx | 70 ------ ...ries.tsx => BrandWhatsappIcon.stories.tsx} | 10 +- src/stories/BrandYoutube.stories.tsx | 70 ------ src/stories/BrandYoutubeIcon.stories.tsx | 70 ++++++ src/stories/Bulb.stories.tsx | 70 ------ src/stories/BulbIcon.stories.tsx | 70 ++++++ src/stories/BulbOff.stories.tsx | 70 ------ src/stories/BulbOffIcon.stories.tsx | 70 ++++++ src/stories/Check.stories.tsx | 70 ------ src/stories/CheckBoxEmptyIcon.stories.tsx | 77 ++++++ src/stories/CheckIcon.stories.tsx | 70 ++++++ .../CheckboxBlueAccentIcon.stories.tsx | 71 ++++++ src/stories/CheckboxGreenAccent.stories.tsx | 71 ------ .../CheckboxGreenAccentIcon.stories.tsx | 71 ++++++ .../CheckboxPartialBlueAccent.stories.tsx | 71 ------ .../CheckboxPartialBlueAccentIcon.stories.tsx | 71 ++++++ src/stories/ChevronDown.stories.tsx | 70 ------ src/stories/ChevronDownIcon.stories.tsx | 70 ++++++ src/stories/ChevronLeft.stories.tsx | 70 ------ src/stories/ChevronLeftIcon.stories.tsx | 70 ++++++ src/stories/ChevronRight.stories.tsx | 70 ------ src/stories/ChevronRightIcon.stories.tsx | 70 ++++++ src/stories/ChevronUp.stories.tsx | 70 ------ src/stories/ChevronUpIcon.stories.tsx | 70 ++++++ src/stories/ChevronsLeft.stories.tsx | 70 ------ src/stories/ChevronsLeftIcon.stories.tsx | 70 ++++++ src/stories/ChevronsRight.stories.tsx | 70 ------ src/stories/ChevronsRightIcon.stories.tsx | 70 ++++++ src/stories/Circle.stories.tsx | 70 ------ src/stories/CircleCheck.stories.tsx | 70 ------ src/stories/CircleCheck2.stories.tsx | 70 ------ src/stories/CircleCheck2Icon.stories.tsx | 70 ++++++ src/stories/CircleCheckIcon.stories.tsx | 70 ++++++ src/stories/CircleCrossAccent.stories.tsx | 71 ------ ....tsx => CircleCrossAccentIcon.stories.tsx} | 10 +- src/stories/CircleFillIcon.stories.tsx | 77 ++++++ ...own.stories.tsx => CircleIcon.stories.tsx} | 10 +- src/stories/Clock.stories.tsx | 70 ------ src/stories/ClockIcon.stories.tsx | 70 ++++++ src/stories/CloudUpload.stories.tsx | 70 ------ src/stories/CloudUploadAccent.stories.tsx | 71 ------ src/stories/CloudUploadAccentIcon.stories.tsx | 71 ++++++ src/stories/CloudUploadIcon.stories.tsx | 70 ++++++ ...stories.tsx => CollectionIcon.stories.tsx} | 10 +- src/stories/ColorSwatch.stories.tsx | 70 ------ src/stories/ColorSwatchIcon.stories.tsx | 70 ++++++ src/stories/Confetti.stories.tsx | 70 ------ ...s.stories.tsx => ConfettiIcon.stories.tsx} | 10 +- src/stories/Copy.stories.tsx | 70 ------ src/stories/CopyIcon.stories.tsx | 70 ++++++ src/stories/Crown2FillIcon.stories.tsx | 77 ++++++ src/stories/CrownIcon.stories.tsx | 70 ++++++ src/stories/CurrencyDollar.stories.tsx | 70 ------ src/stories/CurrencyDollarIcon.stories.tsx | 70 ++++++ src/stories/CurrentLocationIcon.stories.tsx | 70 ++++++ src/stories/DeviceDesktop.stories.tsx | 70 ------ .../DeviceDesktopAnalytics.stories.tsx | 70 ------ .../DeviceDesktopAnalyticsIcon.stories.tsx | 70 ++++++ src/stories/DeviceDesktopIcon.stories.tsx | 70 ++++++ src/stories/DeviceDesktopOff.stories.tsx | 70 ------ src/stories/DeviceDesktopOffIcon.stories.tsx | 70 ++++++ src/stories/DeviceLaptop.stories.tsx | 70 ------ ...ories.tsx => DeviceLaptopIcon.stories.tsx} | 10 +- src/stories/DeviceTv.stories.tsx | 70 ------ src/stories/DeviceTvIcon.stories.tsx | 70 ++++++ src/stories/Diamond.stories.tsx | 70 ------ ...ht.stories.tsx => DiamondIcon.stories.tsx} | 10 +- src/stories/Discount.stories.tsx | 70 ------ src/stories/Discount2.stories.tsx | 70 ------ src/stories/Discount2Icon.stories.tsx | 70 ++++++ ...e.stories.tsx => DiscountIcon.stories.tsx} | 10 +- src/stories/Disk.stories.tsx | 70 ------ src/stories/DiskIcon.stories.tsx | 70 ++++++ src/stories/DotsVertical.stories.tsx | 70 ------ src/stories/DotsVerticalIcon.stories.tsx | 70 ++++++ src/stories/Download.stories.tsx | 70 ------ ...ies.tsx => DownloadAccentIcon.stories.tsx} | 10 +- src/stories/DownloadIcon.stories.tsx | 70 ++++++ src/stories/Edit.stories.tsx | 70 ------ src/stories/EditIcon.stories.tsx | 11 +- ...r.stories.tsx => EditIconIcon.stories.tsx} | 10 +- src/stories/ExternalLink.stories.tsx | 70 ------ src/stories/ExternalLinkIcon.stories.tsx | 70 ++++++ src/stories/Eye.stories.tsx | 70 ------ src/stories/EyeCheck.stories.tsx | 70 ------ src/stories/EyeCheckIcon.stories.tsx | 70 ++++++ .../{Ban.stories.tsx => EyeIcon.stories.tsx} | 10 +- src/stories/EyeOff.stories.tsx | 70 ------ src/stories/EyeOffIcon.stories.tsx | 70 ++++++ ...l.stories.tsx => FacebookIcon.stories.tsx} | 10 +- src/stories/FileDownload.stories.tsx | 70 ------ src/stories/FileDownloadIcon.stories.tsx | 70 ++++++ src/stories/FileExport.stories.tsx | 70 ------ src/stories/FileExportIcon.stories.tsx | 70 ++++++ src/stories/FileReport.stories.tsx | 70 ------ src/stories/FileReportIcon.stories.tsx | 70 ++++++ src/stories/FileSearch.stories.tsx | 70 ------ src/stories/FileSearchIcon.stories.tsx | 70 ++++++ src/stories/Filter.stories.tsx | 70 ------ ...eft.stories.tsx => FilterIcon.stories.tsx} | 10 +- src/stories/FilterOff.stories.tsx | 70 ------ src/stories/FilterOffIcon.stories.tsx | 70 ++++++ src/stories/Flag.stories.tsx | 70 ------ ...r.stories.tsx => FlagFillIcon.stories.tsx} | 10 +- src/stories/FlagIcon.stories.tsx | 70 ++++++ src/stories/FlagOff.stories.tsx | 70 ------ src/stories/FlagOffIcon.stories.tsx | 70 ++++++ src/stories/Folder.stories.tsx | 70 ------ src/stories/FolderDownload.stories.tsx | 70 ------ src/stories/FolderDownloadIcon.stories.tsx | 70 ++++++ src/stories/FolderEye.stories.tsx | 70 ------ src/stories/FolderEyeIcon.stories.tsx | 70 ++++++ src/stories/FolderFillIcon.stories.tsx | 77 ++++++ src/stories/FolderIcon.stories.tsx | 70 ++++++ src/stories/FolderMinus.stories.tsx | 70 ------ src/stories/FolderMinusIcon.stories.tsx | 70 ++++++ src/stories/FolderOff.stories.tsx | 70 ------ ....stories.tsx => FolderOffIcon.stories.tsx} | 10 +- src/stories/FolderPlus.stories.tsx | 70 ------ src/stories/FolderPlusIcon.stories.tsx | 70 ++++++ src/stories/FolderUploadIcon.stories.tsx | 70 ++++++ src/stories/FolderX.stories.tsx | 70 ------ src/stories/FolderXIcon.stories.tsx | 70 ++++++ src/stories/Folders.stories.tsx | 70 ------ src/stories/FoldersIcon.stories.tsx | 70 ++++++ ...tories.tsx => GoogleColorIcon.stories.tsx} | 10 +- ...t.stories.tsx => GrabHandIcon.stories.tsx} | 10 +- src/stories/GridDots.stories.tsx | 70 ------ src/stories/GridDotsIcon.stories.tsx | 70 ++++++ src/stories/GridView1.stories.tsx | 77 ------ src/stories/GridView1Icon.stories.tsx | 77 ++++++ src/stories/GridView2.stories.tsx | 77 ------ src/stories/GridView2Icon.stories.tsx | 77 ++++++ src/stories/Home2.stories.tsx | 70 ------ src/stories/Home2Icon.stories.tsx | 70 ++++++ ...ecull.stories.tsx => HomeIcon.stories.tsx} | 10 +- ...tories.tsx => ImageBorderIcon.stories.tsx} | 10 +- src/stories/Import.stories.tsx | 70 ------ src/stories/ImportIcon.stories.tsx | 70 ++++++ src/stories/Info.stories.tsx | 70 ------ src/stories/InfoCircle.stories.tsx | 70 ------ src/stories/InfoCircleIcon.stories.tsx | 70 ++++++ src/stories/InfoCirlce2.stories.tsx | 70 ------ src/stories/InfoCirlce2Icon.stories.tsx | 70 ++++++ src/stories/InfoIcon.stories.tsx | 70 ++++++ src/stories/InfoSquare.stories.tsx | 70 ------ src/stories/InfoSquareIcon.stories.tsx | 70 ++++++ src/stories/Key.stories.tsx | 70 ------ src/stories/Key2.stories.tsx | 70 ------ src/stories/Key2Icon.stories.tsx | 70 ++++++ src/stories/KeyDuplicate.stories.tsx | 70 ------ src/stories/KeyDuplicateIcon.stories.tsx | 70 ++++++ ...{Alarm.stories.tsx => KeyIcon.stories.tsx} | 10 +- ... => LayoutSidebarRightMixIcon.stories.tsx} | 10 +- src/stories/Link.stories.tsx | 70 ------ src/stories/LinkIcon.stories.tsx | 70 ++++++ src/stories/ListFill.stories.tsx | 77 ------ ...l.stories.tsx => ListFillIcon.stories.tsx} | 10 +- src/stories/Loader.stories.tsx | 70 ------ src/stories/LoaderIcon.stories.tsx | 70 ++++++ src/stories/Lock.stories.tsx | 70 ------ src/stories/Lock2.stories.tsx | 70 ------ src/stories/Lock2Icon.stories.tsx | 70 ++++++ src/stories/LockIcon.stories.tsx | 70 ++++++ src/stories/LockOff.stories.tsx | 70 ------ src/stories/LockOffIcon.stories.tsx | 70 ++++++ src/stories/LockOpen.stories.tsx | 70 ------ src/stories/LockOpenIcon.stories.tsx | 70 ++++++ src/stories/Loop.stories.tsx | 70 ------ src/stories/LoopIcon.stories.tsx | 70 ++++++ src/stories/LoupeFill.stories.tsx | 77 ------ src/stories/LoupeFillIcon.stories.tsx | 77 ++++++ src/stories/Mail.stories.tsx | 70 ------ src/stories/MailIcon.stories.tsx | 70 ++++++ src/stories/Map2.stories.tsx | 70 ------ src/stories/Map2Icon.stories.tsx | 70 ++++++ src/stories/MapPin.stories.tsx | 70 ------ src/stories/MapPinIcon.stories.tsx | 70 ++++++ src/stories/MapPinOff.stories.tsx | 70 ------ src/stories/MapPinOffIcon.stories.tsx | 70 ++++++ src/stories/Minus.stories.tsx | 70 ------ src/stories/MinusIcon.stories.tsx | 70 ++++++ src/stories/MoodCrazyHappy.stories.tsx | 70 ------ ...ies.tsx => MoodCrazyHappyIcon.stories.tsx} | 10 +- src/stories/MoodEmpty.stories.tsx | 70 ------ src/stories/MoodEmptyIcon.stories.tsx | 70 ++++++ ...d.stories.tsx => MoodGrayIcon.stories.tsx} | 10 +- ...meMix.stories.tsx => MoodIcon.stories.tsx} | 10 +- src/stories/MoodSad.stories.tsx | 70 ------ src/stories/MoodSadIcon.stories.tsx | 70 ++++++ src/stories/MoodSmile.stories.tsx | 70 ------ src/stories/MoodSmileIcon.stories.tsx | 70 ++++++ src/stories/MouseLeft.stories.tsx | 70 ------ src/stories/MouseLeft2.stories.tsx | 77 ------ src/stories/MouseLeft2Icon.stories.tsx | 77 ++++++ src/stories/MouseLeftIcon.stories.tsx | 70 ++++++ src/stories/MouseRight.stories.tsx | 70 ------ src/stories/MouseRightIcon.stories.tsx | 70 ++++++ src/stories/NoDuplicate.stories.tsx | 70 ------ src/stories/NoDuplicateIcon.stories.tsx | 70 ++++++ src/stories/NoneSelected.stories.tsx | 77 ------ src/stories/NoneSelectedIcon.stories.tsx | 77 ++++++ src/stories/Palette.stories.tsx | 70 ------ src/stories/PaletteFill.stories.tsx | 77 ------ ...tories.tsx => PaletteFillIcon.stories.tsx} | 10 +- src/stories/PaletteIcon.stories.tsx | 70 ++++++ src/stories/PauseFill.stories.tsx | 77 ------ src/stories/PauseFillIcon.stories.tsx | 77 ++++++ src/stories/Photo.stories.tsx | 70 ------ src/stories/PhotoIcon.stories.tsx | 70 ++++++ src/stories/PhotoOff.stories.tsx | 70 ------ src/stories/PhotoOff2.stories.tsx | 70 ------ src/stories/PhotoOff2Icon.stories.tsx | 70 ++++++ src/stories/PhotoOffIcon.stories.tsx | 70 ++++++ src/stories/PhotoStack.stories.tsx | 70 ------ src/stories/PhotoStackIcon.stories.tsx | 70 ++++++ src/stories/Pinned.stories.tsx | 70 ------ src/stories/PinnedIcon.stories.tsx | 70 ++++++ src/stories/PlayFill.stories.tsx | 77 ------ ...k.stories.tsx => PlayFillIcon.stories.tsx} | 10 +- ...arkle.stories.tsx => PlayIcon.stories.tsx} | 10 +- src/stories/PlayerIcon.stories.tsx | 71 ++++++ src/stories/Plus.stories.tsx | 70 ------ src/stories/PlusIcon.stories.tsx | 70 ++++++ src/stories/QuestionMark.stories.tsx | 70 ------ src/stories/QuestionMarkIcon.stories.tsx | 70 ++++++ ...ray.stories.tsx => RecullIcon.stories.tsx} | 10 +- src/stories/Redeem.stories.tsx | 70 ------ src/stories/RedeemIcon.stories.tsx | 70 ++++++ src/stories/Refresh.stories.tsx | 70 ------ src/stories/Refresh2.stories.tsx | 70 ------ src/stories/Refresh2Icon.stories.tsx | 70 ++++++ src/stories/RefreshAlert.stories.tsx | 70 ------ src/stories/RefreshAlertIcon.stories.tsx | 70 ++++++ src/stories/RefreshIcon.stories.tsx | 70 ++++++ src/stories/ReloadAlert.stories.tsx | 70 ------ src/stories/ReloadAlertIcon.stories.tsx | 70 ++++++ src/stories/Rotate.stories.tsx | 70 ------ src/stories/RotateClockwiseIcon.stories.tsx | 70 ++++++ src/stories/RotateIcon.stories.tsx | 70 ++++++ src/stories/Scissors.stories.tsx | 77 ------ ...l.stories.tsx => ScissorsIcon.stories.tsx} | 10 +- src/stories/Search.stories.tsx | 70 ------ src/stories/SearchIcon.stories.tsx | 70 ++++++ src/stories/Share.stories.tsx | 70 ------ src/stories/ShareIcon.stories.tsx | 70 ++++++ src/stories/ShoppingCart.stories.tsx | 70 ------ src/stories/ShoppingCartDiscount.stories.tsx | 70 ------ ...x => ShoppingCartDiscountIcon.stories.tsx} | 10 +- src/stories/ShoppingCartIcon.stories.tsx | 70 ++++++ src/stories/SortAscending.stories.tsx | 70 ------ src/stories/SortAscending2.stories.tsx | 70 ------ src/stories/SortAscending2Icon.stories.tsx | 70 ++++++ src/stories/SortAscendingIcon.stories.tsx | 70 ++++++ src/stories/SortAscendingLetters.stories.tsx | 70 ------ .../SortAscendingLettersIcon.stories.tsx | 70 ++++++ src/stories/SortAscendingNumbers.stories.tsx | 70 ------ .../SortAscendingNumbersIcon.stories.tsx | 70 ++++++ src/stories/SortDescending.stories.tsx | 70 ------ src/stories/SortDescending2.stories.tsx | 70 ------ src/stories/SortDescending2Icon.stories.tsx | 70 ++++++ src/stories/SortDescendingIcon.stories.tsx | 70 ++++++ src/stories/SortDescendingLetters.stories.tsx | 70 ------ .../SortDescendingLettersIcon.stories.tsx | 70 ++++++ src/stories/SortDescendingNumbers.stories.tsx | 70 ------ .../SortDescendingNumbersIcon.stories.tsx | 70 ++++++ ...ll.stories.tsx => SparkleIcon.stories.tsx} | 10 +- src/stories/Spray.stories.tsx | 70 ------ src/stories/Spray2.stories.tsx | 70 ------ src/stories/Spray2Icon.stories.tsx | 70 ++++++ src/stories/SprayIcon.stories.tsx | 70 ++++++ src/stories/StackDouble.stories.tsx | 70 ------ src/stories/StackDoubleIcon.stories.tsx | 70 ++++++ src/stories/StackTriple.stories.tsx | 70 ------ src/stories/StackTripleIcon.stories.tsx | 70 ++++++ src/stories/Star.stories.tsx | 70 ------ ...ayer.stories.tsx => Star0Icon.stories.tsx} | 10 +- ...tar0.stories.tsx => Star1Icon.stories.tsx} | 10 +- src/stories/Star2.stories.tsx | 71 ------ ...Hand.stories.tsx => Star2Icon.stories.tsx} | 10 +- src/stories/Star3.stories.tsx | 71 ------ ...tar1.stories.tsx => Star3Icon.stories.tsx} | 10 +- src/stories/Star4.stories.tsx | 71 ------ src/stories/Star4Icon.stories.tsx | 71 ++++++ src/stories/Star5.stories.tsx | 71 ------ src/stories/Star5Icon.stories.tsx | 71 ++++++ src/stories/StarFill.stories.tsx | 77 ------ ...y.stories.tsx => StarFillIcon.stories.tsx} | 10 +- src/stories/StarFillOff.stories.tsx | 77 ------ src/stories/StarFillOffIcon.stories.tsx | 77 ++++++ src/stories/StarIcon.stories.tsx | 70 ++++++ src/stories/StarOff.stories.tsx | 70 ------ src/stories/StarOffIcon.stories.tsx | 70 ++++++ src/stories/SuccessDi.stories.tsx | 71 ------ src/stories/SuccessDiIcon.stories.tsx | 71 ++++++ src/stories/ThumbDown.stories.tsx | 70 ------ src/stories/ThumbDownIcon.stories.tsx | 70 ++++++ src/stories/ThumbUp.stories.tsx | 70 ------ src/stories/ThumbUpIcon.stories.tsx | 70 ++++++ src/stories/Trash.stories.tsx | 70 ------ src/stories/TrashIcon.stories.tsx | 70 ++++++ src/stories/TrashOff.stories.tsx | 70 ------ src/stories/TrashOffIcon.stories.tsx | 70 ++++++ src/stories/Unlink.stories.tsx | 70 ------ src/stories/UnlinkIcon.stories.tsx | 70 ++++++ src/stories/Upload2.stories.tsx | 70 ------ src/stories/Upload2Icon.stories.tsx | 70 ++++++ src/stories/UploadAccent.stories.tsx | 71 ------ src/stories/UploadAccentIcon.stories.tsx | 71 ++++++ src/stories/UploadC1Cat.stories.tsx | 77 ------ src/stories/UploadC1CatIcon.stories.tsx | 77 ++++++ src/stories/UploadIcon.stories.tsx | 70 ++++++ src/stories/UploadLrCat.stories.tsx | 77 ------ src/stories/UploadLrCatIcon.stories.tsx | 77 ++++++ src/stories/User.stories.tsx | 70 ------ src/stories/UserCheck.stories.tsx | 70 ------ src/stories/UserCheckIcon.stories.tsx | 70 ++++++ src/stories/UserExclamationIcon.stories.tsx | 70 ++++++ src/stories/UserIcon.stories.tsx | 70 ++++++ src/stories/UserMinus.stories.tsx | 70 ------ src/stories/UserMinusIcon.stories.tsx | 70 ++++++ src/stories/UserOff.stories.tsx | 70 ------ src/stories/UserOffIcon.stories.tsx | 70 ++++++ src/stories/UserPlus.stories.tsx | 70 ------ src/stories/UserPlusIcon.stories.tsx | 70 ++++++ src/stories/UserX.stories.tsx | 70 ------ src/stories/UserXIcon.stories.tsx | 70 ++++++ src/stories/Users.stories.tsx | 70 ------ src/stories/UsersIcon.stories.tsx | 70 ++++++ src/stories/ViewAll.stories.tsx | 70 ------ src/stories/ViewAllIcon.stories.tsx | 70 ++++++ src/stories/Viewfinder.stories.tsx | 70 ------ src/stories/ViewfinderIcon.stories.tsx | 70 ++++++ src/stories/Wifi.stories.tsx | 70 ------ src/stories/Wifi1.stories.tsx | 70 ------ src/stories/Wifi1Icon.stories.tsx | 70 ++++++ src/stories/Wifi2.stories.tsx | 70 ------ src/stories/Wifi2Icon.stories.tsx | 70 ++++++ src/stories/WifiIcon.stories.tsx | 70 ++++++ src/stories/WifiOff.stories.tsx | 70 ------ src/stories/WifiOffIcon.stories.tsx | 70 ++++++ src/stories/World.stories.tsx | 70 ------ src/stories/WorldIcon.stories.tsx | 70 ++++++ src/stories/Writing.stories.tsx | 70 ------ src/stories/WritingIcon.stories.tsx | 70 ++++++ src/stories/X.stories.tsx | 70 ------ .../{Bell.stories.tsx => XIcon.stories.tsx} | 10 +- src/stories/ZoomIn.stories.tsx | 70 ------ src/stories/ZoomInIcon.stories.tsx | 70 ++++++ src/stories/ZoomOut.stories.tsx | 70 ------ src/stories/ZoomOutIcon.stories.tsx | 70 ++++++ src/stories/ZoomQuestion.stories.tsx | 70 ------ src/stories/ZoomQuestionIcon.stories.tsx | 70 ++++++ src/styles/tailwind.css | 13 - unicons.config.json | 2 +- 1735 files changed, 15424 insertions(+), 22126 deletions(-) rename {src/Icons => icons-legacy}/culling/BorderSquareIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CardBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CartIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CelebrateIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CheckFillCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ComputerBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ContactSupportIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CouponIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/CreateProfileIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/DiamonIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/DownloadIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/DublicateStackIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/DuplicateFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/DuplicateIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/EditAlbumNameIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/EditPhotoIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ExitAppBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ExpandIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/EyeCheckedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/EyeCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/EyeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FacebookPeopleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FilterCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FilterIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FinderIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FiveStarBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FolderOutlineBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/FullScreenIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GridBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GridDotsIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GridIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GridThreeLitIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GridTwoLitIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GroupingLessIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/GroupingMoreIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/HomeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageBorderCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageBorderIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageCrossedBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ImageStackIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/KeyCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/KeyIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LinkIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ListNotSelectedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ListSelectedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LoaderIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LockIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LoopCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LoopIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/LoupeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MaximizeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MenuIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MinimizeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MoneyBagIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MouseLeftClick.tsx (100%) rename {src/Icons => icons-legacy}/culling/MouseLeftClickCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/MouseRightClick.tsx (100%) rename {src/Icons => icons-legacy}/culling/MoveBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/NoDuplicateIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/NoneIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/NoneSelectedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/NotAllowIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/NotSelectedCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/RecullIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ReloadIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ReloadWarningIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/RotateLeftSquareIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/RotateRightSquareIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SelectedFillCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ShareIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ShowDuplicateIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SmileyHappyIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SmileySadIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortDuplicateCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortDuplicatesIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortOptionAlphaIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SortOptionNumIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SparkleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SprayBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SprayCanIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SprayCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/StackThreeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/StackTwoIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/StorageCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/SurveyModeIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ThunderBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/UploadFolderIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ViewAllIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ZoomCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/ZoomIcon.tsx (100%) rename {src/Icons => icons-legacy}/culling/index.ts (100%) rename {src/Icons => icons-legacy}/edit/AftershootEditIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/CheckBoxEmptyIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/CheckBoxIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/CheckBoxPartialIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/CollectionsIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/ComputerIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/ConfettiLeftScreen.tsx (100%) rename {src/Icons => icons-legacy}/edit/ConfettiRightScreen.tsx (100%) rename {src/Icons => icons-legacy}/edit/ConfettiSideScreen.tsx (100%) rename {src/Icons => icons-legacy}/edit/DecrementIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/DotsVerticalIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/EditProgressIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FailFillBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FailFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FileSearchIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FlagFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FlagOutlineCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/FlagOutlineIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/MoodIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/PlusBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/RightArrowBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/SuccessFillBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/TrainBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/edit/index.ts (100%) rename {src/Icons => icons-legacy}/enable/PowerHighIcon.tsx (100%) rename {src/Icons => icons-legacy}/enable/PowerLowIcon.tsx (100%) rename {src/Icons => icons-legacy}/enable/PowerMidIcon.tsx (100%) rename {src/Icons => icons-legacy}/enable/index.ts (100%) rename {src/Icons => icons-legacy}/general/AdjustmentIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertFillTriangleBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertFillTriangleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertHexagonBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertHexagonIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertTriangleBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/AlertTriangleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowCurveIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowDownIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowFillRightIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowFillUpIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowLeftIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowRightIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ArrowUpIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/BulbIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/C1UploadIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CheckCircleBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CheckCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CheckFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CheckIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ChevronDownIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ChevronLeftIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ChevronRightIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ChevronUpIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CircleFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ClockIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CloseCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CloseIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ColorPaletteIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ConfettiIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CopyContentIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CopyIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CreditIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CrossCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CrossIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CrownBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/CrownIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/DeleteBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/DeleteIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/DollarIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/DrawerIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/EditIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ExportIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/FolderFillIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/FolderOutlineCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/GlobalIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/InfoBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/InfoCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/LrUploadIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/MailBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/OpenlinkIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PauseBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PersonPlusIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PersonTwoIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PipeIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PlayBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/PlayCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/QuestionMarkCircleIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/QuestionMarkIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/RefreshIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/RevertIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/RotateIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ScissorsIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/SearchIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/StarCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/StarIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ThumbDownBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/ThumbUpBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/TrophyColorIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/UploadBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/UploadCloudBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/UploadCloudIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/UploadIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/WifiCrossedBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/WifiCrossedIcon.tsx (100%) rename {src/Icons => icons-legacy}/general/index.ts (100%) create mode 100644 icons-legacy/index.ts rename {src/Icons => icons-legacy}/logo/AfterShootLogoIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/AftershootLogoWhite.tsx (100%) rename {src/Icons => icons-legacy}/logo/CaptureOneIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragBridgeIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragCaptureOneIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragFolderIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragLrIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragLrcIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/DragPhotoshopIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/EditsLogoTextIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/LightroomClassicIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/LightroomIcon.tsx (100%) rename {src/Icons => icons-legacy}/logo/index.ts (100%) rename {src/Icons => icons-legacy}/social/AppleIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/FacebookBgIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/FacebookIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/FacebookOutlineIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/GoogleColorIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/InstagramIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/WhatsappIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/XIcon.tsx (100%) rename {src/Icons => icons-legacy}/social/index.ts (100%) rename icons-metadata/{adjustments.json => Import-icon.json} (83%) create mode 100644 icons-metadata/adjustments-horizontal-icon.json create mode 100644 icons-metadata/adjustments-icon.json create mode 100644 icons-metadata/aftershoot-credit-icon.json delete mode 100644 icons-metadata/aftershoot-credit.json create mode 100644 icons-metadata/aftershoot-logo-icon.json rename icons-metadata/{arrow-down.json => alarm-icon.json} (84%) create mode 100644 icons-metadata/alert-circle-accent-icon.json delete mode 100644 icons-metadata/alert-circle-accent.json create mode 100644 icons-metadata/alert-circle-icon.json create mode 100644 icons-metadata/alert-octagon-icon.json delete mode 100644 icons-metadata/alert-octagon.json create mode 100644 icons-metadata/alert-triangle-accent-icon.json delete mode 100644 icons-metadata/alert-triangle-accent.json create mode 100644 icons-metadata/alert-triangle-icon.json delete mode 100644 icons-metadata/alert-triangle.json rename icons-metadata/{list-fill.json => apple-icon.json} (76%) create mode 100644 icons-metadata/arrow-curve-fill-icon.json create mode 100644 icons-metadata/arrow-down-icon.json create mode 100644 icons-metadata/arrow-left-icon.json rename icons-metadata/{adjustments-horizontal.json => arrow-narrow-left-icon.json} (78%) delete mode 100644 icons-metadata/arrow-narrow-left.json create mode 100644 icons-metadata/arrow-narrow-right-icon.json delete mode 100644 icons-metadata/arrow-narrow-right.json create mode 100644 icons-metadata/arrow-right-icon.json delete mode 100644 icons-metadata/arrow-right.json create mode 100644 icons-metadata/arrow-sort-2-icon.json delete mode 100644 icons-metadata/arrow-sort-2.json create mode 100644 icons-metadata/arrow-up-icon.json create mode 100644 icons-metadata/arrows-diagonal-icon.json delete mode 100644 icons-metadata/arrows-diagonal.json create mode 100644 icons-metadata/arrows-sort-icon.json delete mode 100644 icons-metadata/arrows-sort.json create mode 100644 icons-metadata/atom-accent-icon.json create mode 100644 icons-metadata/atom-icon.json rename icons-metadata/{arrow-up.json => ban-icon.json} (85%) delete mode 100644 icons-metadata/ban.json create mode 100644 icons-metadata/bell-icon.json create mode 100644 icons-metadata/bell-minus-icon.json delete mode 100644 icons-metadata/bell-minus.json create mode 100644 icons-metadata/bell-off-icon.json delete mode 100644 icons-metadata/bell-off.json create mode 100644 icons-metadata/bell-plus-icon.json delete mode 100644 icons-metadata/bell-plus.json create mode 100644 icons-metadata/bell-ringing-2-icon.json delete mode 100644 icons-metadata/bell-ringing-2.json create mode 100644 icons-metadata/bell-ringing-icon.json delete mode 100644 icons-metadata/bell-ringing.json create mode 100644 icons-metadata/bell-x-icon.json delete mode 100644 icons-metadata/bell-x.json delete mode 100644 icons-metadata/bell.json create mode 100644 icons-metadata/brand-facebook-icon.json delete mode 100644 icons-metadata/brand-facebook.json create mode 100644 icons-metadata/brand-github-icon.json delete mode 100644 icons-metadata/brand-github.json create mode 100644 icons-metadata/brand-instagram-icon.json delete mode 100644 icons-metadata/brand-instagram.json create mode 100644 icons-metadata/brand-twitter-icon.json delete mode 100644 icons-metadata/brand-twitter.json create mode 100644 icons-metadata/brand-whatsapp-icon.json delete mode 100644 icons-metadata/brand-whatsapp.json create mode 100644 icons-metadata/brand-youtube-icon.json delete mode 100644 icons-metadata/brand-youtube.json create mode 100644 icons-metadata/bulb-icon.json create mode 100644 icons-metadata/bulb-off-icon.json delete mode 100644 icons-metadata/bulb-off.json delete mode 100644 icons-metadata/bulb.json create mode 100644 icons-metadata/check-box-empty-icon.json rename icons-metadata/{arrow-left.json => check-icon.json} (84%) delete mode 100644 icons-metadata/check.json create mode 100644 icons-metadata/checkbox-blue-accent-icon.json delete mode 100644 icons-metadata/checkbox-blue-accent.json create mode 100644 icons-metadata/checkbox-green-accent-icon.json delete mode 100644 icons-metadata/checkbox-green-accent.json create mode 100644 icons-metadata/checkbox-partial-blue-accent-icon.json delete mode 100644 icons-metadata/checkbox-partial-blue-accent.json create mode 100644 icons-metadata/chevron-down-icon.json delete mode 100644 icons-metadata/chevron-down.json create mode 100644 icons-metadata/chevron-left-icon.json delete mode 100644 icons-metadata/chevron-left.json create mode 100644 icons-metadata/chevron-right-icon.json delete mode 100644 icons-metadata/chevron-right.json create mode 100644 icons-metadata/chevron-up-icon.json delete mode 100644 icons-metadata/chevron-up.json create mode 100644 icons-metadata/chevrons-left-icon.json delete mode 100644 icons-metadata/chevrons-left.json create mode 100644 icons-metadata/chevrons-right-icon.json delete mode 100644 icons-metadata/chevrons-right.json create mode 100644 icons-metadata/circle-check-2-icon.json delete mode 100644 icons-metadata/circle-check-2.json create mode 100644 icons-metadata/circle-check-icon.json delete mode 100644 icons-metadata/circle-check.json create mode 100644 icons-metadata/circle-cross-accent-icon.json delete mode 100644 icons-metadata/circle-cross-accent.json rename icons-metadata/{arrow-curve-fill.json => circle-fill-icon.json} (72%) create mode 100644 icons-metadata/circle-icon.json delete mode 100644 icons-metadata/circle.json create mode 100644 icons-metadata/clock-icon.json delete mode 100644 icons-metadata/clock.json create mode 100644 icons-metadata/cloud-upload-accent-icon.json delete mode 100644 icons-metadata/cloud-upload-accent.json create mode 100644 icons-metadata/cloud-upload-icon.json delete mode 100644 icons-metadata/cloud-upload.json rename icons-metadata/{check-box-empty.json => collection-icon.json} (81%) create mode 100644 icons-metadata/color-swatch-icon.json delete mode 100644 icons-metadata/color-swatch.json create mode 100644 icons-metadata/confetti-icon.json delete mode 100644 icons-metadata/confetti.json create mode 100644 icons-metadata/copy-icon.json delete mode 100644 icons-metadata/copy.json create mode 100644 icons-metadata/crown-2-fill-icon.json create mode 100644 icons-metadata/crown-icon.json delete mode 100644 icons-metadata/crown.json create mode 100644 icons-metadata/currency-dollar-icon.json delete mode 100644 icons-metadata/currency-dollar.json create mode 100644 icons-metadata/current-location-icon.json delete mode 100644 icons-metadata/current-location.json create mode 100644 icons-metadata/device-desktop-analytics-icon.json delete mode 100644 icons-metadata/device-desktop-analytics.json create mode 100644 icons-metadata/device-desktop-icon.json create mode 100644 icons-metadata/device-desktop-off-icon.json delete mode 100644 icons-metadata/device-desktop-off.json delete mode 100644 icons-metadata/device-desktop.json create mode 100644 icons-metadata/device-laptop-icon.json delete mode 100644 icons-metadata/device-laptop.json create mode 100644 icons-metadata/device-tv-icon.json delete mode 100644 icons-metadata/device-tv.json rename icons-metadata/{alert-circle.json => diamond-icon.json} (83%) delete mode 100644 icons-metadata/diamond.json create mode 100644 icons-metadata/discount-2-icon.json delete mode 100644 icons-metadata/discount-2.json create mode 100644 icons-metadata/discount-icon.json delete mode 100644 icons-metadata/discount.json create mode 100644 icons-metadata/disk-icon.json delete mode 100644 icons-metadata/disk.json create mode 100644 icons-metadata/dots-vertical-icon.json delete mode 100644 icons-metadata/dots-vertical.json create mode 100644 icons-metadata/download-accent-icon.json create mode 100644 icons-metadata/download-icon.json delete mode 100644 icons-metadata/download.json create mode 100644 icons-metadata/edit-icon-icon.json delete mode 100644 icons-metadata/edit.json create mode 100644 icons-metadata/external-link-icon.json delete mode 100644 icons-metadata/external-link.json create mode 100644 icons-metadata/eye-check-icon.json delete mode 100644 icons-metadata/eye-check.json rename icons-metadata/{atom.json => eye-icon.json} (85%) create mode 100644 icons-metadata/eye-off-icon.json delete mode 100644 icons-metadata/eye-off.json delete mode 100644 icons-metadata/eye.json rename icons-metadata/{crown-2-fill.json => facebook-icon.json} (74%) delete mode 100644 icons-metadata/facebook.json create mode 100644 icons-metadata/file-download-icon.json delete mode 100644 icons-metadata/file-download.json create mode 100644 icons-metadata/file-export-icon.json delete mode 100644 icons-metadata/file-export.json create mode 100644 icons-metadata/file-report-icon.json delete mode 100644 icons-metadata/file-report.json create mode 100644 icons-metadata/file-search-icon.json delete mode 100644 icons-metadata/file-search.json create mode 100644 icons-metadata/filter-icon.json create mode 100644 icons-metadata/filter-off-icon.json delete mode 100644 icons-metadata/filter-off.json delete mode 100644 icons-metadata/filter.json rename icons-metadata/{none-selected.json => flag-fill-icon.json} (81%) create mode 100644 icons-metadata/flag-icon.json create mode 100644 icons-metadata/flag-off-icon.json delete mode 100644 icons-metadata/flag-off.json delete mode 100644 icons-metadata/flag.json create mode 100644 icons-metadata/folder-download-icon.json delete mode 100644 icons-metadata/folder-download.json create mode 100644 icons-metadata/folder-eye-icon.json delete mode 100644 icons-metadata/folder-eye.json create mode 100644 icons-metadata/folder-fill-icon.json create mode 100644 icons-metadata/folder-icon.json create mode 100644 icons-metadata/folder-minus-icon.json delete mode 100644 icons-metadata/folder-minus.json create mode 100644 icons-metadata/folder-off-icon.json delete mode 100644 icons-metadata/folder-off.json create mode 100644 icons-metadata/folder-plus-icon.json delete mode 100644 icons-metadata/folder-plus.json create mode 100644 icons-metadata/folder-upload-icon.json delete mode 100644 icons-metadata/folder-upload.json create mode 100644 icons-metadata/folder-x-icon.json delete mode 100644 icons-metadata/folder-x.json delete mode 100644 icons-metadata/folder.json create mode 100644 icons-metadata/folders-icon.json delete mode 100644 icons-metadata/folders.json create mode 100644 icons-metadata/google-color-icon.json delete mode 100644 icons-metadata/google-color.json create mode 100644 icons-metadata/grab-hand-icon.json delete mode 100644 icons-metadata/grab-hand.json create mode 100644 icons-metadata/grid-dots-icon.json delete mode 100644 icons-metadata/grid-dots.json create mode 100644 icons-metadata/grid-view-1-icon.json delete mode 100644 icons-metadata/grid-view-1.json create mode 100644 icons-metadata/grid-view-2-icon.json delete mode 100644 icons-metadata/grid-view-2.json create mode 100644 icons-metadata/home-2-icon.json delete mode 100644 icons-metadata/home-2.json rename icons-metadata/{home-mix.json => home-icon.json} (58%) rename icons-metadata/{image-border.json => image-border-icon.json} (80%) create mode 100644 icons-metadata/info-circle-icon.json delete mode 100644 icons-metadata/info-circle.json create mode 100644 icons-metadata/info-cirlce-2-icon.json delete mode 100644 icons-metadata/info-cirlce-2.json create mode 100644 icons-metadata/info-icon.json create mode 100644 icons-metadata/info-square-icon.json delete mode 100644 icons-metadata/info-square.json delete mode 100644 icons-metadata/info.json create mode 100644 icons-metadata/key-2-icon.json delete mode 100644 icons-metadata/key-2.json create mode 100644 icons-metadata/key-duplicate-icon.json delete mode 100644 icons-metadata/key-duplicate.json rename icons-metadata/{alarm.json => key-icon.json} (85%) delete mode 100644 icons-metadata/key.json create mode 100644 icons-metadata/layout-sidebar-right-mix-icon.json delete mode 100644 icons-metadata/layout-sidebar-right-mix.json create mode 100644 icons-metadata/link-icon.json delete mode 100644 icons-metadata/link.json rename icons-metadata/{circle-fill.json => list-fill-icon.json} (73%) create mode 100644 icons-metadata/loader-icon.json delete mode 100644 icons-metadata/loader.json create mode 100644 icons-metadata/lock-2-icon.json delete mode 100644 icons-metadata/lock-2.json create mode 100644 icons-metadata/lock-icon.json create mode 100644 icons-metadata/lock-off-icon.json delete mode 100644 icons-metadata/lock-off.json create mode 100644 icons-metadata/lock-open-icon.json delete mode 100644 icons-metadata/lock-open.json delete mode 100644 icons-metadata/lock.json create mode 100644 icons-metadata/loop-icon.json delete mode 100644 icons-metadata/loop.json rename icons-metadata/{aftershoot-logo.json => loupe-fill-icon.json} (72%) delete mode 100644 icons-metadata/loupe-fill.json create mode 100644 icons-metadata/mail-icon.json delete mode 100644 icons-metadata/mail.json create mode 100644 icons-metadata/map-2-icon.json delete mode 100644 icons-metadata/map-2.json create mode 100644 icons-metadata/map-pin-icon.json create mode 100644 icons-metadata/map-pin-off-icon.json delete mode 100644 icons-metadata/map-pin-off.json delete mode 100644 icons-metadata/map-pin.json create mode 100644 icons-metadata/minus-icon.json delete mode 100644 icons-metadata/minus.json create mode 100644 icons-metadata/mood-crazy-happy-icon.json delete mode 100644 icons-metadata/mood-crazy-happy.json create mode 100644 icons-metadata/mood-empty-icon.json delete mode 100644 icons-metadata/mood-empty.json rename icons-metadata/{mood-gray.json => mood-gray-icon.json} (53%) rename icons-metadata/{recull.json => mood-icon.json} (58%) create mode 100644 icons-metadata/mood-sad-icon.json delete mode 100644 icons-metadata/mood-sad.json create mode 100644 icons-metadata/mood-smile-icon.json delete mode 100644 icons-metadata/mood-smile.json create mode 100644 icons-metadata/mouse-left-2-icon.json delete mode 100644 icons-metadata/mouse-left-2.json create mode 100644 icons-metadata/mouse-left-icon.json delete mode 100644 icons-metadata/mouse-left.json create mode 100644 icons-metadata/mouse-right-icon.json delete mode 100644 icons-metadata/mouse-right.json create mode 100644 icons-metadata/no-duplicate-icon.json delete mode 100644 icons-metadata/no-duplicate.json create mode 100644 icons-metadata/none-selected-icon.json create mode 100644 icons-metadata/palette-fill-icon.json delete mode 100644 icons-metadata/palette-fill.json create mode 100644 icons-metadata/palette-icon.json delete mode 100644 icons-metadata/palette.json create mode 100644 icons-metadata/pause-fill-icon.json delete mode 100644 icons-metadata/pause-fill.json create mode 100644 icons-metadata/photo-icon.json create mode 100644 icons-metadata/photo-off-2-icon.json delete mode 100644 icons-metadata/photo-off-2.json create mode 100644 icons-metadata/photo-off-icon.json delete mode 100644 icons-metadata/photo-off.json create mode 100644 icons-metadata/photo-stack-icon.json delete mode 100644 icons-metadata/photo-stack.json delete mode 100644 icons-metadata/photo.json create mode 100644 icons-metadata/pinned-icon.json delete mode 100644 icons-metadata/pinned.json rename icons-metadata/{apple.json => play-fill-icon.json} (73%) delete mode 100644 icons-metadata/play-fill.json rename icons-metadata/{play.json => play-icon.json} (84%) rename icons-metadata/{star - 1.json => player-icon.json} (53%) create mode 100644 icons-metadata/plus-icon.json delete mode 100644 icons-metadata/plus.json create mode 100644 icons-metadata/question-mark-icon.json delete mode 100644 icons-metadata/question-mark.json rename icons-metadata/{mood.json => recull-icon.json} (56%) create mode 100644 icons-metadata/redeem-icon.json delete mode 100644 icons-metadata/redeem.json create mode 100644 icons-metadata/refresh-2-icon.json delete mode 100644 icons-metadata/refresh-2.json create mode 100644 icons-metadata/refresh-alert-icon.json delete mode 100644 icons-metadata/refresh-alert.json create mode 100644 icons-metadata/refresh-icon.json delete mode 100644 icons-metadata/refresh.json create mode 100644 icons-metadata/reload-alert-icon.json delete mode 100644 icons-metadata/reload-alert.json create mode 100644 icons-metadata/rotate-clockwise-icon.json delete mode 100644 icons-metadata/rotate-clockwise.json create mode 100644 icons-metadata/rotate-icon.json delete mode 100644 icons-metadata/rotate.json rename icons-metadata/{folder-fill.json => scissors-icon.json} (54%) delete mode 100644 icons-metadata/scissors.json create mode 100644 icons-metadata/search-icon.json delete mode 100644 icons-metadata/search.json create mode 100644 icons-metadata/share-icon.json delete mode 100644 icons-metadata/share.json create mode 100644 icons-metadata/shopping-cart-discount-icon.json delete mode 100644 icons-metadata/shopping-cart-discount.json create mode 100644 icons-metadata/shopping-cart-icon.json delete mode 100644 icons-metadata/shopping-cart.json create mode 100644 icons-metadata/sort-ascending-2-icon.json delete mode 100644 icons-metadata/sort-ascending-2.json create mode 100644 icons-metadata/sort-ascending-icon.json create mode 100644 icons-metadata/sort-ascending-letters-icon.json delete mode 100644 icons-metadata/sort-ascending-letters.json create mode 100644 icons-metadata/sort-ascending-numbers-icon.json delete mode 100644 icons-metadata/sort-ascending-numbers.json delete mode 100644 icons-metadata/sort-ascending.json create mode 100644 icons-metadata/sort-descending-2-icon.json delete mode 100644 icons-metadata/sort-descending-2.json create mode 100644 icons-metadata/sort-descending-icon.json create mode 100644 icons-metadata/sort-descending-letters-icon.json delete mode 100644 icons-metadata/sort-descending-letters.json create mode 100644 icons-metadata/sort-descending-numbers-icon.json delete mode 100644 icons-metadata/sort-descending-numbers.json delete mode 100644 icons-metadata/sort-descending.json rename icons-metadata/{collection.json => sparkle-icon.json} (83%) delete mode 100644 icons-metadata/sparkle.json create mode 100644 icons-metadata/spray-icon.json delete mode 100644 icons-metadata/spray.json create mode 100644 icons-metadata/spray_2-icon.json delete mode 100644 icons-metadata/spray_2.json create mode 100644 icons-metadata/stack-double-icon.json delete mode 100644 icons-metadata/stack-double.json create mode 100644 icons-metadata/stack-triple-icon.json delete mode 100644 icons-metadata/stack-triple.json rename icons-metadata/{atom-accent.json => star - 0-icon.json} (51%) rename icons-metadata/{player.json => star - 1-icon.json} (51%) rename icons-metadata/{star - 0.json => star - 2-icon.json} (51%) delete mode 100644 icons-metadata/star - 2.json create mode 100644 icons-metadata/star - 3-icon.json delete mode 100644 icons-metadata/star - 3.json create mode 100644 icons-metadata/star - 4-icon.json delete mode 100644 icons-metadata/star - 4.json create mode 100644 icons-metadata/star - 5-icon.json delete mode 100644 icons-metadata/star - 5.json rename icons-metadata/{flag-fill.json => star-fill-icon.json} (81%) create mode 100644 icons-metadata/star-fill-off-icon.json delete mode 100644 icons-metadata/star-fill-off.json delete mode 100644 icons-metadata/star-fill.json create mode 100644 icons-metadata/star-icon.json create mode 100644 icons-metadata/star-off-icon.json delete mode 100644 icons-metadata/star-off.json delete mode 100644 icons-metadata/star.json rename icons-metadata/{download-accent.json => success-di-icon.json} (50%) delete mode 100644 icons-metadata/success-di.json create mode 100644 icons-metadata/thumb-down-icon.json delete mode 100644 icons-metadata/thumb-down.json create mode 100644 icons-metadata/thumb-up-icon.json delete mode 100644 icons-metadata/thumb-up.json create mode 100644 icons-metadata/trash-icon.json create mode 100644 icons-metadata/trash-off-icon.json delete mode 100644 icons-metadata/trash-off.json delete mode 100644 icons-metadata/trash.json create mode 100644 icons-metadata/unlink-icon.json delete mode 100644 icons-metadata/unlink.json create mode 100644 icons-metadata/upload-2-icon.json delete mode 100644 icons-metadata/upload-2.json create mode 100644 icons-metadata/upload-accent-icon.json delete mode 100644 icons-metadata/upload-accent.json create mode 100644 icons-metadata/upload-c1-cat-icon.json delete mode 100644 icons-metadata/upload-c1-cat.json create mode 100644 icons-metadata/upload-icon.json create mode 100644 icons-metadata/upload-lr-cat-icon.json delete mode 100644 icons-metadata/upload-lr-cat.json delete mode 100644 icons-metadata/upload.json create mode 100644 icons-metadata/user-check-icon.json delete mode 100644 icons-metadata/user-check.json create mode 100644 icons-metadata/user-exclamation-icon.json delete mode 100644 icons-metadata/user-exclamation.json create mode 100644 icons-metadata/user-icon.json create mode 100644 icons-metadata/user-minus-icon.json delete mode 100644 icons-metadata/user-minus.json create mode 100644 icons-metadata/user-off-icon.json delete mode 100644 icons-metadata/user-off.json create mode 100644 icons-metadata/user-plus-icon.json delete mode 100644 icons-metadata/user-plus.json create mode 100644 icons-metadata/user-x-icon.json delete mode 100644 icons-metadata/user-x.json delete mode 100644 icons-metadata/user.json create mode 100644 icons-metadata/users-icon.json delete mode 100644 icons-metadata/users.json create mode 100644 icons-metadata/view-all-icon.json delete mode 100644 icons-metadata/view-all.json create mode 100644 icons-metadata/viewfinder-icon.json delete mode 100644 icons-metadata/viewfinder.json create mode 100644 icons-metadata/wifi-1-icon.json delete mode 100644 icons-metadata/wifi-1.json create mode 100644 icons-metadata/wifi-2-icon.json delete mode 100644 icons-metadata/wifi-2.json create mode 100644 icons-metadata/wifi-icon.json create mode 100644 icons-metadata/wifi-off-icon.json delete mode 100644 icons-metadata/wifi-off.json delete mode 100644 icons-metadata/wifi.json create mode 100644 icons-metadata/world-icon.json delete mode 100644 icons-metadata/world.json create mode 100644 icons-metadata/writing-icon.json delete mode 100644 icons-metadata/writing.json rename icons-metadata/{Import.json => x-icon.json} (86%) delete mode 100644 icons-metadata/x.json create mode 100644 icons-metadata/zoom-in-icon.json delete mode 100644 icons-metadata/zoom-in.json create mode 100644 icons-metadata/zoom-out-icon.json delete mode 100644 icons-metadata/zoom-out.json create mode 100644 icons-metadata/zoom-question-icon.json delete mode 100644 icons-metadata/zoom-question.json rename icons-optimized/{Import.svg => Import-icon.svg} (100%) rename icons-optimized/{adjustments-horizontal.svg => adjustments-horizontal-icon.svg} (100%) rename icons-optimized/{adjustments.svg => adjustments-icon.svg} (100%) rename icons-optimized/{aftershoot-credit.svg => aftershoot-credit-icon.svg} (100%) rename icons-optimized/{aftershoot-logo.svg => aftershoot-logo-icon.svg} (100%) rename icons-optimized/{alarm.svg => alarm-icon.svg} (100%) rename icons-optimized/{alert-circle-accent.svg => alert-circle-accent-icon.svg} (100%) rename icons-optimized/{alert-circle.svg => alert-circle-icon.svg} (100%) rename icons-optimized/{alert-octagon.svg => alert-octagon-icon.svg} (100%) rename icons-optimized/{alert-triangle-accent.svg => alert-triangle-accent-icon.svg} (100%) rename icons-optimized/{alert-triangle.svg => alert-triangle-icon.svg} (100%) rename icons-optimized/{apple.svg => apple-icon.svg} (100%) rename icons-optimized/{arrow-curve-fill.svg => arrow-curve-fill-icon.svg} (100%) rename icons-optimized/{arrow-down.svg => arrow-down-icon.svg} (100%) rename icons-optimized/{arrow-left.svg => arrow-left-icon.svg} (100%) rename icons-optimized/{arrow-narrow-left.svg => arrow-narrow-left-icon.svg} (100%) rename icons-optimized/{arrow-narrow-right.svg => arrow-narrow-right-icon.svg} (100%) rename icons-optimized/{arrow-right.svg => arrow-right-icon.svg} (100%) rename icons-optimized/{arrow-sort-2.svg => arrow-sort-2-icon.svg} (100%) rename icons-optimized/{arrow-up.svg => arrow-up-icon.svg} (100%) rename icons-optimized/{arrows-diagonal.svg => arrows-diagonal-icon.svg} (100%) rename icons-optimized/{arrows-sort.svg => arrows-sort-icon.svg} (100%) rename icons-optimized/{atom-accent.svg => atom-accent-icon.svg} (100%) rename icons-optimized/{atom.svg => atom-icon.svg} (100%) rename icons-optimized/{ban.svg => ban-icon.svg} (100%) rename icons-optimized/{bell.svg => bell-icon.svg} (100%) rename icons-optimized/{bell-minus.svg => bell-minus-icon.svg} (100%) rename icons-optimized/{bell-off.svg => bell-off-icon.svg} (100%) rename icons-optimized/{bell-plus.svg => bell-plus-icon.svg} (100%) rename icons-optimized/{bell-ringing-2.svg => bell-ringing-2-icon.svg} (100%) rename icons-optimized/{bell-ringing.svg => bell-ringing-icon.svg} (100%) rename icons-optimized/{bell-x.svg => bell-x-icon.svg} (100%) rename icons-optimized/{brand-facebook.svg => brand-facebook-icon.svg} (100%) rename icons-optimized/{brand-github.svg => brand-github-icon.svg} (100%) rename icons-optimized/{brand-instagram.svg => brand-instagram-icon.svg} (100%) rename icons-optimized/{brand-twitter.svg => brand-twitter-icon.svg} (100%) rename icons-optimized/{brand-whatsapp.svg => brand-whatsapp-icon.svg} (100%) rename icons-optimized/{brand-youtube.svg => brand-youtube-icon.svg} (100%) rename icons-optimized/{bulb.svg => bulb-icon.svg} (100%) rename icons-optimized/{bulb-off.svg => bulb-off-icon.svg} (100%) rename icons-optimized/{check-box-empty.svg => check-box-empty-icon.svg} (100%) rename icons-optimized/{check.svg => check-icon.svg} (100%) rename icons-optimized/{checkbox-blue-accent.svg => checkbox-blue-accent-icon.svg} (100%) rename icons-optimized/{checkbox-green-accent.svg => checkbox-green-accent-icon.svg} (100%) rename icons-optimized/{checkbox-partial-blue-accent.svg => checkbox-partial-blue-accent-icon.svg} (100%) rename icons-optimized/{chevron-down.svg => chevron-down-icon.svg} (100%) rename icons-optimized/{chevron-left.svg => chevron-left-icon.svg} (100%) rename icons-optimized/{chevron-right.svg => chevron-right-icon.svg} (100%) rename icons-optimized/{chevron-up.svg => chevron-up-icon.svg} (100%) rename icons-optimized/{chevrons-left.svg => chevrons-left-icon.svg} (100%) rename icons-optimized/{chevrons-right.svg => chevrons-right-icon.svg} (100%) rename icons-optimized/{circle-check-2.svg => circle-check-2-icon.svg} (100%) rename icons-optimized/{circle-check.svg => circle-check-icon.svg} (100%) rename icons-optimized/{circle-cross-accent.svg => circle-cross-accent-icon.svg} (100%) rename icons-optimized/{circle-fill.svg => circle-fill-icon.svg} (100%) rename icons-optimized/{circle.svg => circle-icon.svg} (100%) rename icons-optimized/{clock.svg => clock-icon.svg} (100%) rename icons-optimized/{cloud-upload-accent.svg => cloud-upload-accent-icon.svg} (100%) rename icons-optimized/{cloud-upload.svg => cloud-upload-icon.svg} (100%) rename icons-optimized/{collection.svg => collection-icon.svg} (100%) rename icons-optimized/{color-swatch.svg => color-swatch-icon.svg} (100%) rename icons-optimized/{confetti.svg => confetti-icon.svg} (100%) rename icons-optimized/{copy.svg => copy-icon.svg} (100%) rename icons-optimized/{crown-2-fill.svg => crown-2-fill-icon.svg} (100%) rename icons-optimized/{crown.svg => crown-icon.svg} (100%) rename icons-optimized/{currency-dollar.svg => currency-dollar-icon.svg} (100%) rename icons-optimized/{current-location.svg => current-location-icon.svg} (100%) rename icons-optimized/{device-desktop-analytics.svg => device-desktop-analytics-icon.svg} (100%) rename icons-optimized/{device-desktop.svg => device-desktop-icon.svg} (100%) rename icons-optimized/{device-desktop-off.svg => device-desktop-off-icon.svg} (100%) rename icons-optimized/{device-laptop.svg => device-laptop-icon.svg} (100%) rename icons-optimized/{device-tv.svg => device-tv-icon.svg} (100%) rename icons-optimized/{diamond.svg => diamond-icon.svg} (100%) rename icons-optimized/{discount-2.svg => discount-2-icon.svg} (100%) rename icons-optimized/{discount.svg => discount-icon.svg} (100%) rename icons-optimized/{disk.svg => disk-icon.svg} (100%) rename icons-optimized/{dots-vertical.svg => dots-vertical-icon.svg} (100%) rename icons-optimized/{download-accent.svg => download-accent-icon.svg} (100%) rename icons-optimized/{download.svg => download-icon.svg} (100%) create mode 100644 icons-optimized/edit-icon-icon.svg delete mode 100644 icons-optimized/edit.svg rename icons-optimized/{external-link.svg => external-link-icon.svg} (100%) rename icons-optimized/{eye-check.svg => eye-check-icon.svg} (100%) rename icons-optimized/{eye.svg => eye-icon.svg} (100%) rename icons-optimized/{eye-off.svg => eye-off-icon.svg} (100%) rename icons-optimized/{facebook.svg => facebook-icon.svg} (100%) rename icons-optimized/{file-download.svg => file-download-icon.svg} (100%) rename icons-optimized/{file-export.svg => file-export-icon.svg} (100%) rename icons-optimized/{file-report.svg => file-report-icon.svg} (100%) rename icons-optimized/{file-search.svg => file-search-icon.svg} (100%) rename icons-optimized/{filter.svg => filter-icon.svg} (100%) rename icons-optimized/{filter-off.svg => filter-off-icon.svg} (100%) rename icons-optimized/{flag-fill.svg => flag-fill-icon.svg} (100%) rename icons-optimized/{flag.svg => flag-icon.svg} (100%) rename icons-optimized/{flag-off.svg => flag-off-icon.svg} (100%) rename icons-optimized/{folder-download.svg => folder-download-icon.svg} (100%) rename icons-optimized/{folder-eye.svg => folder-eye-icon.svg} (100%) rename icons-optimized/{folder-fill.svg => folder-fill-icon.svg} (100%) rename icons-optimized/{folder.svg => folder-icon.svg} (100%) rename icons-optimized/{folder-minus.svg => folder-minus-icon.svg} (100%) rename icons-optimized/{folder-off.svg => folder-off-icon.svg} (100%) rename icons-optimized/{folder-plus.svg => folder-plus-icon.svg} (100%) rename icons-optimized/{folder-upload.svg => folder-upload-icon.svg} (100%) rename icons-optimized/{folder-x.svg => folder-x-icon.svg} (100%) rename icons-optimized/{folders.svg => folders-icon.svg} (100%) rename icons-optimized/{google-color.svg => google-color-icon.svg} (100%) rename icons-optimized/{grab-hand.svg => grab-hand-icon.svg} (100%) rename icons-optimized/{grid-dots.svg => grid-dots-icon.svg} (100%) rename icons-optimized/{grid-view-1.svg => grid-view-1-icon.svg} (100%) rename icons-optimized/{grid-view-2.svg => grid-view-2-icon.svg} (100%) rename icons-optimized/{home-2.svg => home-2-icon.svg} (87%) rename icons-optimized/{home-mix.svg => home-icon.svg} (100%) rename icons-optimized/{image-border.svg => image-border-icon.svg} (100%) rename icons-optimized/{info-circle.svg => info-circle-icon.svg} (100%) rename icons-optimized/{info-cirlce-2.svg => info-cirlce-2-icon.svg} (100%) rename icons-optimized/{info.svg => info-icon.svg} (100%) rename icons-optimized/{info-square.svg => info-square-icon.svg} (100%) rename icons-optimized/{key-2.svg => key-2-icon.svg} (100%) rename icons-optimized/{key-duplicate.svg => key-duplicate-icon.svg} (100%) rename icons-optimized/{key.svg => key-icon.svg} (100%) rename icons-optimized/{layout-sidebar-right-mix.svg => layout-sidebar-right-mix-icon.svg} (100%) rename icons-optimized/{link.svg => link-icon.svg} (100%) rename icons-optimized/{list-fill.svg => list-fill-icon.svg} (100%) rename icons-optimized/{loader.svg => loader-icon.svg} (100%) rename icons-optimized/{lock-2.svg => lock-2-icon.svg} (100%) rename icons-optimized/{lock.svg => lock-icon.svg} (100%) rename icons-optimized/{lock-off.svg => lock-off-icon.svg} (100%) rename icons-optimized/{lock-open.svg => lock-open-icon.svg} (100%) rename icons-optimized/{loop.svg => loop-icon.svg} (100%) rename icons-optimized/{loupe-fill.svg => loupe-fill-icon.svg} (100%) rename icons-optimized/{mail.svg => mail-icon.svg} (100%) rename icons-optimized/{map-2.svg => map-2-icon.svg} (100%) rename icons-optimized/{map-pin.svg => map-pin-icon.svg} (100%) rename icons-optimized/{map-pin-off.svg => map-pin-off-icon.svg} (100%) rename icons-optimized/{minus.svg => minus-icon.svg} (100%) rename icons-optimized/{mood-crazy-happy.svg => mood-crazy-happy-icon.svg} (100%) rename icons-optimized/{mood-empty.svg => mood-empty-icon.svg} (100%) rename icons-optimized/{mood-gray.svg => mood-gray-icon.svg} (100%) rename icons-optimized/{mood.svg => mood-icon.svg} (100%) rename icons-optimized/{mood-sad.svg => mood-sad-icon.svg} (100%) rename icons-optimized/{mood-smile.svg => mood-smile-icon.svg} (100%) rename icons-optimized/{mouse-left-2.svg => mouse-left-2-icon.svg} (100%) rename icons-optimized/{mouse-left.svg => mouse-left-icon.svg} (100%) rename icons-optimized/{mouse-right.svg => mouse-right-icon.svg} (100%) rename icons-optimized/{no-duplicate.svg => no-duplicate-icon.svg} (100%) rename icons-optimized/{none-selected.svg => none-selected-icon.svg} (100%) rename icons-optimized/{palette-fill.svg => palette-fill-icon.svg} (100%) rename icons-optimized/{palette.svg => palette-icon.svg} (100%) rename icons-optimized/{pause-fill.svg => pause-fill-icon.svg} (100%) rename icons-optimized/{photo.svg => photo-icon.svg} (100%) rename icons-optimized/{photo-off-2.svg => photo-off-2-icon.svg} (100%) rename icons-optimized/{photo-off.svg => photo-off-icon.svg} (100%) rename icons-optimized/{photo-stack.svg => photo-stack-icon.svg} (100%) rename icons-optimized/{pinned.svg => pinned-icon.svg} (100%) rename icons-optimized/{play-fill.svg => play-fill-icon.svg} (100%) rename icons-optimized/{play.svg => play-icon.svg} (100%) rename icons-optimized/{player.svg => player-icon.svg} (100%) rename icons-optimized/{plus.svg => plus-icon.svg} (100%) rename icons-optimized/{question-mark.svg => question-mark-icon.svg} (100%) rename icons-optimized/{recull.svg => recull-icon.svg} (100%) rename icons-optimized/{redeem.svg => redeem-icon.svg} (100%) rename icons-optimized/{refresh-2.svg => refresh-2-icon.svg} (100%) rename icons-optimized/{refresh-alert.svg => refresh-alert-icon.svg} (100%) rename icons-optimized/{refresh.svg => refresh-icon.svg} (100%) rename icons-optimized/{reload-alert.svg => reload-alert-icon.svg} (100%) rename icons-optimized/{rotate-clockwise.svg => rotate-clockwise-icon.svg} (100%) rename icons-optimized/{rotate.svg => rotate-icon.svg} (100%) rename icons-optimized/{scissors.svg => scissors-icon.svg} (100%) rename icons-optimized/{search.svg => search-icon.svg} (100%) rename icons-optimized/{share.svg => share-icon.svg} (100%) rename icons-optimized/{shopping-cart-discount.svg => shopping-cart-discount-icon.svg} (100%) rename icons-optimized/{shopping-cart.svg => shopping-cart-icon.svg} (100%) rename icons-optimized/{sort-ascending-2.svg => sort-ascending-2-icon.svg} (100%) rename icons-optimized/{sort-ascending.svg => sort-ascending-icon.svg} (100%) rename icons-optimized/{sort-ascending-letters.svg => sort-ascending-letters-icon.svg} (100%) rename icons-optimized/{sort-ascending-numbers.svg => sort-ascending-numbers-icon.svg} (100%) rename icons-optimized/{sort-descending-2.svg => sort-descending-2-icon.svg} (100%) rename icons-optimized/{sort-descending.svg => sort-descending-icon.svg} (100%) rename icons-optimized/{sort-descending-letters.svg => sort-descending-letters-icon.svg} (100%) rename icons-optimized/{sort-descending-numbers.svg => sort-descending-numbers-icon.svg} (100%) rename icons-optimized/{sparkle.svg => sparkle-icon.svg} (100%) rename icons-optimized/{spray.svg => spray-icon.svg} (100%) rename icons-optimized/{spray_2.svg => spray_2-icon.svg} (100%) rename icons-optimized/{stack-double.svg => stack-double-icon.svg} (100%) rename icons-optimized/{stack-triple.svg => stack-triple-icon.svg} (100%) rename icons-optimized/{star - 0.svg => star - 0-icon.svg} (100%) rename icons-optimized/{star - 1.svg => star - 1-icon.svg} (100%) rename icons-optimized/{star - 2.svg => star - 2-icon.svg} (100%) rename icons-optimized/{star - 3.svg => star - 3-icon.svg} (100%) rename icons-optimized/{star - 4.svg => star - 4-icon.svg} (100%) rename icons-optimized/{star - 5.svg => star - 5-icon.svg} (100%) rename icons-optimized/{star-fill.svg => star-fill-icon.svg} (100%) rename icons-optimized/{star-fill-off.svg => star-fill-off-icon.svg} (100%) rename icons-optimized/{star.svg => star-icon.svg} (100%) rename icons-optimized/{star-off.svg => star-off-icon.svg} (100%) rename icons-optimized/{success-di.svg => success-di-icon.svg} (100%) rename icons-optimized/{thumb-down.svg => thumb-down-icon.svg} (100%) rename icons-optimized/{thumb-up.svg => thumb-up-icon.svg} (100%) rename icons-optimized/{trash.svg => trash-icon.svg} (100%) rename icons-optimized/{trash-off.svg => trash-off-icon.svg} (100%) rename icons-optimized/{unlink.svg => unlink-icon.svg} (100%) rename icons-optimized/{upload-2.svg => upload-2-icon.svg} (100%) rename icons-optimized/{upload-accent.svg => upload-accent-icon.svg} (100%) rename icons-optimized/{upload-c1-cat.svg => upload-c1-cat-icon.svg} (100%) rename icons-optimized/{upload.svg => upload-icon.svg} (100%) rename icons-optimized/{upload-lr-cat.svg => upload-lr-cat-icon.svg} (100%) rename icons-optimized/{user-check.svg => user-check-icon.svg} (100%) rename icons-optimized/{user-exclamation.svg => user-exclamation-icon.svg} (100%) rename icons-optimized/{user.svg => user-icon.svg} (100%) rename icons-optimized/{user-minus.svg => user-minus-icon.svg} (100%) rename icons-optimized/{user-off.svg => user-off-icon.svg} (100%) rename icons-optimized/{user-plus.svg => user-plus-icon.svg} (100%) rename icons-optimized/{user-x.svg => user-x-icon.svg} (100%) rename icons-optimized/{users.svg => users-icon.svg} (100%) rename icons-optimized/{view-all.svg => view-all-icon.svg} (100%) rename icons-optimized/{viewfinder.svg => viewfinder-icon.svg} (100%) rename icons-optimized/{wifi-1.svg => wifi-1-icon.svg} (100%) rename icons-optimized/{wifi-2.svg => wifi-2-icon.svg} (100%) rename icons-optimized/{wifi.svg => wifi-icon.svg} (100%) rename icons-optimized/{wifi-off.svg => wifi-off-icon.svg} (100%) rename icons-optimized/{world.svg => world-icon.svg} (100%) rename icons-optimized/{writing.svg => writing-icon.svg} (100%) rename icons-optimized/{x.svg => x-icon.svg} (100%) rename icons-optimized/{zoom-in.svg => zoom-in-icon.svg} (100%) rename icons-optimized/{zoom-out.svg => zoom-out-icon.svg} (100%) rename icons-optimized/{zoom-question.svg => zoom-question-icon.svg} (100%) rename icons-original/no-change/{home-mix.svg => home.svg} (100%) rename src/{icons-test/download.tsx => Icons/Import-icon.tsx} (88%) rename src/{icons-test/adjustments-horizontal.tsx => Icons/adjustments-horizontal-icon.tsx} (86%) rename src/{icons-test/adjustments.tsx => Icons/adjustments-icon.tsx} (89%) rename src/{icons-test/aftershoot-credit.tsx => Icons/aftershoot-credit-icon.tsx} (95%) rename src/{icons-test/aftershoot-logo.tsx => Icons/aftershoot-logo-icon.tsx} (91%) rename src/{icons-test/alarm.tsx => Icons/alarm-icon.tsx} (89%) rename src/{icons-test/alert-circle-accent.tsx => Icons/alert-circle-accent-icon.tsx} (90%) rename src/{icons-test/alert-circle.tsx => Icons/alert-circle-icon.tsx} (86%) rename src/{icons-test/alert-octagon.tsx => Icons/alert-octagon-icon.tsx} (88%) rename src/{icons-test/alert-triangle-accent.tsx => Icons/alert-triangle-accent-icon.tsx} (84%) rename src/{icons-test/alert-triangle.tsx => Icons/alert-triangle-icon.tsx} (85%) rename src/{icons-test/apple.tsx => Icons/apple-icon.tsx} (90%) rename src/{icons-test/arrow-curve-fill.tsx => Icons/arrow-curve-fill-icon.tsx} (86%) rename src/{icons-test/arrow-down.tsx => Icons/arrow-down-icon.tsx} (86%) rename src/{icons-test/arrow-left.tsx => Icons/arrow-left-icon.tsx} (86%) rename src/{icons-test/arrow-narrow-left.tsx => Icons/arrow-narrow-left-icon.tsx} (83%) rename src/{icons-test/arrow-narrow-right.tsx => Icons/arrow-narrow-right-icon.tsx} (83%) rename src/{icons-test/arrow-right.tsx => Icons/arrow-right-icon.tsx} (85%) rename src/{icons-test/arrow-sort-2.tsx => Icons/arrow-sort-2-icon.tsx} (78%) rename src/{icons-test/arrow-up.tsx => Icons/arrow-up-icon.tsx} (87%) rename src/{icons-test/arrows-diagonal.tsx => Icons/arrows-diagonal-icon.tsx} (85%) rename src/{icons-test/arrows-sort.tsx => Icons/arrows-sort-icon.tsx} (85%) rename src/{icons-test/atom-accent.tsx => Icons/atom-accent-icon.tsx} (95%) rename src/{icons-test/atom.tsx => Icons/atom-icon.tsx} (93%) rename src/{icons-test/ban.tsx => Icons/ban-icon.tsx} (89%) rename src/{icons-test/bell.tsx => Icons/bell-icon.tsx} (89%) rename src/{icons-test/bell-minus.tsx => Icons/bell-minus-icon.tsx} (88%) rename src/{icons-test/bell-off.tsx => Icons/bell-off-icon.tsx} (89%) rename src/{icons-test/bell-plus.tsx => Icons/bell-plus-icon.tsx} (88%) rename src/{icons-test/bell-ringing-2.tsx => Icons/bell-ringing-2-icon.tsx} (88%) rename src/{icons-test/bell-ringing.tsx => Icons/bell-ringing-icon.tsx} (88%) rename src/{icons-test/bell-x.tsx => Icons/bell-x-icon.tsx} (89%) rename src/{icons-test/brand-facebook.tsx => Icons/brand-facebook-icon.tsx} (84%) rename src/{icons-test/brand-github.tsx => Icons/brand-github-icon.tsx} (88%) rename src/{icons-test/brand-instagram.tsx => Icons/brand-instagram-icon.tsx} (86%) rename src/{icons-test/brand-twitter.tsx => Icons/brand-twitter-icon.tsx} (89%) rename src/{icons-test/brand-whatsapp.tsx => Icons/brand-whatsapp-icon.tsx} (86%) rename src/{icons-test/brand-youtube.tsx => Icons/brand-youtube-icon.tsx} (85%) rename src/{icons-test/bulb.tsx => Icons/bulb-icon.tsx} (90%) rename src/{icons-test/bulb-off.tsx => Icons/bulb-off-icon.tsx} (87%) rename src/{icons-test/check-box-empty.tsx => Icons/check-box-empty-icon.tsx} (83%) rename src/{icons-test/check.tsx => Icons/check-icon.tsx} (86%) rename src/{icons-test/checkbox-blue-accent.tsx => Icons/checkbox-blue-accent-icon.tsx} (91%) rename src/{icons-test/checkbox-green-accent.tsx => Icons/checkbox-green-accent-icon.tsx} (90%) rename src/{icons-test/checkbox-partial-blue-accent.tsx => Icons/checkbox-partial-blue-accent-icon.tsx} (86%) rename src/{icons-test/chevron-down.tsx => Icons/chevron-down-icon.tsx} (83%) rename src/{icons-test/chevron-left.tsx => Icons/chevron-left-icon.tsx} (83%) rename src/{icons-test/chevron-right.tsx => Icons/chevron-right-icon.tsx} (82%) rename src/{icons-test/chevron-up.tsx => Icons/chevron-up-icon.tsx} (84%) rename src/{icons-test/chevrons-left.tsx => Icons/chevrons-left-icon.tsx} (84%) rename src/{icons-test/chevrons-right.tsx => Icons/chevrons-right-icon.tsx} (84%) rename src/{icons-test/circle-check-2.tsx => Icons/circle-check-2-icon.tsx} (83%) rename src/{icons-test/circle-check.tsx => Icons/circle-check-icon.tsx} (85%) rename src/{icons-test/circle-cross-accent.tsx => Icons/circle-cross-accent-icon.tsx} (86%) rename src/{icons-test/circle-fill.tsx => Icons/circle-fill-icon.tsx} (79%) rename src/{icons-test/circle.tsx => Icons/circle-icon.tsx} (87%) rename src/{icons-test/clock.tsx => Icons/clock-icon.tsx} (88%) rename src/{icons-test/cloud-upload-accent.tsx => Icons/cloud-upload-accent-icon.tsx} (91%) rename src/{icons-test/cloud-upload.tsx => Icons/cloud-upload-icon.tsx} (90%) rename src/{icons-test/collection.tsx => Icons/collection-icon.tsx} (92%) rename src/{icons-test/color-swatch.tsx => Icons/color-swatch-icon.tsx} (88%) rename src/{icons-test/confetti.tsx => Icons/confetti-icon.tsx} (90%) rename src/{icons-test/copy.tsx => Icons/copy-icon.tsx} (90%) rename src/{icons-test/crown-2-fill.tsx => Icons/crown-2-fill-icon.tsx} (92%) rename src/{icons-test/crown.tsx => Icons/crown-icon.tsx} (87%) rename src/{icons-test/currency-dollar.tsx => Icons/currency-dollar-icon.tsx} (86%) rename src/{icons-test/current-location.tsx => Icons/current-location-icon.tsx} (87%) rename src/{icons-test/device-desktop-analytics.tsx => Icons/device-desktop-analytics-icon.tsx} (85%) rename src/{icons-test/device-desktop.tsx => Icons/device-desktop-icon.tsx} (86%) rename src/{icons-test/device-desktop-off.tsx => Icons/device-desktop-off-icon.tsx} (86%) rename src/{icons-test/device-laptop.tsx => Icons/device-laptop-icon.tsx} (85%) rename src/{icons-test/device-tv.tsx => Icons/device-tv-icon.tsx} (87%) rename src/{icons-test/diamond.tsx => Icons/diamond-icon.tsx} (87%) rename src/{icons-test/discount-2.tsx => Icons/discount-2-icon.tsx} (89%) rename src/{icons-test/discount.tsx => Icons/discount-icon.tsx} (93%) rename src/{icons-test/disk.tsx => Icons/disk-icon.tsx} (92%) rename src/{icons-test/dots-vertical.tsx => Icons/dots-vertical-icon.tsx} (87%) rename src/{icons-test/download-accent.tsx => Icons/download-accent-icon.tsx} (89%) rename src/{icons-test/Import.tsx => Icons/download-icon.tsx} (87%) rename src/{icons-test/edit-icon.tsx => Icons/edit-icon-icon.tsx} (98%) rename src/{icons-test/edit.tsx => Icons/edit-icon.tsx} (89%) rename src/{icons-test/external-link.tsx => Icons/external-link-icon.tsx} (86%) rename src/{icons-test/eye-check.tsx => Icons/eye-check-icon.tsx} (88%) rename src/{icons-test/eye.tsx => Icons/eye-icon.tsx} (89%) rename src/{icons-test/eye-off.tsx => Icons/eye-off-icon.tsx} (90%) rename src/{icons-test/facebook.tsx => Icons/facebook-icon.tsx} (84%) rename src/{icons-test/file-download.tsx => Icons/file-download-icon.tsx} (87%) rename src/{icons-test/file-export.tsx => Icons/file-export-icon.tsx} (87%) rename src/{icons-test/file-report.tsx => Icons/file-report-icon.tsx} (88%) rename src/{icons-test/file-search.tsx => Icons/file-search-icon.tsx} (88%) rename src/{icons-test/filter.tsx => Icons/filter-icon.tsx} (87%) rename src/{icons-test/filter-off.tsx => Icons/filter-off-icon.tsx} (87%) rename src/{icons-test/flag-fill.tsx => Icons/flag-fill-icon.tsx} (88%) rename src/{icons-test/flag.tsx => Icons/flag-icon.tsx} (88%) rename src/{icons-test/flag-off.tsx => Icons/flag-off-icon.tsx} (87%) rename src/{icons-test/folder-download.tsx => Icons/folder-download-icon.tsx} (86%) rename src/{icons-test/folder-eye.tsx => Icons/folder-eye-icon.tsx} (92%) rename src/{icons-test/folder-fill.tsx => Icons/folder-fill-icon.tsx} (91%) rename src/{icons-test/folder.tsx => Icons/folder-icon.tsx} (88%) rename src/{icons-test/folder-minus.tsx => Icons/folder-minus-icon.tsx} (87%) rename src/{icons-test/folder-off.tsx => Icons/folder-off-icon.tsx} (87%) rename src/{icons-test/folder-plus.tsx => Icons/folder-plus-icon.tsx} (87%) rename src/{icons-test/folder-upload.tsx => Icons/folder-upload-icon.tsx} (87%) rename src/{icons-test/folder-x.tsx => Icons/folder-x-icon.tsx} (88%) rename src/{icons-test/folders.tsx => Icons/folders-icon.tsx} (89%) rename src/{icons-test/google-color.tsx => Icons/google-color-icon.tsx} (95%) rename src/{icons-test/grab-hand.tsx => Icons/grab-hand-icon.tsx} (98%) rename src/{icons-test/grid-dots.tsx => Icons/grid-dots-icon.tsx} (91%) rename src/{icons-test/grid-view-1.tsx => Icons/grid-view-1-icon.tsx} (92%) rename src/{icons-test/grid-view-2.tsx => Icons/grid-view-2-icon.tsx} (92%) rename src/{icons-test/home-2.tsx => Icons/home-2-icon.tsx} (93%) rename src/{icons-test/home-mix.tsx => Icons/home-icon.tsx} (97%) rename src/{icons-test/image-border.tsx => Icons/image-border-icon.tsx} (87%) rename src/{icons-test/info-circle.tsx => Icons/info-circle-icon.tsx} (86%) rename src/{icons-test/info-cirlce-2.tsx => Icons/info-cirlce-2-icon.tsx} (88%) rename src/{icons-test/info.tsx => Icons/info-icon.tsx} (85%) rename src/{icons-test/info-square.tsx => Icons/info-square-icon.tsx} (87%) rename src/{icons-test/key-2.tsx => Icons/key-2-icon.tsx} (90%) rename src/{icons-test/key-duplicate.tsx => Icons/key-duplicate-icon.tsx} (87%) rename src/{icons-test/key.tsx => Icons/key-icon.tsx} (89%) rename src/{icons-test/layout-sidebar-right-mix.tsx => Icons/layout-sidebar-right-mix-icon.tsx} (88%) rename src/{icons-test/link.tsx => Icons/link-icon.tsx} (90%) rename src/{icons-test/list-fill.tsx => Icons/list-fill-icon.tsx} (88%) rename src/{icons-test/loader.tsx => Icons/loader-icon.tsx} (90%) rename src/{icons-test/lock-2.tsx => Icons/lock-2-icon.tsx} (91%) rename src/{icons-test/lock.tsx => Icons/lock-icon.tsx} (90%) rename src/{icons-test/lock-off.tsx => Icons/lock-off-icon.tsx} (89%) rename src/{icons-test/lock-open.tsx => Icons/lock-open-icon.tsx} (88%) rename src/{icons-test/loop.tsx => Icons/loop-icon.tsx} (92%) rename src/{icons-test/loupe-fill.tsx => Icons/loupe-fill-icon.tsx} (85%) rename src/{icons-test/mail.tsx => Icons/mail-icon.tsx} (89%) rename src/{icons-test/map-2.tsx => Icons/map-2-icon.tsx} (90%) rename src/{icons-test/map-pin.tsx => Icons/map-pin-icon.tsx} (89%) rename src/{icons-test/map-pin-off.tsx => Icons/map-pin-off-icon.tsx} (89%) rename src/{icons-test/minus.tsx => Icons/minus-icon.tsx} (77%) rename src/{icons-test/mood-crazy-happy.tsx => Icons/mood-crazy-happy-icon.tsx} (87%) rename src/{icons-test/mood-empty.tsx => Icons/mood-empty-icon.tsx} (88%) rename src/{icons-test/mood-gray.tsx => Icons/mood-gray-icon.tsx} (95%) rename src/{icons-test/mood.tsx => Icons/mood-icon.tsx} (95%) rename src/{icons-test/mood-sad.tsx => Icons/mood-sad-icon.tsx} (89%) rename src/{icons-test/mood-smile.tsx => Icons/mood-smile-icon.tsx} (88%) rename src/{icons-test/mouse-left-2.tsx => Icons/mouse-left-2-icon.tsx} (91%) rename src/{icons-test/mouse-left.tsx => Icons/mouse-left-icon.tsx} (85%) rename src/{icons-test/mouse-right.tsx => Icons/mouse-right-icon.tsx} (84%) rename src/{icons-test/no-duplicate.tsx => Icons/no-duplicate-icon.tsx} (90%) rename src/{icons-test/none-selected.tsx => Icons/none-selected-icon.tsx} (89%) rename src/{icons-test/palette-fill.tsx => Icons/palette-fill-icon.tsx} (93%) rename src/{icons-test/palette.tsx => Icons/palette-icon.tsx} (91%) rename src/{icons-test/pause-fill.tsx => Icons/pause-fill-icon.tsx} (87%) rename src/{icons-test/photo.tsx => Icons/photo-icon.tsx} (91%) rename src/{icons-test/photo-off-2.tsx => Icons/photo-off-2-icon.tsx} (90%) rename src/{icons-test/photo-off.tsx => Icons/photo-off-icon.tsx} (90%) rename src/{icons-test/photo-stack.tsx => Icons/photo-stack-icon.tsx} (90%) rename src/{icons-test/pinned.tsx => Icons/pinned-icon.tsx} (88%) rename src/{icons-test/play-fill.tsx => Icons/play-fill-icon.tsx} (86%) rename src/{icons-test/play.tsx => Icons/play-icon.tsx} (87%) rename src/{icons-test/player.tsx => Icons/player-icon.tsx} (93%) rename src/{icons-test/plus.tsx => Icons/plus-icon.tsx} (88%) rename src/{icons-test/question-mark.tsx => Icons/question-mark-icon.tsx} (87%) rename src/{icons-test/recull.tsx => Icons/recull-icon.tsx} (95%) rename src/{icons-test/redeem.tsx => Icons/redeem-icon.tsx} (91%) rename src/{icons-test/refresh-2.tsx => Icons/refresh-2-icon.tsx} (91%) rename src/{icons-test/refresh-alert.tsx => Icons/refresh-alert-icon.tsx} (85%) rename src/{icons-test/refresh.tsx => Icons/refresh-icon.tsx} (87%) rename src/{icons-test/reload-alert.tsx => Icons/reload-alert-icon.tsx} (86%) rename src/{icons-test/rotate-clockwise.tsx => Icons/rotate-clockwise-icon.tsx} (85%) rename src/{icons-test/rotate.tsx => Icons/rotate-icon.tsx} (88%) rename src/{icons-test/scissors.tsx => Icons/scissors-icon.tsx} (94%) rename src/{icons-test/search.tsx => Icons/search-icon.tsx} (87%) rename src/{icons-test/share.tsx => Icons/share-icon.tsx} (90%) rename src/{icons-test/shopping-cart-discount.tsx => Icons/shopping-cart-discount-icon.tsx} (87%) rename src/{icons-test/shopping-cart.tsx => Icons/shopping-cart-icon.tsx} (87%) rename src/{icons-test/sort-ascending-2.tsx => Icons/sort-ascending-2-icon.tsx} (88%) rename src/{icons-test/sort-ascending.tsx => Icons/sort-ascending-icon.tsx} (86%) rename src/{icons-test/sort-ascending-letters.tsx => Icons/sort-ascending-letters-icon.tsx} (84%) rename src/{icons-test/sort-ascending-numbers.tsx => Icons/sort-ascending-numbers-icon.tsx} (86%) rename src/{icons-test/sort-descending-2.tsx => Icons/sort-descending-2-icon.tsx} (88%) rename src/{icons-test/sort-descending.tsx => Icons/sort-descending-icon.tsx} (86%) rename src/{icons-test/sort-descending-letters.tsx => Icons/sort-descending-letters-icon.tsx} (84%) rename src/{icons-test/sort-descending-numbers.tsx => Icons/sort-descending-numbers-icon.tsx} (85%) rename src/{icons-test/sparkle.tsx => Icons/sparkle-icon.tsx} (94%) rename src/{icons-test/spray.tsx => Icons/spray-icon.tsx} (89%) rename src/{icons-test/spray_2.tsx => Icons/spray_2-icon.tsx} (94%) rename src/{icons-test/stack-double.tsx => Icons/stack-double-icon.tsx} (85%) rename src/{icons-test/stack-triple.tsx => Icons/stack-triple-icon.tsx} (85%) rename src/{icons-test/star - 0.tsx => Icons/star - 0-icon.tsx} (96%) rename src/{icons-test/star - 1.tsx => Icons/star - 1-icon.tsx} (93%) rename src/{icons-test/star - 2.tsx => Icons/star - 2-icon.tsx} (96%) rename src/{icons-test/star - 3.tsx => Icons/star - 3-icon.tsx} (96%) rename src/{icons-test/star - 4.tsx => Icons/star - 4-icon.tsx} (94%) rename src/{icons-test/star - 5.tsx => Icons/star - 5-icon.tsx} (95%) rename src/{icons-test/star-fill.tsx => Icons/star-fill-icon.tsx} (85%) rename src/{icons-test/star-fill-off.tsx => Icons/star-fill-off-icon.tsx} (89%) rename src/{icons-test/star.tsx => Icons/star-icon.tsx} (89%) rename src/{icons-test/star-off.tsx => Icons/star-off-icon.tsx} (88%) rename src/{icons-test/success-di.tsx => Icons/success-di-icon.tsx} (87%) rename src/{icons-test/thumb-down.tsx => Icons/thumb-down-icon.tsx} (88%) rename src/{icons-test/thumb-up.tsx => Icons/thumb-up-icon.tsx} (89%) rename src/{icons-test/trash.tsx => Icons/trash-icon.tsx} (90%) rename src/{icons-test/trash-off.tsx => Icons/trash-off-icon.tsx} (90%) rename src/{icons-test/unlink.tsx => Icons/unlink-icon.tsx} (90%) rename src/{icons-test/upload-2.tsx => Icons/upload-2-icon.tsx} (86%) rename src/{icons-test/upload-accent.tsx => Icons/upload-accent-icon.tsx} (90%) rename src/{icons-test/upload-c1-cat.tsx => Icons/upload-c1-cat-icon.tsx} (95%) rename src/{icons-test/upload.tsx => Icons/upload-icon.tsx} (88%) rename src/{icons-test/upload-lr-cat.tsx => Icons/upload-lr-cat-icon.tsx} (94%) rename src/{icons-test/user-check.tsx => Icons/user-check-icon.tsx} (87%) rename src/{icons-test/user-exclamation.tsx => Icons/user-exclamation-icon.tsx} (85%) rename src/{icons-test/user.tsx => Icons/user-icon.tsx} (89%) rename src/{icons-test/user-minus.tsx => Icons/user-minus-icon.tsx} (87%) rename src/{icons-test/user-off.tsx => Icons/user-off-icon.tsx} (89%) rename src/{icons-test/user-plus.tsx => Icons/user-plus-icon.tsx} (87%) rename src/{icons-test/user-x.tsx => Icons/user-x-icon.tsx} (89%) rename src/{icons-test/users.tsx => Icons/users-icon.tsx} (90%) rename src/{icons-test/view-all.tsx => Icons/view-all-icon.tsx} (93%) rename src/{icons-test/viewfinder.tsx => Icons/viewfinder-icon.tsx} (88%) rename src/{icons-test/wifi-1.tsx => Icons/wifi-1-icon.tsx} (87%) rename src/{icons-test/wifi-2.tsx => Icons/wifi-2-icon.tsx} (88%) rename src/{icons-test/wifi.tsx => Icons/wifi-icon.tsx} (90%) rename src/{icons-test/wifi-off.tsx => Icons/wifi-off-icon.tsx} (92%) rename src/{icons-test/world.tsx => Icons/world-icon.tsx} (90%) rename src/{icons-test/writing.tsx => Icons/writing-icon.tsx} (85%) rename src/{icons-test/x.tsx => Icons/x-icon.tsx} (89%) rename src/{icons-test/zoom-in.tsx => Icons/zoom-in-icon.tsx} (89%) rename src/{icons-test/zoom-out.tsx => Icons/zoom-out-icon.tsx} (88%) rename src/{icons-test/zoom-question.tsx => Icons/zoom-question-icon.tsx} (87%) delete mode 100644 src/icons-omega/Crown Play.tsx delete mode 100644 src/icons-omega/Import.tsx delete mode 100644 src/icons-omega/adjustments-horizontal.tsx delete mode 100644 src/icons-omega/adjustments.tsx delete mode 100644 src/icons-omega/aftershoot-logo.tsx delete mode 100644 src/icons-omega/alarm.tsx delete mode 100644 src/icons-omega/alert-circle-fill.tsx delete mode 100644 src/icons-omega/alert-circle.tsx delete mode 100644 src/icons-omega/alert-octagon.tsx delete mode 100644 src/icons-omega/alert-triangle-fill.tsx delete mode 100644 src/icons-omega/alert-triangle.tsx delete mode 100644 src/icons-omega/apple-all.tsx delete mode 100644 src/icons-omega/arrow-curve-fill.tsx delete mode 100644 src/icons-omega/arrow-down.tsx delete mode 100644 src/icons-omega/arrow-left.tsx delete mode 100644 src/icons-omega/arrow-narrow-left.tsx delete mode 100644 src/icons-omega/arrow-narrow-right.tsx delete mode 100644 src/icons-omega/arrow-right.tsx delete mode 100644 src/icons-omega/arrow-sort-2.tsx delete mode 100644 src/icons-omega/arrow-up.tsx delete mode 100644 src/icons-omega/arrows-diagonal.tsx delete mode 100644 src/icons-omega/arrows-sort.tsx delete mode 100644 src/icons-omega/atom.tsx delete mode 100644 src/icons-omega/ban.tsx delete mode 100644 src/icons-omega/bell-minus.tsx delete mode 100644 src/icons-omega/bell-off.tsx delete mode 100644 src/icons-omega/bell-plus.tsx delete mode 100644 src/icons-omega/bell-ringing-2.tsx delete mode 100644 src/icons-omega/bell-ringing.tsx delete mode 100644 src/icons-omega/bell-x.tsx delete mode 100644 src/icons-omega/bell.tsx delete mode 100644 src/icons-omega/brand-facebook.tsx delete mode 100644 src/icons-omega/brand-github.tsx delete mode 100644 src/icons-omega/brand-instagram.tsx delete mode 100644 src/icons-omega/brand-twitter.tsx delete mode 100644 src/icons-omega/brand-whatsapp.tsx delete mode 100644 src/icons-omega/brand-youtube.tsx delete mode 100644 src/icons-omega/bulb-off.tsx delete mode 100644 src/icons-omega/bulb.tsx delete mode 100644 src/icons-omega/check.tsx delete mode 100644 src/icons-omega/checkBlue.tsx delete mode 100644 src/icons-omega/check_box.tsx delete mode 100644 src/icons-omega/check_box_empty.tsx delete mode 100644 src/icons-omega/chevron-down.tsx delete mode 100644 src/icons-omega/chevron-left.tsx delete mode 100644 src/icons-omega/chevron-right.tsx delete mode 100644 src/icons-omega/chevron-up.tsx delete mode 100644 src/icons-omega/chevrons-left.tsx delete mode 100644 src/icons-omega/chevrons-right.tsx delete mode 100644 src/icons-omega/circle-check-2.tsx delete mode 100644 src/icons-omega/circle-check.tsx delete mode 100644 src/icons-omega/circle-fill.tsx delete mode 100644 src/icons-omega/circle.tsx delete mode 100644 src/icons-omega/clock.tsx delete mode 100644 src/icons-omega/cloud-upload-accent.tsx delete mode 100644 src/icons-omega/cloud-upload.tsx delete mode 100644 src/icons-omega/collection.tsx delete mode 100644 src/icons-omega/color-swatch.tsx delete mode 100644 src/icons-omega/confetti.tsx delete mode 100644 src/icons-omega/copy.tsx delete mode 100644 src/icons-omega/crown-2-fill.tsx delete mode 100644 src/icons-omega/crown.tsx delete mode 100644 src/icons-omega/currency-dollar.tsx delete mode 100644 src/icons-omega/current-location.tsx delete mode 100644 src/icons-omega/device-desktop-analytics.tsx delete mode 100644 src/icons-omega/device-desktop-off.tsx delete mode 100644 src/icons-omega/device-desktop.tsx delete mode 100644 src/icons-omega/device-laptop.tsx delete mode 100644 src/icons-omega/device-tv.tsx delete mode 100644 src/icons-omega/diamond.tsx delete mode 100644 src/icons-omega/discount-2.tsx delete mode 100644 src/icons-omega/discount.tsx delete mode 100644 src/icons-omega/disk.tsx delete mode 100644 src/icons-omega/dots-vertical.tsx delete mode 100644 src/icons-omega/download-accent.tsx delete mode 100644 src/icons-omega/download.tsx delete mode 100644 src/icons-omega/edit.tsx delete mode 100644 src/icons-omega/external-link.tsx delete mode 100644 src/icons-omega/eye-check.tsx delete mode 100644 src/icons-omega/eye-off.tsx delete mode 100644 src/icons-omega/eye.tsx delete mode 100644 src/icons-omega/facebook.tsx delete mode 100644 src/icons-omega/file-download.tsx delete mode 100644 src/icons-omega/file-export.tsx delete mode 100644 src/icons-omega/file-report.tsx delete mode 100644 src/icons-omega/file-search.tsx delete mode 100644 src/icons-omega/filter-off.tsx delete mode 100644 src/icons-omega/filter.tsx delete mode 100644 src/icons-omega/flag-fill.tsx delete mode 100644 src/icons-omega/flag-off.tsx delete mode 100644 src/icons-omega/flag.tsx delete mode 100644 src/icons-omega/folder-download.tsx delete mode 100644 src/icons-omega/folder-eye.tsx delete mode 100644 src/icons-omega/folder-fill.tsx delete mode 100644 src/icons-omega/folder-minus.tsx delete mode 100644 src/icons-omega/folder-off.tsx delete mode 100644 src/icons-omega/folder-plus.tsx delete mode 100644 src/icons-omega/folder-upload.tsx delete mode 100644 src/icons-omega/folder-x.tsx delete mode 100644 src/icons-omega/folder.tsx delete mode 100644 src/icons-omega/folders.tsx delete mode 100644 src/icons-omega/grid-dots.tsx delete mode 100644 src/icons-omega/grid-view-1.tsx delete mode 100644 src/icons-omega/grid-view-2.tsx delete mode 100644 src/icons-omega/home-2.tsx delete mode 100644 src/icons-omega/home-mix.tsx delete mode 100644 src/icons-omega/image-border.tsx delete mode 100644 src/icons-omega/index.ts delete mode 100644 src/icons-omega/info-circle.tsx delete mode 100644 src/icons-omega/info-cirlce-2.tsx delete mode 100644 src/icons-omega/info-square.tsx delete mode 100644 src/icons-omega/info.tsx delete mode 100644 src/icons-omega/key-2.tsx delete mode 100644 src/icons-omega/key-duplicate-fill.tsx delete mode 100644 src/icons-omega/key-duplicate.tsx delete mode 100644 src/icons-omega/key.tsx delete mode 100644 src/icons-omega/layout-sidebar-right-mix.tsx delete mode 100644 src/icons-omega/link.tsx delete mode 100644 src/icons-omega/list-fill.tsx delete mode 100644 src/icons-omega/loader.tsx delete mode 100644 src/icons-omega/lock-2.tsx delete mode 100644 src/icons-omega/lock-off.tsx delete mode 100644 src/icons-omega/lock-open.tsx delete mode 100644 src/icons-omega/lock.tsx delete mode 100644 src/icons-omega/loop.tsx delete mode 100644 src/icons-omega/loupe-fill.tsx delete mode 100644 src/icons-omega/mail.tsx delete mode 100644 src/icons-omega/map-2.tsx delete mode 100644 src/icons-omega/map-pin-off.tsx delete mode 100644 src/icons-omega/map-pin.tsx delete mode 100644 src/icons-omega/minus.tsx delete mode 100644 src/icons-omega/mood-crazy-happy.tsx delete mode 100644 src/icons-omega/mood-empty.tsx delete mode 100644 src/icons-omega/mood-sad.tsx delete mode 100644 src/icons-omega/mood-smile.tsx delete mode 100644 src/icons-omega/mood.tsx delete mode 100644 src/icons-omega/mood_gray.tsx delete mode 100644 src/icons-omega/mouse-left-2.tsx delete mode 100644 src/icons-omega/mouse-left.tsx delete mode 100644 src/icons-omega/mouse-right.tsx delete mode 100644 src/icons-omega/no-duplicate.tsx delete mode 100644 src/icons-omega/none-selected.tsx delete mode 100644 src/icons-omega/palette-fill.tsx delete mode 100644 src/icons-omega/palette.tsx delete mode 100644 src/icons-omega/partially_checked.tsx delete mode 100644 src/icons-omega/pause-fill.tsx delete mode 100644 src/icons-omega/photo-off-2.tsx delete mode 100644 src/icons-omega/photo-off.tsx delete mode 100644 src/icons-omega/photo-stack.tsx delete mode 100644 src/icons-omega/photo.tsx delete mode 100644 src/icons-omega/pinned.tsx delete mode 100644 src/icons-omega/play-fill.tsx delete mode 100644 src/icons-omega/plus.tsx delete mode 100644 src/icons-omega/question-mark.tsx delete mode 100644 src/icons-omega/recull.tsx delete mode 100644 src/icons-omega/redeem.tsx delete mode 100644 src/icons-omega/refresh-2.tsx delete mode 100644 src/icons-omega/refresh-alert.tsx delete mode 100644 src/icons-omega/refresh.tsx delete mode 100644 src/icons-omega/reload-alert.tsx delete mode 100644 src/icons-omega/rotate-90.tsx delete mode 100644 src/icons-omega/rotate-clockwise.tsx delete mode 100644 src/icons-omega/rotate.tsx delete mode 100644 src/icons-omega/scissors-fill.tsx delete mode 100644 src/icons-omega/search.tsx delete mode 100644 src/icons-omega/share.tsx delete mode 100644 src/icons-omega/shopping-cart-discount.tsx delete mode 100644 src/icons-omega/shopping-cart.tsx delete mode 100644 src/icons-omega/sort-ascending-2.tsx delete mode 100644 src/icons-omega/sort-ascending-letters.tsx delete mode 100644 src/icons-omega/sort-ascending-numbers.tsx delete mode 100644 src/icons-omega/sort-ascending.tsx delete mode 100644 src/icons-omega/sort-descending-2.tsx delete mode 100644 src/icons-omega/sort-descending-letters.tsx delete mode 100644 src/icons-omega/sort-descending-numbers.tsx delete mode 100644 src/icons-omega/sort-descending.tsx delete mode 100644 src/icons-omega/sparkle.tsx delete mode 100644 src/icons-omega/spray.tsx delete mode 100644 src/icons-omega/spray_2.tsx delete mode 100644 src/icons-omega/stack-2.tsx delete mode 100644 src/icons-omega/stack-double.tsx delete mode 100644 src/icons-omega/stack-triple.tsx delete mode 100644 src/icons-omega/stack.tsx delete mode 100644 src/icons-omega/star - 0.tsx delete mode 100644 src/icons-omega/star - 1.tsx delete mode 100644 src/icons-omega/star - 2.tsx delete mode 100644 src/icons-omega/star - 3.tsx delete mode 100644 src/icons-omega/star - 4.tsx delete mode 100644 src/icons-omega/star - 5.tsx delete mode 100644 src/icons-omega/star-fill.tsx delete mode 100644 src/icons-omega/star-off-fill.tsx delete mode 100644 src/icons-omega/star-off.tsx delete mode 100644 src/icons-omega/star.tsx delete mode 100644 src/icons-omega/thumb-down.tsx delete mode 100644 src/icons-omega/thumb-up.tsx delete mode 100644 src/icons-omega/trash-off.tsx delete mode 100644 src/icons-omega/trash.tsx delete mode 100644 src/icons-omega/unlink.tsx delete mode 100644 src/icons-omega/upload-2.tsx delete mode 100644 src/icons-omega/upload-accent.tsx delete mode 100644 src/icons-omega/upload-c1-cat.tsx delete mode 100644 src/icons-omega/upload-lr-cat.tsx delete mode 100644 src/icons-omega/upload.tsx delete mode 100644 src/icons-omega/user-check.tsx delete mode 100644 src/icons-omega/user-exclamation.tsx delete mode 100644 src/icons-omega/user-minus.tsx delete mode 100644 src/icons-omega/user-off.tsx delete mode 100644 src/icons-omega/user-plus.tsx delete mode 100644 src/icons-omega/user-x.tsx delete mode 100644 src/icons-omega/user.tsx delete mode 100644 src/icons-omega/users.tsx delete mode 100644 src/icons-omega/view-all.tsx delete mode 100644 src/icons-omega/viewfinder.tsx delete mode 100644 src/icons-omega/wifi-1.tsx delete mode 100644 src/icons-omega/wifi-2.tsx delete mode 100644 src/icons-omega/wifi-off.tsx delete mode 100644 src/icons-omega/wifi.tsx delete mode 100644 src/icons-omega/world.tsx delete mode 100644 src/icons-omega/writing.tsx delete mode 100644 src/icons-omega/x.tsx delete mode 100644 src/icons-omega/zoom-in.tsx delete mode 100644 src/icons-omega/zoom-out.tsx delete mode 100644 src/icons-omega/zoom-question.tsx delete mode 100644 src/icons-test/index.ts create mode 100644 src/stories/AdjustmentsHorizontalIcon.stories.tsx create mode 100644 src/stories/AdjustmentsIcon.stories.tsx rename src/stories/{CheckboxBlueAccent.stories.tsx => AftershootCreditIcon.stories.tsx} (86%) rename src/stories/{ArrowCurveFill.stories.tsx => AftershootLogoIcon.stories.tsx} (87%) create mode 100644 src/stories/AlarmIcon.stories.tsx rename src/stories/{AlertTriangleAccent.stories.tsx => AlertCircleAccentIcon.stories.tsx} (85%) create mode 100644 src/stories/AlertCircleIcon.stories.tsx create mode 100644 src/stories/AlertOctagonIcon.stories.tsx delete mode 100644 src/stories/AlertTriangle.stories.tsx create mode 100644 src/stories/AlertTriangleAccentIcon.stories.tsx rename src/stories/{CurrentLocation.stories.tsx => AlertTriangleIcon.stories.tsx} (86%) rename src/stories/{Apple.stories.tsx => AppleIcon.stories.tsx} (90%) create mode 100644 src/stories/ArrowCurveFillIcon.stories.tsx rename src/stories/{AlertOctagon.stories.tsx => ArrowDownIcon.stories.tsx} (87%) create mode 100644 src/stories/ArrowLeftIcon.stories.tsx delete mode 100644 src/stories/ArrowNarrowLeft.stories.tsx create mode 100644 src/stories/ArrowNarrowLeftIcon.stories.tsx create mode 100644 src/stories/ArrowNarrowRightIcon.stories.tsx rename src/stories/{Crown.stories.tsx => ArrowRightIcon.stories.tsx} (88%) delete mode 100644 src/stories/ArrowSort2.stories.tsx create mode 100644 src/stories/ArrowSort2Icon.stories.tsx create mode 100644 src/stories/ArrowUpIcon.stories.tsx delete mode 100644 src/stories/ArrowsDiagonal.stories.tsx create mode 100644 src/stories/ArrowsDiagonalIcon.stories.tsx delete mode 100644 src/stories/ArrowsSort.stories.tsx create mode 100644 src/stories/ArrowsSortIcon.stories.tsx create mode 100644 src/stories/AtomAccentIcon.stories.tsx rename src/stories/{ArrowUp.stories.tsx => AtomIcon.stories.tsx} (89%) rename src/stories/{Atom.stories.tsx => BanIcon.stories.tsx} (89%) create mode 100644 src/stories/BellIcon.stories.tsx delete mode 100644 src/stories/BellMinus.stories.tsx create mode 100644 src/stories/BellMinusIcon.stories.tsx delete mode 100644 src/stories/BellOff.stories.tsx create mode 100644 src/stories/BellOffIcon.stories.tsx delete mode 100644 src/stories/BellPlus.stories.tsx create mode 100644 src/stories/BellPlusIcon.stories.tsx delete mode 100644 src/stories/BellRinging.stories.tsx delete mode 100644 src/stories/BellRinging2.stories.tsx create mode 100644 src/stories/BellRinging2Icon.stories.tsx create mode 100644 src/stories/BellRingingIcon.stories.tsx delete mode 100644 src/stories/BellX.stories.tsx create mode 100644 src/stories/BellXIcon.stories.tsx delete mode 100644 src/stories/BrandFacebook.stories.tsx rename src/stories/{RotateClockwise.stories.tsx => BrandFacebookIcon.stories.tsx} (86%) delete mode 100644 src/stories/BrandGithub.stories.tsx create mode 100644 src/stories/BrandGithubIcon.stories.tsx delete mode 100644 src/stories/BrandInstagram.stories.tsx create mode 100644 src/stories/BrandInstagramIcon.stories.tsx delete mode 100644 src/stories/BrandTwitter.stories.tsx create mode 100644 src/stories/BrandTwitterIcon.stories.tsx delete mode 100644 src/stories/BrandWhatsapp.stories.tsx rename src/stories/{UserExclamation.stories.tsx => BrandWhatsappIcon.stories.tsx} (86%) delete mode 100644 src/stories/BrandYoutube.stories.tsx create mode 100644 src/stories/BrandYoutubeIcon.stories.tsx delete mode 100644 src/stories/Bulb.stories.tsx create mode 100644 src/stories/BulbIcon.stories.tsx delete mode 100644 src/stories/BulbOff.stories.tsx create mode 100644 src/stories/BulbOffIcon.stories.tsx delete mode 100644 src/stories/Check.stories.tsx create mode 100644 src/stories/CheckBoxEmptyIcon.stories.tsx create mode 100644 src/stories/CheckIcon.stories.tsx create mode 100644 src/stories/CheckboxBlueAccentIcon.stories.tsx delete mode 100644 src/stories/CheckboxGreenAccent.stories.tsx create mode 100644 src/stories/CheckboxGreenAccentIcon.stories.tsx delete mode 100644 src/stories/CheckboxPartialBlueAccent.stories.tsx create mode 100644 src/stories/CheckboxPartialBlueAccentIcon.stories.tsx delete mode 100644 src/stories/ChevronDown.stories.tsx create mode 100644 src/stories/ChevronDownIcon.stories.tsx delete mode 100644 src/stories/ChevronLeft.stories.tsx create mode 100644 src/stories/ChevronLeftIcon.stories.tsx delete mode 100644 src/stories/ChevronRight.stories.tsx create mode 100644 src/stories/ChevronRightIcon.stories.tsx delete mode 100644 src/stories/ChevronUp.stories.tsx create mode 100644 src/stories/ChevronUpIcon.stories.tsx delete mode 100644 src/stories/ChevronsLeft.stories.tsx create mode 100644 src/stories/ChevronsLeftIcon.stories.tsx delete mode 100644 src/stories/ChevronsRight.stories.tsx create mode 100644 src/stories/ChevronsRightIcon.stories.tsx delete mode 100644 src/stories/Circle.stories.tsx delete mode 100644 src/stories/CircleCheck.stories.tsx delete mode 100644 src/stories/CircleCheck2.stories.tsx create mode 100644 src/stories/CircleCheck2Icon.stories.tsx create mode 100644 src/stories/CircleCheckIcon.stories.tsx delete mode 100644 src/stories/CircleCrossAccent.stories.tsx rename src/stories/{AftershootCredit.stories.tsx => CircleCrossAccentIcon.stories.tsx} (85%) create mode 100644 src/stories/CircleFillIcon.stories.tsx rename src/stories/{ArrowDown.stories.tsx => CircleIcon.stories.tsx} (88%) delete mode 100644 src/stories/Clock.stories.tsx create mode 100644 src/stories/ClockIcon.stories.tsx delete mode 100644 src/stories/CloudUpload.stories.tsx delete mode 100644 src/stories/CloudUploadAccent.stories.tsx create mode 100644 src/stories/CloudUploadAccentIcon.stories.tsx create mode 100644 src/stories/CloudUploadIcon.stories.tsx rename src/stories/{CheckBoxEmpty.stories.tsx => CollectionIcon.stories.tsx} (88%) delete mode 100644 src/stories/ColorSwatch.stories.tsx create mode 100644 src/stories/ColorSwatchIcon.stories.tsx delete mode 100644 src/stories/Confetti.stories.tsx rename src/stories/{Adjustments.stories.tsx => ConfettiIcon.stories.tsx} (88%) delete mode 100644 src/stories/Copy.stories.tsx create mode 100644 src/stories/CopyIcon.stories.tsx create mode 100644 src/stories/Crown2FillIcon.stories.tsx create mode 100644 src/stories/CrownIcon.stories.tsx delete mode 100644 src/stories/CurrencyDollar.stories.tsx create mode 100644 src/stories/CurrencyDollarIcon.stories.tsx create mode 100644 src/stories/CurrentLocationIcon.stories.tsx delete mode 100644 src/stories/DeviceDesktop.stories.tsx delete mode 100644 src/stories/DeviceDesktopAnalytics.stories.tsx create mode 100644 src/stories/DeviceDesktopAnalyticsIcon.stories.tsx create mode 100644 src/stories/DeviceDesktopIcon.stories.tsx delete mode 100644 src/stories/DeviceDesktopOff.stories.tsx create mode 100644 src/stories/DeviceDesktopOffIcon.stories.tsx delete mode 100644 src/stories/DeviceLaptop.stories.tsx rename src/stories/{ArrowNarrowRight.stories.tsx => DeviceLaptopIcon.stories.tsx} (90%) delete mode 100644 src/stories/DeviceTv.stories.tsx create mode 100644 src/stories/DeviceTvIcon.stories.tsx delete mode 100644 src/stories/Diamond.stories.tsx rename src/stories/{ArrowRight.stories.tsx => DiamondIcon.stories.tsx} (88%) delete mode 100644 src/stories/Discount.stories.tsx delete mode 100644 src/stories/Discount2.stories.tsx create mode 100644 src/stories/Discount2Icon.stories.tsx rename src/stories/{AlertCircle.stories.tsx => DiscountIcon.stories.tsx} (88%) delete mode 100644 src/stories/Disk.stories.tsx create mode 100644 src/stories/DiskIcon.stories.tsx delete mode 100644 src/stories/DotsVertical.stories.tsx create mode 100644 src/stories/DotsVerticalIcon.stories.tsx delete mode 100644 src/stories/Download.stories.tsx rename src/stories/{AlertCircleAccent.stories.tsx => DownloadAccentIcon.stories.tsx} (86%) create mode 100644 src/stories/DownloadIcon.stories.tsx delete mode 100644 src/stories/Edit.stories.tsx rename src/stories/{GoogleColor.stories.tsx => EditIconIcon.stories.tsx} (88%) delete mode 100644 src/stories/ExternalLink.stories.tsx create mode 100644 src/stories/ExternalLinkIcon.stories.tsx delete mode 100644 src/stories/Eye.stories.tsx delete mode 100644 src/stories/EyeCheck.stories.tsx create mode 100644 src/stories/EyeCheckIcon.stories.tsx rename src/stories/{Ban.stories.tsx => EyeIcon.stories.tsx} (89%) delete mode 100644 src/stories/EyeOff.stories.tsx create mode 100644 src/stories/EyeOffIcon.stories.tsx rename src/stories/{Crown2Fill.stories.tsx => FacebookIcon.stories.tsx} (89%) delete mode 100644 src/stories/FileDownload.stories.tsx create mode 100644 src/stories/FileDownloadIcon.stories.tsx delete mode 100644 src/stories/FileExport.stories.tsx create mode 100644 src/stories/FileExportIcon.stories.tsx delete mode 100644 src/stories/FileReport.stories.tsx create mode 100644 src/stories/FileReportIcon.stories.tsx delete mode 100644 src/stories/FileSearch.stories.tsx create mode 100644 src/stories/FileSearchIcon.stories.tsx delete mode 100644 src/stories/Filter.stories.tsx rename src/stories/{ArrowLeft.stories.tsx => FilterIcon.stories.tsx} (88%) delete mode 100644 src/stories/FilterOff.stories.tsx create mode 100644 src/stories/FilterOffIcon.stories.tsx delete mode 100644 src/stories/Flag.stories.tsx rename src/stories/{ImageBorder.stories.tsx => FlagFillIcon.stories.tsx} (89%) create mode 100644 src/stories/FlagIcon.stories.tsx delete mode 100644 src/stories/FlagOff.stories.tsx create mode 100644 src/stories/FlagOffIcon.stories.tsx delete mode 100644 src/stories/Folder.stories.tsx delete mode 100644 src/stories/FolderDownload.stories.tsx create mode 100644 src/stories/FolderDownloadIcon.stories.tsx delete mode 100644 src/stories/FolderEye.stories.tsx create mode 100644 src/stories/FolderEyeIcon.stories.tsx create mode 100644 src/stories/FolderFillIcon.stories.tsx create mode 100644 src/stories/FolderIcon.stories.tsx delete mode 100644 src/stories/FolderMinus.stories.tsx create mode 100644 src/stories/FolderMinusIcon.stories.tsx delete mode 100644 src/stories/FolderOff.stories.tsx rename src/stories/{FolderUpload.stories.tsx => FolderOffIcon.stories.tsx} (89%) delete mode 100644 src/stories/FolderPlus.stories.tsx create mode 100644 src/stories/FolderPlusIcon.stories.tsx create mode 100644 src/stories/FolderUploadIcon.stories.tsx delete mode 100644 src/stories/FolderX.stories.tsx create mode 100644 src/stories/FolderXIcon.stories.tsx delete mode 100644 src/stories/Folders.stories.tsx create mode 100644 src/stories/FoldersIcon.stories.tsx rename src/stories/{DownloadAccent.stories.tsx => GoogleColorIcon.stories.tsx} (87%) rename src/stories/{AtomAccent.stories.tsx => GrabHandIcon.stories.tsx} (88%) delete mode 100644 src/stories/GridDots.stories.tsx create mode 100644 src/stories/GridDotsIcon.stories.tsx delete mode 100644 src/stories/GridView1.stories.tsx create mode 100644 src/stories/GridView1Icon.stories.tsx delete mode 100644 src/stories/GridView2.stories.tsx create mode 100644 src/stories/GridView2Icon.stories.tsx delete mode 100644 src/stories/Home2.stories.tsx create mode 100644 src/stories/Home2Icon.stories.tsx rename src/stories/{Recull.stories.tsx => HomeIcon.stories.tsx} (90%) rename src/stories/{Collection.stories.tsx => ImageBorderIcon.stories.tsx} (88%) delete mode 100644 src/stories/Import.stories.tsx create mode 100644 src/stories/ImportIcon.stories.tsx delete mode 100644 src/stories/Info.stories.tsx delete mode 100644 src/stories/InfoCircle.stories.tsx create mode 100644 src/stories/InfoCircleIcon.stories.tsx delete mode 100644 src/stories/InfoCirlce2.stories.tsx create mode 100644 src/stories/InfoCirlce2Icon.stories.tsx create mode 100644 src/stories/InfoIcon.stories.tsx delete mode 100644 src/stories/InfoSquare.stories.tsx create mode 100644 src/stories/InfoSquareIcon.stories.tsx delete mode 100644 src/stories/Key.stories.tsx delete mode 100644 src/stories/Key2.stories.tsx create mode 100644 src/stories/Key2Icon.stories.tsx delete mode 100644 src/stories/KeyDuplicate.stories.tsx create mode 100644 src/stories/KeyDuplicateIcon.stories.tsx rename src/stories/{Alarm.stories.tsx => KeyIcon.stories.tsx} (89%) rename src/stories/{LayoutSidebarRightMix.stories.tsx => LayoutSidebarRightMixIcon.stories.tsx} (85%) delete mode 100644 src/stories/Link.stories.tsx create mode 100644 src/stories/LinkIcon.stories.tsx delete mode 100644 src/stories/ListFill.stories.tsx rename src/stories/{CircleFill.stories.tsx => ListFillIcon.stories.tsx} (89%) delete mode 100644 src/stories/Loader.stories.tsx create mode 100644 src/stories/LoaderIcon.stories.tsx delete mode 100644 src/stories/Lock.stories.tsx delete mode 100644 src/stories/Lock2.stories.tsx create mode 100644 src/stories/Lock2Icon.stories.tsx create mode 100644 src/stories/LockIcon.stories.tsx delete mode 100644 src/stories/LockOff.stories.tsx create mode 100644 src/stories/LockOffIcon.stories.tsx delete mode 100644 src/stories/LockOpen.stories.tsx create mode 100644 src/stories/LockOpenIcon.stories.tsx delete mode 100644 src/stories/Loop.stories.tsx create mode 100644 src/stories/LoopIcon.stories.tsx delete mode 100644 src/stories/LoupeFill.stories.tsx create mode 100644 src/stories/LoupeFillIcon.stories.tsx delete mode 100644 src/stories/Mail.stories.tsx create mode 100644 src/stories/MailIcon.stories.tsx delete mode 100644 src/stories/Map2.stories.tsx create mode 100644 src/stories/Map2Icon.stories.tsx delete mode 100644 src/stories/MapPin.stories.tsx create mode 100644 src/stories/MapPinIcon.stories.tsx delete mode 100644 src/stories/MapPinOff.stories.tsx create mode 100644 src/stories/MapPinOffIcon.stories.tsx delete mode 100644 src/stories/Minus.stories.tsx create mode 100644 src/stories/MinusIcon.stories.tsx delete mode 100644 src/stories/MoodCrazyHappy.stories.tsx rename src/stories/{Upload.stories.tsx => MoodCrazyHappyIcon.stories.tsx} (88%) delete mode 100644 src/stories/MoodEmpty.stories.tsx create mode 100644 src/stories/MoodEmptyIcon.stories.tsx rename src/stories/{Mood.stories.tsx => MoodGrayIcon.stories.tsx} (88%) rename src/stories/{HomeMix.stories.tsx => MoodIcon.stories.tsx} (90%) delete mode 100644 src/stories/MoodSad.stories.tsx create mode 100644 src/stories/MoodSadIcon.stories.tsx delete mode 100644 src/stories/MoodSmile.stories.tsx create mode 100644 src/stories/MoodSmileIcon.stories.tsx delete mode 100644 src/stories/MouseLeft.stories.tsx delete mode 100644 src/stories/MouseLeft2.stories.tsx create mode 100644 src/stories/MouseLeft2Icon.stories.tsx create mode 100644 src/stories/MouseLeftIcon.stories.tsx delete mode 100644 src/stories/MouseRight.stories.tsx create mode 100644 src/stories/MouseRightIcon.stories.tsx delete mode 100644 src/stories/NoDuplicate.stories.tsx create mode 100644 src/stories/NoDuplicateIcon.stories.tsx delete mode 100644 src/stories/NoneSelected.stories.tsx create mode 100644 src/stories/NoneSelectedIcon.stories.tsx delete mode 100644 src/stories/Palette.stories.tsx delete mode 100644 src/stories/PaletteFill.stories.tsx rename src/stories/{AftershootLogo.stories.tsx => PaletteFillIcon.stories.tsx} (88%) create mode 100644 src/stories/PaletteIcon.stories.tsx delete mode 100644 src/stories/PauseFill.stories.tsx create mode 100644 src/stories/PauseFillIcon.stories.tsx delete mode 100644 src/stories/Photo.stories.tsx create mode 100644 src/stories/PhotoIcon.stories.tsx delete mode 100644 src/stories/PhotoOff.stories.tsx delete mode 100644 src/stories/PhotoOff2.stories.tsx create mode 100644 src/stories/PhotoOff2Icon.stories.tsx create mode 100644 src/stories/PhotoOffIcon.stories.tsx delete mode 100644 src/stories/PhotoStack.stories.tsx create mode 100644 src/stories/PhotoStackIcon.stories.tsx delete mode 100644 src/stories/Pinned.stories.tsx create mode 100644 src/stories/PinnedIcon.stories.tsx delete mode 100644 src/stories/PlayFill.stories.tsx rename src/stories/{Facebook.stories.tsx => PlayFillIcon.stories.tsx} (89%) rename src/stories/{Sparkle.stories.tsx => PlayIcon.stories.tsx} (90%) create mode 100644 src/stories/PlayerIcon.stories.tsx delete mode 100644 src/stories/Plus.stories.tsx create mode 100644 src/stories/PlusIcon.stories.tsx delete mode 100644 src/stories/QuestionMark.stories.tsx create mode 100644 src/stories/QuestionMarkIcon.stories.tsx rename src/stories/{MoodGray.stories.tsx => RecullIcon.stories.tsx} (89%) delete mode 100644 src/stories/Redeem.stories.tsx create mode 100644 src/stories/RedeemIcon.stories.tsx delete mode 100644 src/stories/Refresh.stories.tsx delete mode 100644 src/stories/Refresh2.stories.tsx create mode 100644 src/stories/Refresh2Icon.stories.tsx delete mode 100644 src/stories/RefreshAlert.stories.tsx create mode 100644 src/stories/RefreshAlertIcon.stories.tsx create mode 100644 src/stories/RefreshIcon.stories.tsx delete mode 100644 src/stories/ReloadAlert.stories.tsx create mode 100644 src/stories/ReloadAlertIcon.stories.tsx delete mode 100644 src/stories/Rotate.stories.tsx create mode 100644 src/stories/RotateClockwiseIcon.stories.tsx create mode 100644 src/stories/RotateIcon.stories.tsx delete mode 100644 src/stories/Scissors.stories.tsx rename src/stories/{FolderFill.stories.tsx => ScissorsIcon.stories.tsx} (89%) delete mode 100644 src/stories/Search.stories.tsx create mode 100644 src/stories/SearchIcon.stories.tsx delete mode 100644 src/stories/Share.stories.tsx create mode 100644 src/stories/ShareIcon.stories.tsx delete mode 100644 src/stories/ShoppingCart.stories.tsx delete mode 100644 src/stories/ShoppingCartDiscount.stories.tsx rename src/stories/{AdjustmentsHorizontal.stories.tsx => ShoppingCartDiscountIcon.stories.tsx} (84%) create mode 100644 src/stories/ShoppingCartIcon.stories.tsx delete mode 100644 src/stories/SortAscending.stories.tsx delete mode 100644 src/stories/SortAscending2.stories.tsx create mode 100644 src/stories/SortAscending2Icon.stories.tsx create mode 100644 src/stories/SortAscendingIcon.stories.tsx delete mode 100644 src/stories/SortAscendingLetters.stories.tsx create mode 100644 src/stories/SortAscendingLettersIcon.stories.tsx delete mode 100644 src/stories/SortAscendingNumbers.stories.tsx create mode 100644 src/stories/SortAscendingNumbersIcon.stories.tsx delete mode 100644 src/stories/SortDescending.stories.tsx delete mode 100644 src/stories/SortDescending2.stories.tsx create mode 100644 src/stories/SortDescending2Icon.stories.tsx create mode 100644 src/stories/SortDescendingIcon.stories.tsx delete mode 100644 src/stories/SortDescendingLetters.stories.tsx create mode 100644 src/stories/SortDescendingLettersIcon.stories.tsx delete mode 100644 src/stories/SortDescendingNumbers.stories.tsx create mode 100644 src/stories/SortDescendingNumbersIcon.stories.tsx rename src/stories/{FlagFill.stories.tsx => SparkleIcon.stories.tsx} (89%) delete mode 100644 src/stories/Spray.stories.tsx delete mode 100644 src/stories/Spray2.stories.tsx create mode 100644 src/stories/Spray2Icon.stories.tsx create mode 100644 src/stories/SprayIcon.stories.tsx delete mode 100644 src/stories/StackDouble.stories.tsx create mode 100644 src/stories/StackDoubleIcon.stories.tsx delete mode 100644 src/stories/StackTriple.stories.tsx create mode 100644 src/stories/StackTripleIcon.stories.tsx delete mode 100644 src/stories/Star.stories.tsx rename src/stories/{Player.stories.tsx => Star0Icon.stories.tsx} (89%) rename src/stories/{Star0.stories.tsx => Star1Icon.stories.tsx} (89%) delete mode 100644 src/stories/Star2.stories.tsx rename src/stories/{GrabHand.stories.tsx => Star2Icon.stories.tsx} (89%) delete mode 100644 src/stories/Star3.stories.tsx rename src/stories/{Star1.stories.tsx => Star3Icon.stories.tsx} (89%) delete mode 100644 src/stories/Star4.stories.tsx create mode 100644 src/stories/Star4Icon.stories.tsx delete mode 100644 src/stories/Star5.stories.tsx create mode 100644 src/stories/Star5Icon.stories.tsx delete mode 100644 src/stories/StarFill.stories.tsx rename src/stories/{Play.stories.tsx => StarFillIcon.stories.tsx} (89%) delete mode 100644 src/stories/StarFillOff.stories.tsx create mode 100644 src/stories/StarFillOffIcon.stories.tsx create mode 100644 src/stories/StarIcon.stories.tsx delete mode 100644 src/stories/StarOff.stories.tsx create mode 100644 src/stories/StarOffIcon.stories.tsx delete mode 100644 src/stories/SuccessDi.stories.tsx create mode 100644 src/stories/SuccessDiIcon.stories.tsx delete mode 100644 src/stories/ThumbDown.stories.tsx create mode 100644 src/stories/ThumbDownIcon.stories.tsx delete mode 100644 src/stories/ThumbUp.stories.tsx create mode 100644 src/stories/ThumbUpIcon.stories.tsx delete mode 100644 src/stories/Trash.stories.tsx create mode 100644 src/stories/TrashIcon.stories.tsx delete mode 100644 src/stories/TrashOff.stories.tsx create mode 100644 src/stories/TrashOffIcon.stories.tsx delete mode 100644 src/stories/Unlink.stories.tsx create mode 100644 src/stories/UnlinkIcon.stories.tsx delete mode 100644 src/stories/Upload2.stories.tsx create mode 100644 src/stories/Upload2Icon.stories.tsx delete mode 100644 src/stories/UploadAccent.stories.tsx create mode 100644 src/stories/UploadAccentIcon.stories.tsx delete mode 100644 src/stories/UploadC1Cat.stories.tsx create mode 100644 src/stories/UploadC1CatIcon.stories.tsx create mode 100644 src/stories/UploadIcon.stories.tsx delete mode 100644 src/stories/UploadLrCat.stories.tsx create mode 100644 src/stories/UploadLrCatIcon.stories.tsx delete mode 100644 src/stories/User.stories.tsx delete mode 100644 src/stories/UserCheck.stories.tsx create mode 100644 src/stories/UserCheckIcon.stories.tsx create mode 100644 src/stories/UserExclamationIcon.stories.tsx create mode 100644 src/stories/UserIcon.stories.tsx delete mode 100644 src/stories/UserMinus.stories.tsx create mode 100644 src/stories/UserMinusIcon.stories.tsx delete mode 100644 src/stories/UserOff.stories.tsx create mode 100644 src/stories/UserOffIcon.stories.tsx delete mode 100644 src/stories/UserPlus.stories.tsx create mode 100644 src/stories/UserPlusIcon.stories.tsx delete mode 100644 src/stories/UserX.stories.tsx create mode 100644 src/stories/UserXIcon.stories.tsx delete mode 100644 src/stories/Users.stories.tsx create mode 100644 src/stories/UsersIcon.stories.tsx delete mode 100644 src/stories/ViewAll.stories.tsx create mode 100644 src/stories/ViewAllIcon.stories.tsx delete mode 100644 src/stories/Viewfinder.stories.tsx create mode 100644 src/stories/ViewfinderIcon.stories.tsx delete mode 100644 src/stories/Wifi.stories.tsx delete mode 100644 src/stories/Wifi1.stories.tsx create mode 100644 src/stories/Wifi1Icon.stories.tsx delete mode 100644 src/stories/Wifi2.stories.tsx create mode 100644 src/stories/Wifi2Icon.stories.tsx create mode 100644 src/stories/WifiIcon.stories.tsx delete mode 100644 src/stories/WifiOff.stories.tsx create mode 100644 src/stories/WifiOffIcon.stories.tsx delete mode 100644 src/stories/World.stories.tsx create mode 100644 src/stories/WorldIcon.stories.tsx delete mode 100644 src/stories/Writing.stories.tsx create mode 100644 src/stories/WritingIcon.stories.tsx delete mode 100644 src/stories/X.stories.tsx rename src/stories/{Bell.stories.tsx => XIcon.stories.tsx} (90%) delete mode 100644 src/stories/ZoomIn.stories.tsx create mode 100644 src/stories/ZoomInIcon.stories.tsx delete mode 100644 src/stories/ZoomOut.stories.tsx create mode 100644 src/stories/ZoomOutIcon.stories.tsx delete mode 100644 src/stories/ZoomQuestion.stories.tsx create mode 100644 src/stories/ZoomQuestionIcon.stories.tsx diff --git a/src/Icons/culling/BorderSquareIcon.tsx b/icons-legacy/culling/BorderSquareIcon.tsx similarity index 100% rename from src/Icons/culling/BorderSquareIcon.tsx rename to icons-legacy/culling/BorderSquareIcon.tsx diff --git a/src/Icons/culling/CardBgIcon.tsx b/icons-legacy/culling/CardBgIcon.tsx similarity index 100% rename from src/Icons/culling/CardBgIcon.tsx rename to icons-legacy/culling/CardBgIcon.tsx diff --git a/src/Icons/culling/CartIcon.tsx b/icons-legacy/culling/CartIcon.tsx similarity index 100% rename from src/Icons/culling/CartIcon.tsx rename to icons-legacy/culling/CartIcon.tsx diff --git a/src/Icons/culling/CelebrateIcon.tsx b/icons-legacy/culling/CelebrateIcon.tsx similarity index 100% rename from src/Icons/culling/CelebrateIcon.tsx rename to icons-legacy/culling/CelebrateIcon.tsx diff --git a/src/Icons/culling/CheckFillCircleIcon.tsx b/icons-legacy/culling/CheckFillCircleIcon.tsx similarity index 100% rename from src/Icons/culling/CheckFillCircleIcon.tsx rename to icons-legacy/culling/CheckFillCircleIcon.tsx diff --git a/src/Icons/culling/ComputerBgIcon.tsx b/icons-legacy/culling/ComputerBgIcon.tsx similarity index 100% rename from src/Icons/culling/ComputerBgIcon.tsx rename to icons-legacy/culling/ComputerBgIcon.tsx diff --git a/src/Icons/culling/ContactSupportIcon.tsx b/icons-legacy/culling/ContactSupportIcon.tsx similarity index 100% rename from src/Icons/culling/ContactSupportIcon.tsx rename to icons-legacy/culling/ContactSupportIcon.tsx diff --git a/src/Icons/culling/CouponIcon.tsx b/icons-legacy/culling/CouponIcon.tsx similarity index 100% rename from src/Icons/culling/CouponIcon.tsx rename to icons-legacy/culling/CouponIcon.tsx diff --git a/src/Icons/culling/CreateProfileIcon.tsx b/icons-legacy/culling/CreateProfileIcon.tsx similarity index 100% rename from src/Icons/culling/CreateProfileIcon.tsx rename to icons-legacy/culling/CreateProfileIcon.tsx diff --git a/src/Icons/culling/DiamonIcon.tsx b/icons-legacy/culling/DiamonIcon.tsx similarity index 100% rename from src/Icons/culling/DiamonIcon.tsx rename to icons-legacy/culling/DiamonIcon.tsx diff --git a/src/Icons/culling/DownloadIcon.tsx b/icons-legacy/culling/DownloadIcon.tsx similarity index 100% rename from src/Icons/culling/DownloadIcon.tsx rename to icons-legacy/culling/DownloadIcon.tsx diff --git a/src/Icons/culling/DublicateStackIcon.tsx b/icons-legacy/culling/DublicateStackIcon.tsx similarity index 100% rename from src/Icons/culling/DublicateStackIcon.tsx rename to icons-legacy/culling/DublicateStackIcon.tsx diff --git a/src/Icons/culling/DuplicateFillIcon.tsx b/icons-legacy/culling/DuplicateFillIcon.tsx similarity index 100% rename from src/Icons/culling/DuplicateFillIcon.tsx rename to icons-legacy/culling/DuplicateFillIcon.tsx diff --git a/src/Icons/culling/DuplicateIcon.tsx b/icons-legacy/culling/DuplicateIcon.tsx similarity index 100% rename from src/Icons/culling/DuplicateIcon.tsx rename to icons-legacy/culling/DuplicateIcon.tsx diff --git a/src/Icons/culling/EditAlbumNameIcon.tsx b/icons-legacy/culling/EditAlbumNameIcon.tsx similarity index 100% rename from src/Icons/culling/EditAlbumNameIcon.tsx rename to icons-legacy/culling/EditAlbumNameIcon.tsx diff --git a/src/Icons/culling/EditPhotoIcon.tsx b/icons-legacy/culling/EditPhotoIcon.tsx similarity index 100% rename from src/Icons/culling/EditPhotoIcon.tsx rename to icons-legacy/culling/EditPhotoIcon.tsx diff --git a/src/Icons/culling/ExitAppBgIcon.tsx b/icons-legacy/culling/ExitAppBgIcon.tsx similarity index 100% rename from src/Icons/culling/ExitAppBgIcon.tsx rename to icons-legacy/culling/ExitAppBgIcon.tsx diff --git a/src/Icons/culling/ExpandIcon.tsx b/icons-legacy/culling/ExpandIcon.tsx similarity index 100% rename from src/Icons/culling/ExpandIcon.tsx rename to icons-legacy/culling/ExpandIcon.tsx diff --git a/src/Icons/culling/EyeCheckedIcon.tsx b/icons-legacy/culling/EyeCheckedIcon.tsx similarity index 100% rename from src/Icons/culling/EyeCheckedIcon.tsx rename to icons-legacy/culling/EyeCheckedIcon.tsx diff --git a/src/Icons/culling/EyeCrossedIcon.tsx b/icons-legacy/culling/EyeCrossedIcon.tsx similarity index 100% rename from src/Icons/culling/EyeCrossedIcon.tsx rename to icons-legacy/culling/EyeCrossedIcon.tsx diff --git a/src/Icons/culling/EyeIcon.tsx b/icons-legacy/culling/EyeIcon.tsx similarity index 100% rename from src/Icons/culling/EyeIcon.tsx rename to icons-legacy/culling/EyeIcon.tsx diff --git a/src/Icons/culling/FacebookPeopleIcon.tsx b/icons-legacy/culling/FacebookPeopleIcon.tsx similarity index 100% rename from src/Icons/culling/FacebookPeopleIcon.tsx rename to icons-legacy/culling/FacebookPeopleIcon.tsx diff --git a/src/Icons/culling/FilterCircleIcon.tsx b/icons-legacy/culling/FilterCircleIcon.tsx similarity index 100% rename from src/Icons/culling/FilterCircleIcon.tsx rename to icons-legacy/culling/FilterCircleIcon.tsx diff --git a/src/Icons/culling/FilterIcon.tsx b/icons-legacy/culling/FilterIcon.tsx similarity index 100% rename from src/Icons/culling/FilterIcon.tsx rename to icons-legacy/culling/FilterIcon.tsx diff --git a/src/Icons/culling/FinderIcon.tsx b/icons-legacy/culling/FinderIcon.tsx similarity index 100% rename from src/Icons/culling/FinderIcon.tsx rename to icons-legacy/culling/FinderIcon.tsx diff --git a/src/Icons/culling/FiveStarBgIcon.tsx b/icons-legacy/culling/FiveStarBgIcon.tsx similarity index 100% rename from src/Icons/culling/FiveStarBgIcon.tsx rename to icons-legacy/culling/FiveStarBgIcon.tsx diff --git a/src/Icons/culling/FolderOutlineBgIcon.tsx b/icons-legacy/culling/FolderOutlineBgIcon.tsx similarity index 100% rename from src/Icons/culling/FolderOutlineBgIcon.tsx rename to icons-legacy/culling/FolderOutlineBgIcon.tsx diff --git a/src/Icons/culling/FullScreenIcon.tsx b/icons-legacy/culling/FullScreenIcon.tsx similarity index 100% rename from src/Icons/culling/FullScreenIcon.tsx rename to icons-legacy/culling/FullScreenIcon.tsx diff --git a/src/Icons/culling/GridBgIcon.tsx b/icons-legacy/culling/GridBgIcon.tsx similarity index 100% rename from src/Icons/culling/GridBgIcon.tsx rename to icons-legacy/culling/GridBgIcon.tsx diff --git a/src/Icons/culling/GridDotsIcon.tsx b/icons-legacy/culling/GridDotsIcon.tsx similarity index 100% rename from src/Icons/culling/GridDotsIcon.tsx rename to icons-legacy/culling/GridDotsIcon.tsx diff --git a/src/Icons/culling/GridIcon.tsx b/icons-legacy/culling/GridIcon.tsx similarity index 100% rename from src/Icons/culling/GridIcon.tsx rename to icons-legacy/culling/GridIcon.tsx diff --git a/src/Icons/culling/GridThreeLitIcon.tsx b/icons-legacy/culling/GridThreeLitIcon.tsx similarity index 100% rename from src/Icons/culling/GridThreeLitIcon.tsx rename to icons-legacy/culling/GridThreeLitIcon.tsx diff --git a/src/Icons/culling/GridTwoLitIcon.tsx b/icons-legacy/culling/GridTwoLitIcon.tsx similarity index 100% rename from src/Icons/culling/GridTwoLitIcon.tsx rename to icons-legacy/culling/GridTwoLitIcon.tsx diff --git a/src/Icons/culling/GroupingLessIcon.tsx b/icons-legacy/culling/GroupingLessIcon.tsx similarity index 100% rename from src/Icons/culling/GroupingLessIcon.tsx rename to icons-legacy/culling/GroupingLessIcon.tsx diff --git a/src/Icons/culling/GroupingMoreIcon.tsx b/icons-legacy/culling/GroupingMoreIcon.tsx similarity index 100% rename from src/Icons/culling/GroupingMoreIcon.tsx rename to icons-legacy/culling/GroupingMoreIcon.tsx diff --git a/src/Icons/culling/HomeIcon.tsx b/icons-legacy/culling/HomeIcon.tsx similarity index 100% rename from src/Icons/culling/HomeIcon.tsx rename to icons-legacy/culling/HomeIcon.tsx diff --git a/src/Icons/culling/ImageBorderCircleIcon.tsx b/icons-legacy/culling/ImageBorderCircleIcon.tsx similarity index 100% rename from src/Icons/culling/ImageBorderCircleIcon.tsx rename to icons-legacy/culling/ImageBorderCircleIcon.tsx diff --git a/src/Icons/culling/ImageBorderIcon.tsx b/icons-legacy/culling/ImageBorderIcon.tsx similarity index 100% rename from src/Icons/culling/ImageBorderIcon.tsx rename to icons-legacy/culling/ImageBorderIcon.tsx diff --git a/src/Icons/culling/ImageCrossedBgIcon.tsx b/icons-legacy/culling/ImageCrossedBgIcon.tsx similarity index 100% rename from src/Icons/culling/ImageCrossedBgIcon.tsx rename to icons-legacy/culling/ImageCrossedBgIcon.tsx diff --git a/src/Icons/culling/ImageCrossedIcon.tsx b/icons-legacy/culling/ImageCrossedIcon.tsx similarity index 100% rename from src/Icons/culling/ImageCrossedIcon.tsx rename to icons-legacy/culling/ImageCrossedIcon.tsx diff --git a/src/Icons/culling/ImageIcon.tsx b/icons-legacy/culling/ImageIcon.tsx similarity index 100% rename from src/Icons/culling/ImageIcon.tsx rename to icons-legacy/culling/ImageIcon.tsx diff --git a/src/Icons/culling/ImageStackIcon.tsx b/icons-legacy/culling/ImageStackIcon.tsx similarity index 100% rename from src/Icons/culling/ImageStackIcon.tsx rename to icons-legacy/culling/ImageStackIcon.tsx diff --git a/src/Icons/culling/KeyCircleIcon.tsx b/icons-legacy/culling/KeyCircleIcon.tsx similarity index 100% rename from src/Icons/culling/KeyCircleIcon.tsx rename to icons-legacy/culling/KeyCircleIcon.tsx diff --git a/src/Icons/culling/KeyIcon.tsx b/icons-legacy/culling/KeyIcon.tsx similarity index 100% rename from src/Icons/culling/KeyIcon.tsx rename to icons-legacy/culling/KeyIcon.tsx diff --git a/src/Icons/culling/LinkIcon.tsx b/icons-legacy/culling/LinkIcon.tsx similarity index 100% rename from src/Icons/culling/LinkIcon.tsx rename to icons-legacy/culling/LinkIcon.tsx diff --git a/src/Icons/culling/ListNotSelectedIcon.tsx b/icons-legacy/culling/ListNotSelectedIcon.tsx similarity index 100% rename from src/Icons/culling/ListNotSelectedIcon.tsx rename to icons-legacy/culling/ListNotSelectedIcon.tsx diff --git a/src/Icons/culling/ListSelectedIcon.tsx b/icons-legacy/culling/ListSelectedIcon.tsx similarity index 100% rename from src/Icons/culling/ListSelectedIcon.tsx rename to icons-legacy/culling/ListSelectedIcon.tsx diff --git a/src/Icons/culling/LoaderIcon.tsx b/icons-legacy/culling/LoaderIcon.tsx similarity index 100% rename from src/Icons/culling/LoaderIcon.tsx rename to icons-legacy/culling/LoaderIcon.tsx diff --git a/src/Icons/culling/LockIcon.tsx b/icons-legacy/culling/LockIcon.tsx similarity index 100% rename from src/Icons/culling/LockIcon.tsx rename to icons-legacy/culling/LockIcon.tsx diff --git a/src/Icons/culling/LoopCircleIcon.tsx b/icons-legacy/culling/LoopCircleIcon.tsx similarity index 100% rename from src/Icons/culling/LoopCircleIcon.tsx rename to icons-legacy/culling/LoopCircleIcon.tsx diff --git a/src/Icons/culling/LoopIcon.tsx b/icons-legacy/culling/LoopIcon.tsx similarity index 100% rename from src/Icons/culling/LoopIcon.tsx rename to icons-legacy/culling/LoopIcon.tsx diff --git a/src/Icons/culling/LoupeIcon.tsx b/icons-legacy/culling/LoupeIcon.tsx similarity index 100% rename from src/Icons/culling/LoupeIcon.tsx rename to icons-legacy/culling/LoupeIcon.tsx diff --git a/src/Icons/culling/MaximizeIcon.tsx b/icons-legacy/culling/MaximizeIcon.tsx similarity index 100% rename from src/Icons/culling/MaximizeIcon.tsx rename to icons-legacy/culling/MaximizeIcon.tsx diff --git a/src/Icons/culling/MenuIcon.tsx b/icons-legacy/culling/MenuIcon.tsx similarity index 100% rename from src/Icons/culling/MenuIcon.tsx rename to icons-legacy/culling/MenuIcon.tsx diff --git a/src/Icons/culling/MinimizeIcon.tsx b/icons-legacy/culling/MinimizeIcon.tsx similarity index 100% rename from src/Icons/culling/MinimizeIcon.tsx rename to icons-legacy/culling/MinimizeIcon.tsx diff --git a/src/Icons/culling/MoneyBagIcon.tsx b/icons-legacy/culling/MoneyBagIcon.tsx similarity index 100% rename from src/Icons/culling/MoneyBagIcon.tsx rename to icons-legacy/culling/MoneyBagIcon.tsx diff --git a/src/Icons/culling/MouseLeftClick.tsx b/icons-legacy/culling/MouseLeftClick.tsx similarity index 100% rename from src/Icons/culling/MouseLeftClick.tsx rename to icons-legacy/culling/MouseLeftClick.tsx diff --git a/src/Icons/culling/MouseLeftClickCircleIcon.tsx b/icons-legacy/culling/MouseLeftClickCircleIcon.tsx similarity index 100% rename from src/Icons/culling/MouseLeftClickCircleIcon.tsx rename to icons-legacy/culling/MouseLeftClickCircleIcon.tsx diff --git a/src/Icons/culling/MouseRightClick.tsx b/icons-legacy/culling/MouseRightClick.tsx similarity index 100% rename from src/Icons/culling/MouseRightClick.tsx rename to icons-legacy/culling/MouseRightClick.tsx diff --git a/src/Icons/culling/MoveBgIcon.tsx b/icons-legacy/culling/MoveBgIcon.tsx similarity index 100% rename from src/Icons/culling/MoveBgIcon.tsx rename to icons-legacy/culling/MoveBgIcon.tsx diff --git a/src/Icons/culling/NoDuplicateIcon.tsx b/icons-legacy/culling/NoDuplicateIcon.tsx similarity index 100% rename from src/Icons/culling/NoDuplicateIcon.tsx rename to icons-legacy/culling/NoDuplicateIcon.tsx diff --git a/src/Icons/culling/NoneIcon.tsx b/icons-legacy/culling/NoneIcon.tsx similarity index 100% rename from src/Icons/culling/NoneIcon.tsx rename to icons-legacy/culling/NoneIcon.tsx diff --git a/src/Icons/culling/NoneSelectedIcon.tsx b/icons-legacy/culling/NoneSelectedIcon.tsx similarity index 100% rename from src/Icons/culling/NoneSelectedIcon.tsx rename to icons-legacy/culling/NoneSelectedIcon.tsx diff --git a/src/Icons/culling/NotAllowIcon.tsx b/icons-legacy/culling/NotAllowIcon.tsx similarity index 100% rename from src/Icons/culling/NotAllowIcon.tsx rename to icons-legacy/culling/NotAllowIcon.tsx diff --git a/src/Icons/culling/NotSelectedCircleIcon.tsx b/icons-legacy/culling/NotSelectedCircleIcon.tsx similarity index 100% rename from src/Icons/culling/NotSelectedCircleIcon.tsx rename to icons-legacy/culling/NotSelectedCircleIcon.tsx diff --git a/src/Icons/culling/RecullIcon.tsx b/icons-legacy/culling/RecullIcon.tsx similarity index 100% rename from src/Icons/culling/RecullIcon.tsx rename to icons-legacy/culling/RecullIcon.tsx diff --git a/src/Icons/culling/ReloadIcon.tsx b/icons-legacy/culling/ReloadIcon.tsx similarity index 100% rename from src/Icons/culling/ReloadIcon.tsx rename to icons-legacy/culling/ReloadIcon.tsx diff --git a/src/Icons/culling/ReloadWarningIcon.tsx b/icons-legacy/culling/ReloadWarningIcon.tsx similarity index 100% rename from src/Icons/culling/ReloadWarningIcon.tsx rename to icons-legacy/culling/ReloadWarningIcon.tsx diff --git a/src/Icons/culling/RotateLeftSquareIcon.tsx b/icons-legacy/culling/RotateLeftSquareIcon.tsx similarity index 100% rename from src/Icons/culling/RotateLeftSquareIcon.tsx rename to icons-legacy/culling/RotateLeftSquareIcon.tsx diff --git a/src/Icons/culling/RotateRightSquareIcon.tsx b/icons-legacy/culling/RotateRightSquareIcon.tsx similarity index 100% rename from src/Icons/culling/RotateRightSquareIcon.tsx rename to icons-legacy/culling/RotateRightSquareIcon.tsx diff --git a/src/Icons/culling/SelectedFillCircleIcon.tsx b/icons-legacy/culling/SelectedFillCircleIcon.tsx similarity index 100% rename from src/Icons/culling/SelectedFillCircleIcon.tsx rename to icons-legacy/culling/SelectedFillCircleIcon.tsx diff --git a/src/Icons/culling/ShareIcon.tsx b/icons-legacy/culling/ShareIcon.tsx similarity index 100% rename from src/Icons/culling/ShareIcon.tsx rename to icons-legacy/culling/ShareIcon.tsx diff --git a/src/Icons/culling/ShowDuplicateIcon.tsx b/icons-legacy/culling/ShowDuplicateIcon.tsx similarity index 100% rename from src/Icons/culling/ShowDuplicateIcon.tsx rename to icons-legacy/culling/ShowDuplicateIcon.tsx diff --git a/src/Icons/culling/SmileyHappyIcon.tsx b/icons-legacy/culling/SmileyHappyIcon.tsx similarity index 100% rename from src/Icons/culling/SmileyHappyIcon.tsx rename to icons-legacy/culling/SmileyHappyIcon.tsx diff --git a/src/Icons/culling/SmileySadIcon.tsx b/icons-legacy/culling/SmileySadIcon.tsx similarity index 100% rename from src/Icons/culling/SmileySadIcon.tsx rename to icons-legacy/culling/SmileySadIcon.tsx diff --git a/src/Icons/culling/SortCircleIcon.tsx b/icons-legacy/culling/SortCircleIcon.tsx similarity index 100% rename from src/Icons/culling/SortCircleIcon.tsx rename to icons-legacy/culling/SortCircleIcon.tsx diff --git a/src/Icons/culling/SortDuplicateCircleIcon.tsx b/icons-legacy/culling/SortDuplicateCircleIcon.tsx similarity index 100% rename from src/Icons/culling/SortDuplicateCircleIcon.tsx rename to icons-legacy/culling/SortDuplicateCircleIcon.tsx diff --git a/src/Icons/culling/SortDuplicatesIcon.tsx b/icons-legacy/culling/SortDuplicatesIcon.tsx similarity index 100% rename from src/Icons/culling/SortDuplicatesIcon.tsx rename to icons-legacy/culling/SortDuplicatesIcon.tsx diff --git a/src/Icons/culling/SortIcon.tsx b/icons-legacy/culling/SortIcon.tsx similarity index 100% rename from src/Icons/culling/SortIcon.tsx rename to icons-legacy/culling/SortIcon.tsx diff --git a/src/Icons/culling/SortOptionAlphaIcon.tsx b/icons-legacy/culling/SortOptionAlphaIcon.tsx similarity index 100% rename from src/Icons/culling/SortOptionAlphaIcon.tsx rename to icons-legacy/culling/SortOptionAlphaIcon.tsx diff --git a/src/Icons/culling/SortOptionNumIcon.tsx b/icons-legacy/culling/SortOptionNumIcon.tsx similarity index 100% rename from src/Icons/culling/SortOptionNumIcon.tsx rename to icons-legacy/culling/SortOptionNumIcon.tsx diff --git a/src/Icons/culling/SparkleIcon.tsx b/icons-legacy/culling/SparkleIcon.tsx similarity index 100% rename from src/Icons/culling/SparkleIcon.tsx rename to icons-legacy/culling/SparkleIcon.tsx diff --git a/src/Icons/culling/SprayBgIcon.tsx b/icons-legacy/culling/SprayBgIcon.tsx similarity index 100% rename from src/Icons/culling/SprayBgIcon.tsx rename to icons-legacy/culling/SprayBgIcon.tsx diff --git a/src/Icons/culling/SprayCanIcon.tsx b/icons-legacy/culling/SprayCanIcon.tsx similarity index 100% rename from src/Icons/culling/SprayCanIcon.tsx rename to icons-legacy/culling/SprayCanIcon.tsx diff --git a/src/Icons/culling/SprayCircleIcon.tsx b/icons-legacy/culling/SprayCircleIcon.tsx similarity index 100% rename from src/Icons/culling/SprayCircleIcon.tsx rename to icons-legacy/culling/SprayCircleIcon.tsx diff --git a/src/Icons/culling/StackThreeIcon.tsx b/icons-legacy/culling/StackThreeIcon.tsx similarity index 100% rename from src/Icons/culling/StackThreeIcon.tsx rename to icons-legacy/culling/StackThreeIcon.tsx diff --git a/src/Icons/culling/StackTwoIcon.tsx b/icons-legacy/culling/StackTwoIcon.tsx similarity index 100% rename from src/Icons/culling/StackTwoIcon.tsx rename to icons-legacy/culling/StackTwoIcon.tsx diff --git a/src/Icons/culling/StorageCrossedIcon.tsx b/icons-legacy/culling/StorageCrossedIcon.tsx similarity index 100% rename from src/Icons/culling/StorageCrossedIcon.tsx rename to icons-legacy/culling/StorageCrossedIcon.tsx diff --git a/src/Icons/culling/SurveyModeIcon.tsx b/icons-legacy/culling/SurveyModeIcon.tsx similarity index 100% rename from src/Icons/culling/SurveyModeIcon.tsx rename to icons-legacy/culling/SurveyModeIcon.tsx diff --git a/src/Icons/culling/ThunderBgIcon.tsx b/icons-legacy/culling/ThunderBgIcon.tsx similarity index 100% rename from src/Icons/culling/ThunderBgIcon.tsx rename to icons-legacy/culling/ThunderBgIcon.tsx diff --git a/src/Icons/culling/UploadFolderIcon.tsx b/icons-legacy/culling/UploadFolderIcon.tsx similarity index 100% rename from src/Icons/culling/UploadFolderIcon.tsx rename to icons-legacy/culling/UploadFolderIcon.tsx diff --git a/src/Icons/culling/ViewAllIcon.tsx b/icons-legacy/culling/ViewAllIcon.tsx similarity index 100% rename from src/Icons/culling/ViewAllIcon.tsx rename to icons-legacy/culling/ViewAllIcon.tsx diff --git a/src/Icons/culling/ZoomCircleIcon.tsx b/icons-legacy/culling/ZoomCircleIcon.tsx similarity index 100% rename from src/Icons/culling/ZoomCircleIcon.tsx rename to icons-legacy/culling/ZoomCircleIcon.tsx diff --git a/src/Icons/culling/ZoomIcon.tsx b/icons-legacy/culling/ZoomIcon.tsx similarity index 100% rename from src/Icons/culling/ZoomIcon.tsx rename to icons-legacy/culling/ZoomIcon.tsx diff --git a/src/Icons/culling/index.ts b/icons-legacy/culling/index.ts similarity index 100% rename from src/Icons/culling/index.ts rename to icons-legacy/culling/index.ts diff --git a/src/Icons/edit/AftershootEditIcon.tsx b/icons-legacy/edit/AftershootEditIcon.tsx similarity index 100% rename from src/Icons/edit/AftershootEditIcon.tsx rename to icons-legacy/edit/AftershootEditIcon.tsx diff --git a/src/Icons/edit/CheckBoxEmptyIcon.tsx b/icons-legacy/edit/CheckBoxEmptyIcon.tsx similarity index 100% rename from src/Icons/edit/CheckBoxEmptyIcon.tsx rename to icons-legacy/edit/CheckBoxEmptyIcon.tsx diff --git a/src/Icons/edit/CheckBoxIcon.tsx b/icons-legacy/edit/CheckBoxIcon.tsx similarity index 100% rename from src/Icons/edit/CheckBoxIcon.tsx rename to icons-legacy/edit/CheckBoxIcon.tsx diff --git a/src/Icons/edit/CheckBoxPartialIcon.tsx b/icons-legacy/edit/CheckBoxPartialIcon.tsx similarity index 100% rename from src/Icons/edit/CheckBoxPartialIcon.tsx rename to icons-legacy/edit/CheckBoxPartialIcon.tsx diff --git a/src/Icons/edit/CollectionsIcon.tsx b/icons-legacy/edit/CollectionsIcon.tsx similarity index 100% rename from src/Icons/edit/CollectionsIcon.tsx rename to icons-legacy/edit/CollectionsIcon.tsx diff --git a/src/Icons/edit/ComputerIcon.tsx b/icons-legacy/edit/ComputerIcon.tsx similarity index 100% rename from src/Icons/edit/ComputerIcon.tsx rename to icons-legacy/edit/ComputerIcon.tsx diff --git a/src/Icons/edit/ConfettiLeftScreen.tsx b/icons-legacy/edit/ConfettiLeftScreen.tsx similarity index 100% rename from src/Icons/edit/ConfettiLeftScreen.tsx rename to icons-legacy/edit/ConfettiLeftScreen.tsx diff --git a/src/Icons/edit/ConfettiRightScreen.tsx b/icons-legacy/edit/ConfettiRightScreen.tsx similarity index 100% rename from src/Icons/edit/ConfettiRightScreen.tsx rename to icons-legacy/edit/ConfettiRightScreen.tsx diff --git a/src/Icons/edit/ConfettiSideScreen.tsx b/icons-legacy/edit/ConfettiSideScreen.tsx similarity index 100% rename from src/Icons/edit/ConfettiSideScreen.tsx rename to icons-legacy/edit/ConfettiSideScreen.tsx diff --git a/src/Icons/edit/DecrementIcon.tsx b/icons-legacy/edit/DecrementIcon.tsx similarity index 100% rename from src/Icons/edit/DecrementIcon.tsx rename to icons-legacy/edit/DecrementIcon.tsx diff --git a/src/Icons/edit/DotsVerticalIcon.tsx b/icons-legacy/edit/DotsVerticalIcon.tsx similarity index 100% rename from src/Icons/edit/DotsVerticalIcon.tsx rename to icons-legacy/edit/DotsVerticalIcon.tsx diff --git a/src/Icons/edit/EditProgressIcon.tsx b/icons-legacy/edit/EditProgressIcon.tsx similarity index 100% rename from src/Icons/edit/EditProgressIcon.tsx rename to icons-legacy/edit/EditProgressIcon.tsx diff --git a/src/Icons/edit/FailFillBgIcon.tsx b/icons-legacy/edit/FailFillBgIcon.tsx similarity index 100% rename from src/Icons/edit/FailFillBgIcon.tsx rename to icons-legacy/edit/FailFillBgIcon.tsx diff --git a/src/Icons/edit/FailFillIcon.tsx b/icons-legacy/edit/FailFillIcon.tsx similarity index 100% rename from src/Icons/edit/FailFillIcon.tsx rename to icons-legacy/edit/FailFillIcon.tsx diff --git a/src/Icons/edit/FileSearchIcon.tsx b/icons-legacy/edit/FileSearchIcon.tsx similarity index 100% rename from src/Icons/edit/FileSearchIcon.tsx rename to icons-legacy/edit/FileSearchIcon.tsx diff --git a/src/Icons/edit/FlagFillIcon.tsx b/icons-legacy/edit/FlagFillIcon.tsx similarity index 100% rename from src/Icons/edit/FlagFillIcon.tsx rename to icons-legacy/edit/FlagFillIcon.tsx diff --git a/src/Icons/edit/FlagOutlineCrossedIcon.tsx b/icons-legacy/edit/FlagOutlineCrossedIcon.tsx similarity index 100% rename from src/Icons/edit/FlagOutlineCrossedIcon.tsx rename to icons-legacy/edit/FlagOutlineCrossedIcon.tsx diff --git a/src/Icons/edit/FlagOutlineIcon.tsx b/icons-legacy/edit/FlagOutlineIcon.tsx similarity index 100% rename from src/Icons/edit/FlagOutlineIcon.tsx rename to icons-legacy/edit/FlagOutlineIcon.tsx diff --git a/src/Icons/edit/MoodIcon.tsx b/icons-legacy/edit/MoodIcon.tsx similarity index 100% rename from src/Icons/edit/MoodIcon.tsx rename to icons-legacy/edit/MoodIcon.tsx diff --git a/src/Icons/edit/PlusBgIcon.tsx b/icons-legacy/edit/PlusBgIcon.tsx similarity index 100% rename from src/Icons/edit/PlusBgIcon.tsx rename to icons-legacy/edit/PlusBgIcon.tsx diff --git a/src/Icons/edit/RightArrowBgIcon.tsx b/icons-legacy/edit/RightArrowBgIcon.tsx similarity index 100% rename from src/Icons/edit/RightArrowBgIcon.tsx rename to icons-legacy/edit/RightArrowBgIcon.tsx diff --git a/src/Icons/edit/SuccessFillBgIcon.tsx b/icons-legacy/edit/SuccessFillBgIcon.tsx similarity index 100% rename from src/Icons/edit/SuccessFillBgIcon.tsx rename to icons-legacy/edit/SuccessFillBgIcon.tsx diff --git a/src/Icons/edit/TrainBgIcon.tsx b/icons-legacy/edit/TrainBgIcon.tsx similarity index 100% rename from src/Icons/edit/TrainBgIcon.tsx rename to icons-legacy/edit/TrainBgIcon.tsx diff --git a/src/Icons/edit/index.ts b/icons-legacy/edit/index.ts similarity index 100% rename from src/Icons/edit/index.ts rename to icons-legacy/edit/index.ts diff --git a/src/Icons/enable/PowerHighIcon.tsx b/icons-legacy/enable/PowerHighIcon.tsx similarity index 100% rename from src/Icons/enable/PowerHighIcon.tsx rename to icons-legacy/enable/PowerHighIcon.tsx diff --git a/src/Icons/enable/PowerLowIcon.tsx b/icons-legacy/enable/PowerLowIcon.tsx similarity index 100% rename from src/Icons/enable/PowerLowIcon.tsx rename to icons-legacy/enable/PowerLowIcon.tsx diff --git a/src/Icons/enable/PowerMidIcon.tsx b/icons-legacy/enable/PowerMidIcon.tsx similarity index 100% rename from src/Icons/enable/PowerMidIcon.tsx rename to icons-legacy/enable/PowerMidIcon.tsx diff --git a/src/Icons/enable/index.ts b/icons-legacy/enable/index.ts similarity index 100% rename from src/Icons/enable/index.ts rename to icons-legacy/enable/index.ts diff --git a/src/Icons/general/AdjustmentIcon.tsx b/icons-legacy/general/AdjustmentIcon.tsx similarity index 100% rename from src/Icons/general/AdjustmentIcon.tsx rename to icons-legacy/general/AdjustmentIcon.tsx diff --git a/src/Icons/general/AlertCircleIcon.tsx b/icons-legacy/general/AlertCircleIcon.tsx similarity index 100% rename from src/Icons/general/AlertCircleIcon.tsx rename to icons-legacy/general/AlertCircleIcon.tsx diff --git a/src/Icons/general/AlertFillIcon.tsx b/icons-legacy/general/AlertFillIcon.tsx similarity index 100% rename from src/Icons/general/AlertFillIcon.tsx rename to icons-legacy/general/AlertFillIcon.tsx diff --git a/src/Icons/general/AlertFillTriangleBgIcon.tsx b/icons-legacy/general/AlertFillTriangleBgIcon.tsx similarity index 100% rename from src/Icons/general/AlertFillTriangleBgIcon.tsx rename to icons-legacy/general/AlertFillTriangleBgIcon.tsx diff --git a/src/Icons/general/AlertFillTriangleIcon.tsx b/icons-legacy/general/AlertFillTriangleIcon.tsx similarity index 100% rename from src/Icons/general/AlertFillTriangleIcon.tsx rename to icons-legacy/general/AlertFillTriangleIcon.tsx diff --git a/src/Icons/general/AlertHexagonBgIcon.tsx b/icons-legacy/general/AlertHexagonBgIcon.tsx similarity index 100% rename from src/Icons/general/AlertHexagonBgIcon.tsx rename to icons-legacy/general/AlertHexagonBgIcon.tsx diff --git a/src/Icons/general/AlertHexagonIcon.tsx b/icons-legacy/general/AlertHexagonIcon.tsx similarity index 100% rename from src/Icons/general/AlertHexagonIcon.tsx rename to icons-legacy/general/AlertHexagonIcon.tsx diff --git a/src/Icons/general/AlertTriangleBgIcon.tsx b/icons-legacy/general/AlertTriangleBgIcon.tsx similarity index 100% rename from src/Icons/general/AlertTriangleBgIcon.tsx rename to icons-legacy/general/AlertTriangleBgIcon.tsx diff --git a/src/Icons/general/AlertTriangleIcon.tsx b/icons-legacy/general/AlertTriangleIcon.tsx similarity index 100% rename from src/Icons/general/AlertTriangleIcon.tsx rename to icons-legacy/general/AlertTriangleIcon.tsx diff --git a/src/Icons/general/ArrowCurveIcon.tsx b/icons-legacy/general/ArrowCurveIcon.tsx similarity index 100% rename from src/Icons/general/ArrowCurveIcon.tsx rename to icons-legacy/general/ArrowCurveIcon.tsx diff --git a/src/Icons/general/ArrowDownIcon.tsx b/icons-legacy/general/ArrowDownIcon.tsx similarity index 100% rename from src/Icons/general/ArrowDownIcon.tsx rename to icons-legacy/general/ArrowDownIcon.tsx diff --git a/src/Icons/general/ArrowFillRightIcon.tsx b/icons-legacy/general/ArrowFillRightIcon.tsx similarity index 100% rename from src/Icons/general/ArrowFillRightIcon.tsx rename to icons-legacy/general/ArrowFillRightIcon.tsx diff --git a/src/Icons/general/ArrowFillUpIcon.tsx b/icons-legacy/general/ArrowFillUpIcon.tsx similarity index 100% rename from src/Icons/general/ArrowFillUpIcon.tsx rename to icons-legacy/general/ArrowFillUpIcon.tsx diff --git a/src/Icons/general/ArrowLeftIcon.tsx b/icons-legacy/general/ArrowLeftIcon.tsx similarity index 100% rename from src/Icons/general/ArrowLeftIcon.tsx rename to icons-legacy/general/ArrowLeftIcon.tsx diff --git a/src/Icons/general/ArrowRightIcon.tsx b/icons-legacy/general/ArrowRightIcon.tsx similarity index 100% rename from src/Icons/general/ArrowRightIcon.tsx rename to icons-legacy/general/ArrowRightIcon.tsx diff --git a/src/Icons/general/ArrowUpIcon.tsx b/icons-legacy/general/ArrowUpIcon.tsx similarity index 100% rename from src/Icons/general/ArrowUpIcon.tsx rename to icons-legacy/general/ArrowUpIcon.tsx diff --git a/src/Icons/general/BulbIcon.tsx b/icons-legacy/general/BulbIcon.tsx similarity index 100% rename from src/Icons/general/BulbIcon.tsx rename to icons-legacy/general/BulbIcon.tsx diff --git a/src/Icons/general/C1UploadIcon.tsx b/icons-legacy/general/C1UploadIcon.tsx similarity index 100% rename from src/Icons/general/C1UploadIcon.tsx rename to icons-legacy/general/C1UploadIcon.tsx diff --git a/src/Icons/general/CheckCircleBgIcon.tsx b/icons-legacy/general/CheckCircleBgIcon.tsx similarity index 100% rename from src/Icons/general/CheckCircleBgIcon.tsx rename to icons-legacy/general/CheckCircleBgIcon.tsx diff --git a/src/Icons/general/CheckCircleIcon.tsx b/icons-legacy/general/CheckCircleIcon.tsx similarity index 100% rename from src/Icons/general/CheckCircleIcon.tsx rename to icons-legacy/general/CheckCircleIcon.tsx diff --git a/src/Icons/general/CheckFillIcon.tsx b/icons-legacy/general/CheckFillIcon.tsx similarity index 100% rename from src/Icons/general/CheckFillIcon.tsx rename to icons-legacy/general/CheckFillIcon.tsx diff --git a/src/Icons/general/CheckIcon.tsx b/icons-legacy/general/CheckIcon.tsx similarity index 100% rename from src/Icons/general/CheckIcon.tsx rename to icons-legacy/general/CheckIcon.tsx diff --git a/src/Icons/general/ChevronDownIcon.tsx b/icons-legacy/general/ChevronDownIcon.tsx similarity index 100% rename from src/Icons/general/ChevronDownIcon.tsx rename to icons-legacy/general/ChevronDownIcon.tsx diff --git a/src/Icons/general/ChevronLeftIcon.tsx b/icons-legacy/general/ChevronLeftIcon.tsx similarity index 100% rename from src/Icons/general/ChevronLeftIcon.tsx rename to icons-legacy/general/ChevronLeftIcon.tsx diff --git a/src/Icons/general/ChevronRightIcon.tsx b/icons-legacy/general/ChevronRightIcon.tsx similarity index 100% rename from src/Icons/general/ChevronRightIcon.tsx rename to icons-legacy/general/ChevronRightIcon.tsx diff --git a/src/Icons/general/ChevronUpIcon.tsx b/icons-legacy/general/ChevronUpIcon.tsx similarity index 100% rename from src/Icons/general/ChevronUpIcon.tsx rename to icons-legacy/general/ChevronUpIcon.tsx diff --git a/src/Icons/general/CircleFillIcon.tsx b/icons-legacy/general/CircleFillIcon.tsx similarity index 100% rename from src/Icons/general/CircleFillIcon.tsx rename to icons-legacy/general/CircleFillIcon.tsx diff --git a/src/Icons/general/CircleIcon.tsx b/icons-legacy/general/CircleIcon.tsx similarity index 100% rename from src/Icons/general/CircleIcon.tsx rename to icons-legacy/general/CircleIcon.tsx diff --git a/src/Icons/general/ClockIcon.tsx b/icons-legacy/general/ClockIcon.tsx similarity index 100% rename from src/Icons/general/ClockIcon.tsx rename to icons-legacy/general/ClockIcon.tsx diff --git a/src/Icons/general/CloseCircleIcon.tsx b/icons-legacy/general/CloseCircleIcon.tsx similarity index 100% rename from src/Icons/general/CloseCircleIcon.tsx rename to icons-legacy/general/CloseCircleIcon.tsx diff --git a/src/Icons/general/CloseIcon.tsx b/icons-legacy/general/CloseIcon.tsx similarity index 100% rename from src/Icons/general/CloseIcon.tsx rename to icons-legacy/general/CloseIcon.tsx diff --git a/src/Icons/general/ColorPaletteIcon.tsx b/icons-legacy/general/ColorPaletteIcon.tsx similarity index 100% rename from src/Icons/general/ColorPaletteIcon.tsx rename to icons-legacy/general/ColorPaletteIcon.tsx diff --git a/src/Icons/general/ConfettiIcon.tsx b/icons-legacy/general/ConfettiIcon.tsx similarity index 100% rename from src/Icons/general/ConfettiIcon.tsx rename to icons-legacy/general/ConfettiIcon.tsx diff --git a/src/Icons/general/CopyContentIcon.tsx b/icons-legacy/general/CopyContentIcon.tsx similarity index 100% rename from src/Icons/general/CopyContentIcon.tsx rename to icons-legacy/general/CopyContentIcon.tsx diff --git a/src/Icons/general/CopyIcon.tsx b/icons-legacy/general/CopyIcon.tsx similarity index 100% rename from src/Icons/general/CopyIcon.tsx rename to icons-legacy/general/CopyIcon.tsx diff --git a/src/Icons/general/CreditIcon.tsx b/icons-legacy/general/CreditIcon.tsx similarity index 100% rename from src/Icons/general/CreditIcon.tsx rename to icons-legacy/general/CreditIcon.tsx diff --git a/src/Icons/general/CrossCircleIcon.tsx b/icons-legacy/general/CrossCircleIcon.tsx similarity index 100% rename from src/Icons/general/CrossCircleIcon.tsx rename to icons-legacy/general/CrossCircleIcon.tsx diff --git a/src/Icons/general/CrossIcon.tsx b/icons-legacy/general/CrossIcon.tsx similarity index 100% rename from src/Icons/general/CrossIcon.tsx rename to icons-legacy/general/CrossIcon.tsx diff --git a/src/Icons/general/CrownBgIcon.tsx b/icons-legacy/general/CrownBgIcon.tsx similarity index 100% rename from src/Icons/general/CrownBgIcon.tsx rename to icons-legacy/general/CrownBgIcon.tsx diff --git a/src/Icons/general/CrownIcon.tsx b/icons-legacy/general/CrownIcon.tsx similarity index 100% rename from src/Icons/general/CrownIcon.tsx rename to icons-legacy/general/CrownIcon.tsx diff --git a/src/Icons/general/DeleteBgIcon.tsx b/icons-legacy/general/DeleteBgIcon.tsx similarity index 100% rename from src/Icons/general/DeleteBgIcon.tsx rename to icons-legacy/general/DeleteBgIcon.tsx diff --git a/src/Icons/general/DeleteIcon.tsx b/icons-legacy/general/DeleteIcon.tsx similarity index 100% rename from src/Icons/general/DeleteIcon.tsx rename to icons-legacy/general/DeleteIcon.tsx diff --git a/src/Icons/general/DollarIcon.tsx b/icons-legacy/general/DollarIcon.tsx similarity index 100% rename from src/Icons/general/DollarIcon.tsx rename to icons-legacy/general/DollarIcon.tsx diff --git a/src/Icons/general/DrawerIcon.tsx b/icons-legacy/general/DrawerIcon.tsx similarity index 100% rename from src/Icons/general/DrawerIcon.tsx rename to icons-legacy/general/DrawerIcon.tsx diff --git a/src/Icons/general/EditIcon.tsx b/icons-legacy/general/EditIcon.tsx similarity index 100% rename from src/Icons/general/EditIcon.tsx rename to icons-legacy/general/EditIcon.tsx diff --git a/src/Icons/general/ExportIcon.tsx b/icons-legacy/general/ExportIcon.tsx similarity index 100% rename from src/Icons/general/ExportIcon.tsx rename to icons-legacy/general/ExportIcon.tsx diff --git a/src/Icons/general/FolderFillIcon.tsx b/icons-legacy/general/FolderFillIcon.tsx similarity index 100% rename from src/Icons/general/FolderFillIcon.tsx rename to icons-legacy/general/FolderFillIcon.tsx diff --git a/src/Icons/general/FolderOutlineCrossedIcon.tsx b/icons-legacy/general/FolderOutlineCrossedIcon.tsx similarity index 100% rename from src/Icons/general/FolderOutlineCrossedIcon.tsx rename to icons-legacy/general/FolderOutlineCrossedIcon.tsx diff --git a/src/Icons/general/GlobalIcon.tsx b/icons-legacy/general/GlobalIcon.tsx similarity index 100% rename from src/Icons/general/GlobalIcon.tsx rename to icons-legacy/general/GlobalIcon.tsx diff --git a/src/Icons/general/InfoBgIcon.tsx b/icons-legacy/general/InfoBgIcon.tsx similarity index 100% rename from src/Icons/general/InfoBgIcon.tsx rename to icons-legacy/general/InfoBgIcon.tsx diff --git a/src/Icons/general/InfoCircleIcon.tsx b/icons-legacy/general/InfoCircleIcon.tsx similarity index 100% rename from src/Icons/general/InfoCircleIcon.tsx rename to icons-legacy/general/InfoCircleIcon.tsx diff --git a/src/Icons/general/LrUploadIcon.tsx b/icons-legacy/general/LrUploadIcon.tsx similarity index 100% rename from src/Icons/general/LrUploadIcon.tsx rename to icons-legacy/general/LrUploadIcon.tsx diff --git a/src/Icons/general/MailBgIcon.tsx b/icons-legacy/general/MailBgIcon.tsx similarity index 100% rename from src/Icons/general/MailBgIcon.tsx rename to icons-legacy/general/MailBgIcon.tsx diff --git a/src/Icons/general/OpenlinkIcon.tsx b/icons-legacy/general/OpenlinkIcon.tsx similarity index 100% rename from src/Icons/general/OpenlinkIcon.tsx rename to icons-legacy/general/OpenlinkIcon.tsx diff --git a/src/Icons/general/PauseBgIcon.tsx b/icons-legacy/general/PauseBgIcon.tsx similarity index 100% rename from src/Icons/general/PauseBgIcon.tsx rename to icons-legacy/general/PauseBgIcon.tsx diff --git a/src/Icons/general/PersonPlusIcon.tsx b/icons-legacy/general/PersonPlusIcon.tsx similarity index 100% rename from src/Icons/general/PersonPlusIcon.tsx rename to icons-legacy/general/PersonPlusIcon.tsx diff --git a/src/Icons/general/PersonTwoIcon.tsx b/icons-legacy/general/PersonTwoIcon.tsx similarity index 100% rename from src/Icons/general/PersonTwoIcon.tsx rename to icons-legacy/general/PersonTwoIcon.tsx diff --git a/src/Icons/general/PipeIcon.tsx b/icons-legacy/general/PipeIcon.tsx similarity index 100% rename from src/Icons/general/PipeIcon.tsx rename to icons-legacy/general/PipeIcon.tsx diff --git a/src/Icons/general/PlayBgIcon.tsx b/icons-legacy/general/PlayBgIcon.tsx similarity index 100% rename from src/Icons/general/PlayBgIcon.tsx rename to icons-legacy/general/PlayBgIcon.tsx diff --git a/src/Icons/general/PlayCircleIcon.tsx b/icons-legacy/general/PlayCircleIcon.tsx similarity index 100% rename from src/Icons/general/PlayCircleIcon.tsx rename to icons-legacy/general/PlayCircleIcon.tsx diff --git a/src/Icons/general/QuestionMarkCircleIcon.tsx b/icons-legacy/general/QuestionMarkCircleIcon.tsx similarity index 100% rename from src/Icons/general/QuestionMarkCircleIcon.tsx rename to icons-legacy/general/QuestionMarkCircleIcon.tsx diff --git a/src/Icons/general/QuestionMarkIcon.tsx b/icons-legacy/general/QuestionMarkIcon.tsx similarity index 100% rename from src/Icons/general/QuestionMarkIcon.tsx rename to icons-legacy/general/QuestionMarkIcon.tsx diff --git a/src/Icons/general/RefreshIcon.tsx b/icons-legacy/general/RefreshIcon.tsx similarity index 100% rename from src/Icons/general/RefreshIcon.tsx rename to icons-legacy/general/RefreshIcon.tsx diff --git a/src/Icons/general/RevertIcon.tsx b/icons-legacy/general/RevertIcon.tsx similarity index 100% rename from src/Icons/general/RevertIcon.tsx rename to icons-legacy/general/RevertIcon.tsx diff --git a/src/Icons/general/RotateIcon.tsx b/icons-legacy/general/RotateIcon.tsx similarity index 100% rename from src/Icons/general/RotateIcon.tsx rename to icons-legacy/general/RotateIcon.tsx diff --git a/src/Icons/general/ScissorsIcon.tsx b/icons-legacy/general/ScissorsIcon.tsx similarity index 100% rename from src/Icons/general/ScissorsIcon.tsx rename to icons-legacy/general/ScissorsIcon.tsx diff --git a/src/Icons/general/SearchIcon.tsx b/icons-legacy/general/SearchIcon.tsx similarity index 100% rename from src/Icons/general/SearchIcon.tsx rename to icons-legacy/general/SearchIcon.tsx diff --git a/src/Icons/general/StarCrossedIcon.tsx b/icons-legacy/general/StarCrossedIcon.tsx similarity index 100% rename from src/Icons/general/StarCrossedIcon.tsx rename to icons-legacy/general/StarCrossedIcon.tsx diff --git a/src/Icons/general/StarIcon.tsx b/icons-legacy/general/StarIcon.tsx similarity index 100% rename from src/Icons/general/StarIcon.tsx rename to icons-legacy/general/StarIcon.tsx diff --git a/src/Icons/general/ThumbDownBgIcon.tsx b/icons-legacy/general/ThumbDownBgIcon.tsx similarity index 100% rename from src/Icons/general/ThumbDownBgIcon.tsx rename to icons-legacy/general/ThumbDownBgIcon.tsx diff --git a/src/Icons/general/ThumbUpBgIcon.tsx b/icons-legacy/general/ThumbUpBgIcon.tsx similarity index 100% rename from src/Icons/general/ThumbUpBgIcon.tsx rename to icons-legacy/general/ThumbUpBgIcon.tsx diff --git a/src/Icons/general/TrophyColorIcon.tsx b/icons-legacy/general/TrophyColorIcon.tsx similarity index 100% rename from src/Icons/general/TrophyColorIcon.tsx rename to icons-legacy/general/TrophyColorIcon.tsx diff --git a/src/Icons/general/UploadBgIcon.tsx b/icons-legacy/general/UploadBgIcon.tsx similarity index 100% rename from src/Icons/general/UploadBgIcon.tsx rename to icons-legacy/general/UploadBgIcon.tsx diff --git a/src/Icons/general/UploadCloudBgIcon.tsx b/icons-legacy/general/UploadCloudBgIcon.tsx similarity index 100% rename from src/Icons/general/UploadCloudBgIcon.tsx rename to icons-legacy/general/UploadCloudBgIcon.tsx diff --git a/src/Icons/general/UploadCloudIcon.tsx b/icons-legacy/general/UploadCloudIcon.tsx similarity index 100% rename from src/Icons/general/UploadCloudIcon.tsx rename to icons-legacy/general/UploadCloudIcon.tsx diff --git a/src/Icons/general/UploadIcon.tsx b/icons-legacy/general/UploadIcon.tsx similarity index 100% rename from src/Icons/general/UploadIcon.tsx rename to icons-legacy/general/UploadIcon.tsx diff --git a/src/Icons/general/WifiCrossedBgIcon.tsx b/icons-legacy/general/WifiCrossedBgIcon.tsx similarity index 100% rename from src/Icons/general/WifiCrossedBgIcon.tsx rename to icons-legacy/general/WifiCrossedBgIcon.tsx diff --git a/src/Icons/general/WifiCrossedIcon.tsx b/icons-legacy/general/WifiCrossedIcon.tsx similarity index 100% rename from src/Icons/general/WifiCrossedIcon.tsx rename to icons-legacy/general/WifiCrossedIcon.tsx diff --git a/src/Icons/general/index.ts b/icons-legacy/general/index.ts similarity index 100% rename from src/Icons/general/index.ts rename to icons-legacy/general/index.ts diff --git a/icons-legacy/index.ts b/icons-legacy/index.ts new file mode 100644 index 00000000..ca79d9b3 --- /dev/null +++ b/icons-legacy/index.ts @@ -0,0 +1,6 @@ +export * from './culling' +export * from './edit' +export * from './enable' +export * from './general' +export * from './logo' +export * from './social' diff --git a/src/Icons/logo/AfterShootLogoIcon.tsx b/icons-legacy/logo/AfterShootLogoIcon.tsx similarity index 100% rename from src/Icons/logo/AfterShootLogoIcon.tsx rename to icons-legacy/logo/AfterShootLogoIcon.tsx diff --git a/src/Icons/logo/AftershootLogoWhite.tsx b/icons-legacy/logo/AftershootLogoWhite.tsx similarity index 100% rename from src/Icons/logo/AftershootLogoWhite.tsx rename to icons-legacy/logo/AftershootLogoWhite.tsx diff --git a/src/Icons/logo/CaptureOneIcon.tsx b/icons-legacy/logo/CaptureOneIcon.tsx similarity index 100% rename from src/Icons/logo/CaptureOneIcon.tsx rename to icons-legacy/logo/CaptureOneIcon.tsx diff --git a/src/Icons/logo/DragBridgeIcon.tsx b/icons-legacy/logo/DragBridgeIcon.tsx similarity index 100% rename from src/Icons/logo/DragBridgeIcon.tsx rename to icons-legacy/logo/DragBridgeIcon.tsx diff --git a/src/Icons/logo/DragCaptureOneIcon.tsx b/icons-legacy/logo/DragCaptureOneIcon.tsx similarity index 100% rename from src/Icons/logo/DragCaptureOneIcon.tsx rename to icons-legacy/logo/DragCaptureOneIcon.tsx diff --git a/src/Icons/logo/DragFolderIcon.tsx b/icons-legacy/logo/DragFolderIcon.tsx similarity index 100% rename from src/Icons/logo/DragFolderIcon.tsx rename to icons-legacy/logo/DragFolderIcon.tsx diff --git a/src/Icons/logo/DragLrIcon.tsx b/icons-legacy/logo/DragLrIcon.tsx similarity index 100% rename from src/Icons/logo/DragLrIcon.tsx rename to icons-legacy/logo/DragLrIcon.tsx diff --git a/src/Icons/logo/DragLrcIcon.tsx b/icons-legacy/logo/DragLrcIcon.tsx similarity index 100% rename from src/Icons/logo/DragLrcIcon.tsx rename to icons-legacy/logo/DragLrcIcon.tsx diff --git a/src/Icons/logo/DragPhotoshopIcon.tsx b/icons-legacy/logo/DragPhotoshopIcon.tsx similarity index 100% rename from src/Icons/logo/DragPhotoshopIcon.tsx rename to icons-legacy/logo/DragPhotoshopIcon.tsx diff --git a/src/Icons/logo/EditsLogoTextIcon.tsx b/icons-legacy/logo/EditsLogoTextIcon.tsx similarity index 100% rename from src/Icons/logo/EditsLogoTextIcon.tsx rename to icons-legacy/logo/EditsLogoTextIcon.tsx diff --git a/src/Icons/logo/LightroomClassicIcon.tsx b/icons-legacy/logo/LightroomClassicIcon.tsx similarity index 100% rename from src/Icons/logo/LightroomClassicIcon.tsx rename to icons-legacy/logo/LightroomClassicIcon.tsx diff --git a/src/Icons/logo/LightroomIcon.tsx b/icons-legacy/logo/LightroomIcon.tsx similarity index 100% rename from src/Icons/logo/LightroomIcon.tsx rename to icons-legacy/logo/LightroomIcon.tsx diff --git a/src/Icons/logo/index.ts b/icons-legacy/logo/index.ts similarity index 100% rename from src/Icons/logo/index.ts rename to icons-legacy/logo/index.ts diff --git a/src/Icons/social/AppleIcon.tsx b/icons-legacy/social/AppleIcon.tsx similarity index 100% rename from src/Icons/social/AppleIcon.tsx rename to icons-legacy/social/AppleIcon.tsx diff --git a/src/Icons/social/FacebookBgIcon.tsx b/icons-legacy/social/FacebookBgIcon.tsx similarity index 100% rename from src/Icons/social/FacebookBgIcon.tsx rename to icons-legacy/social/FacebookBgIcon.tsx diff --git a/src/Icons/social/FacebookIcon.tsx b/icons-legacy/social/FacebookIcon.tsx similarity index 100% rename from src/Icons/social/FacebookIcon.tsx rename to icons-legacy/social/FacebookIcon.tsx diff --git a/src/Icons/social/FacebookOutlineIcon.tsx b/icons-legacy/social/FacebookOutlineIcon.tsx similarity index 100% rename from src/Icons/social/FacebookOutlineIcon.tsx rename to icons-legacy/social/FacebookOutlineIcon.tsx diff --git a/src/Icons/social/GoogleColorIcon.tsx b/icons-legacy/social/GoogleColorIcon.tsx similarity index 100% rename from src/Icons/social/GoogleColorIcon.tsx rename to icons-legacy/social/GoogleColorIcon.tsx diff --git a/src/Icons/social/InstagramIcon.tsx b/icons-legacy/social/InstagramIcon.tsx similarity index 100% rename from src/Icons/social/InstagramIcon.tsx rename to icons-legacy/social/InstagramIcon.tsx diff --git a/src/Icons/social/WhatsappIcon.tsx b/icons-legacy/social/WhatsappIcon.tsx similarity index 100% rename from src/Icons/social/WhatsappIcon.tsx rename to icons-legacy/social/WhatsappIcon.tsx diff --git a/src/Icons/social/XIcon.tsx b/icons-legacy/social/XIcon.tsx similarity index 100% rename from src/Icons/social/XIcon.tsx rename to icons-legacy/social/XIcon.tsx diff --git a/src/Icons/social/index.ts b/icons-legacy/social/index.ts similarity index 100% rename from src/Icons/social/index.ts rename to icons-legacy/social/index.ts diff --git a/icons-metadata/adjustments.json b/icons-metadata/Import-icon.json similarity index 83% rename from icons-metadata/adjustments.json rename to icons-metadata/Import-icon.json index a8b99c2e..365d8cb6 100644 --- a/icons-metadata/adjustments.json +++ b/icons-metadata/Import-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "adjustments", + "name": "Import-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/adjustments-horizontal-icon.json b/icons-metadata/adjustments-horizontal-icon.json new file mode 100644 index 00000000..1ea39139 --- /dev/null +++ b/icons-metadata/adjustments-horizontal-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "adjustments-horizontal-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/adjustments-icon.json b/icons-metadata/adjustments-icon.json new file mode 100644 index 00000000..26631acf --- /dev/null +++ b/icons-metadata/adjustments-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "adjustments-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/aftershoot-credit-icon.json b/icons-metadata/aftershoot-credit-icon.json new file mode 100644 index 00000000..4a61970d --- /dev/null +++ b/icons-metadata/aftershoot-credit-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "aftershoot-credit-icon" +} \ No newline at end of file diff --git a/icons-metadata/aftershoot-credit.json b/icons-metadata/aftershoot-credit.json deleted file mode 100644 index 2f31d4a5..00000000 --- a/icons-metadata/aftershoot-credit.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "logo", - "name": "aftershoot-credit" -} \ No newline at end of file diff --git a/icons-metadata/aftershoot-logo-icon.json b/icons-metadata/aftershoot-logo-icon.json new file mode 100644 index 00000000..b6e5827b --- /dev/null +++ b/icons-metadata/aftershoot-logo-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "aftershoot-logo-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-down.json b/icons-metadata/alarm-icon.json similarity index 84% rename from icons-metadata/arrow-down.json rename to icons-metadata/alarm-icon.json index 0272acdc..a359b313 100644 --- a/icons-metadata/arrow-down.json +++ b/icons-metadata/alarm-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "arrow-down", + "name": "alarm-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/alert-circle-accent-icon.json b/icons-metadata/alert-circle-accent-icon.json new file mode 100644 index 00000000..17253ec9 --- /dev/null +++ b/icons-metadata/alert-circle-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-circle-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/alert-circle-accent.json b/icons-metadata/alert-circle-accent.json deleted file mode 100644 index 00725880..00000000 --- a/icons-metadata/alert-circle-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "alert-circle-accent" -} \ No newline at end of file diff --git a/icons-metadata/alert-circle-icon.json b/icons-metadata/alert-circle-icon.json new file mode 100644 index 00000000..a466283c --- /dev/null +++ b/icons-metadata/alert-circle-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-circle-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-octagon-icon.json b/icons-metadata/alert-octagon-icon.json new file mode 100644 index 00000000..5c7fd076 --- /dev/null +++ b/icons-metadata/alert-octagon-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-octagon-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-octagon.json b/icons-metadata/alert-octagon.json deleted file mode 100644 index e0d6f350..00000000 --- a/icons-metadata/alert-octagon.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "alert-octagon", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-accent-icon.json b/icons-metadata/alert-triangle-accent-icon.json new file mode 100644 index 00000000..06c6cdb7 --- /dev/null +++ b/icons-metadata/alert-triangle-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "alert-triangle-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-accent.json b/icons-metadata/alert-triangle-accent.json deleted file mode 100644 index bc2b5885..00000000 --- a/icons-metadata/alert-triangle-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "alert-triangle-accent" -} \ No newline at end of file diff --git a/icons-metadata/alert-triangle-icon.json b/icons-metadata/alert-triangle-icon.json new file mode 100644 index 00000000..23ef46c4 --- /dev/null +++ b/icons-metadata/alert-triangle-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "alert-triangle-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/alert-triangle.json b/icons-metadata/alert-triangle.json deleted file mode 100644 index 4521798d..00000000 --- a/icons-metadata/alert-triangle.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "alert-triangle", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/list-fill.json b/icons-metadata/apple-icon.json similarity index 76% rename from icons-metadata/list-fill.json rename to icons-metadata/apple-icon.json index b0b779a7..db9936ba 100644 --- a/icons-metadata/list-fill.json +++ b/icons-metadata/apple-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "list-fill", + "name": "apple-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/arrow-curve-fill-icon.json b/icons-metadata/arrow-curve-fill-icon.json new file mode 100644 index 00000000..04c0944d --- /dev/null +++ b/icons-metadata/arrow-curve-fill-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "arrow-curve-fill-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-down-icon.json b/icons-metadata/arrow-down-icon.json new file mode 100644 index 00000000..cca16f33 --- /dev/null +++ b/icons-metadata/arrow-down-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-down-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-left-icon.json b/icons-metadata/arrow-left-icon.json new file mode 100644 index 00000000..4368c9f0 --- /dev/null +++ b/icons-metadata/arrow-left-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-left-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/adjustments-horizontal.json b/icons-metadata/arrow-narrow-left-icon.json similarity index 78% rename from icons-metadata/adjustments-horizontal.json rename to icons-metadata/arrow-narrow-left-icon.json index aa1ac81e..5f256736 100644 --- a/icons-metadata/adjustments-horizontal.json +++ b/icons-metadata/arrow-narrow-left-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "adjustments-horizontal", + "name": "arrow-narrow-left-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/arrow-narrow-left.json b/icons-metadata/arrow-narrow-left.json deleted file mode 100644 index c9ab4f9c..00000000 --- a/icons-metadata/arrow-narrow-left.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrow-narrow-left", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/arrow-narrow-right-icon.json b/icons-metadata/arrow-narrow-right-icon.json new file mode 100644 index 00000000..57e8042e --- /dev/null +++ b/icons-metadata/arrow-narrow-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-narrow-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-narrow-right.json b/icons-metadata/arrow-narrow-right.json deleted file mode 100644 index c77985e9..00000000 --- a/icons-metadata/arrow-narrow-right.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrow-narrow-right", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/arrow-right-icon.json b/icons-metadata/arrow-right-icon.json new file mode 100644 index 00000000..b43bb2d3 --- /dev/null +++ b/icons-metadata/arrow-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-right.json b/icons-metadata/arrow-right.json deleted file mode 100644 index 77bf44f8..00000000 --- a/icons-metadata/arrow-right.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrow-right", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/arrow-sort-2-icon.json b/icons-metadata/arrow-sort-2-icon.json new file mode 100644 index 00000000..5e255153 --- /dev/null +++ b/icons-metadata/arrow-sort-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-sort-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-sort-2.json b/icons-metadata/arrow-sort-2.json deleted file mode 100644 index 9544e629..00000000 --- a/icons-metadata/arrow-sort-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrow-sort-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/arrow-up-icon.json b/icons-metadata/arrow-up-icon.json new file mode 100644 index 00000000..3517f44c --- /dev/null +++ b/icons-metadata/arrow-up-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrow-up-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-diagonal-icon.json b/icons-metadata/arrows-diagonal-icon.json new file mode 100644 index 00000000..81820b8f --- /dev/null +++ b/icons-metadata/arrows-diagonal-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-diagonal-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-diagonal.json b/icons-metadata/arrows-diagonal.json deleted file mode 100644 index 755e7220..00000000 --- a/icons-metadata/arrows-diagonal.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrows-diagonal", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/arrows-sort-icon.json b/icons-metadata/arrows-sort-icon.json new file mode 100644 index 00000000..01f11d7b --- /dev/null +++ b/icons-metadata/arrows-sort-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-sort-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-sort.json b/icons-metadata/arrows-sort.json deleted file mode 100644 index d33fb224..00000000 --- a/icons-metadata/arrows-sort.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "arrows-sort", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/atom-accent-icon.json b/icons-metadata/atom-accent-icon.json new file mode 100644 index 00000000..598df61c --- /dev/null +++ b/icons-metadata/atom-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "atom-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/atom-icon.json b/icons-metadata/atom-icon.json new file mode 100644 index 00000000..41fb1191 --- /dev/null +++ b/icons-metadata/atom-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "atom-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-up.json b/icons-metadata/ban-icon.json similarity index 85% rename from icons-metadata/arrow-up.json rename to icons-metadata/ban-icon.json index ee654dbb..1b52a2fb 100644 --- a/icons-metadata/arrow-up.json +++ b/icons-metadata/ban-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "arrow-up", + "name": "ban-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/ban.json b/icons-metadata/ban.json deleted file mode 100644 index 1a48475e..00000000 --- a/icons-metadata/ban.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "ban", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-icon.json b/icons-metadata/bell-icon.json new file mode 100644 index 00000000..26f5b28a --- /dev/null +++ b/icons-metadata/bell-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-minus-icon.json b/icons-metadata/bell-minus-icon.json new file mode 100644 index 00000000..53214f5d --- /dev/null +++ b/icons-metadata/bell-minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-minus.json b/icons-metadata/bell-minus.json deleted file mode 100644 index c2adae80..00000000 --- a/icons-metadata/bell-minus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-minus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-off-icon.json b/icons-metadata/bell-off-icon.json new file mode 100644 index 00000000..97fc4c59 --- /dev/null +++ b/icons-metadata/bell-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-off.json b/icons-metadata/bell-off.json deleted file mode 100644 index f879ae18..00000000 --- a/icons-metadata/bell-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-plus-icon.json b/icons-metadata/bell-plus-icon.json new file mode 100644 index 00000000..d605e1be --- /dev/null +++ b/icons-metadata/bell-plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-plus.json b/icons-metadata/bell-plus.json deleted file mode 100644 index c582aca7..00000000 --- a/icons-metadata/bell-plus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-plus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-ringing-2-icon.json b/icons-metadata/bell-ringing-2-icon.json new file mode 100644 index 00000000..e3eb1592 --- /dev/null +++ b/icons-metadata/bell-ringing-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-ringing-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-ringing-2.json b/icons-metadata/bell-ringing-2.json deleted file mode 100644 index 3d5ac004..00000000 --- a/icons-metadata/bell-ringing-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-ringing-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-ringing-icon.json b/icons-metadata/bell-ringing-icon.json new file mode 100644 index 00000000..ae67e09c --- /dev/null +++ b/icons-metadata/bell-ringing-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-ringing-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-ringing.json b/icons-metadata/bell-ringing.json deleted file mode 100644 index f2b9324a..00000000 --- a/icons-metadata/bell-ringing.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-ringing", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell-x-icon.json b/icons-metadata/bell-x-icon.json new file mode 100644 index 00000000..d754911b --- /dev/null +++ b/icons-metadata/bell-x-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bell-x-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bell-x.json b/icons-metadata/bell-x.json deleted file mode 100644 index 8e0c4bb0..00000000 --- a/icons-metadata/bell-x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell-x", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bell.json b/icons-metadata/bell.json deleted file mode 100644 index d9a0245b..00000000 --- a/icons-metadata/bell.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bell", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-facebook-icon.json b/icons-metadata/brand-facebook-icon.json new file mode 100644 index 00000000..34923fa6 --- /dev/null +++ b/icons-metadata/brand-facebook-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-facebook-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-facebook.json b/icons-metadata/brand-facebook.json deleted file mode 100644 index 4ee68412..00000000 --- a/icons-metadata/brand-facebook.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-facebook", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-github-icon.json b/icons-metadata/brand-github-icon.json new file mode 100644 index 00000000..8730a06a --- /dev/null +++ b/icons-metadata/brand-github-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-github-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-github.json b/icons-metadata/brand-github.json deleted file mode 100644 index 44709297..00000000 --- a/icons-metadata/brand-github.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-github", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-instagram-icon.json b/icons-metadata/brand-instagram-icon.json new file mode 100644 index 00000000..50516c00 --- /dev/null +++ b/icons-metadata/brand-instagram-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-instagram-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-instagram.json b/icons-metadata/brand-instagram.json deleted file mode 100644 index f5393f5d..00000000 --- a/icons-metadata/brand-instagram.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-instagram", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-twitter-icon.json b/icons-metadata/brand-twitter-icon.json new file mode 100644 index 00000000..609b69c0 --- /dev/null +++ b/icons-metadata/brand-twitter-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-twitter-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-twitter.json b/icons-metadata/brand-twitter.json deleted file mode 100644 index 87fd2a2a..00000000 --- a/icons-metadata/brand-twitter.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-twitter", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-whatsapp-icon.json b/icons-metadata/brand-whatsapp-icon.json new file mode 100644 index 00000000..7c7d9666 --- /dev/null +++ b/icons-metadata/brand-whatsapp-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-whatsapp-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-whatsapp.json b/icons-metadata/brand-whatsapp.json deleted file mode 100644 index 635c20a2..00000000 --- a/icons-metadata/brand-whatsapp.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-whatsapp", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/brand-youtube-icon.json b/icons-metadata/brand-youtube-icon.json new file mode 100644 index 00000000..16c80ee4 --- /dev/null +++ b/icons-metadata/brand-youtube-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "brand-youtube-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/brand-youtube.json b/icons-metadata/brand-youtube.json deleted file mode 100644 index 73e88e25..00000000 --- a/icons-metadata/brand-youtube.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "brand-youtube", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bulb-icon.json b/icons-metadata/bulb-icon.json new file mode 100644 index 00000000..2570042d --- /dev/null +++ b/icons-metadata/bulb-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bulb-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bulb-off-icon.json b/icons-metadata/bulb-off-icon.json new file mode 100644 index 00000000..ef922627 --- /dev/null +++ b/icons-metadata/bulb-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "bulb-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/bulb-off.json b/icons-metadata/bulb-off.json deleted file mode 100644 index 7f50291e..00000000 --- a/icons-metadata/bulb-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bulb-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/bulb.json b/icons-metadata/bulb.json deleted file mode 100644 index af878b00..00000000 --- a/icons-metadata/bulb.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "bulb", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/check-box-empty-icon.json b/icons-metadata/check-box-empty-icon.json new file mode 100644 index 00000000..f8ece966 --- /dev/null +++ b/icons-metadata/check-box-empty-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "check-box-empty-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrow-left.json b/icons-metadata/check-icon.json similarity index 84% rename from icons-metadata/arrow-left.json rename to icons-metadata/check-icon.json index 5361f12b..d3cbb2ff 100644 --- a/icons-metadata/arrow-left.json +++ b/icons-metadata/check-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "arrow-left", + "name": "check-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/check.json b/icons-metadata/check.json deleted file mode 100644 index 25ea1740..00000000 --- a/icons-metadata/check.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "check", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/checkbox-blue-accent-icon.json b/icons-metadata/checkbox-blue-accent-icon.json new file mode 100644 index 00000000..d0444b5a --- /dev/null +++ b/icons-metadata/checkbox-blue-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-blue-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/checkbox-blue-accent.json b/icons-metadata/checkbox-blue-accent.json deleted file mode 100644 index 2f366ed9..00000000 --- a/icons-metadata/checkbox-blue-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "checkbox-blue-accent" -} \ No newline at end of file diff --git a/icons-metadata/checkbox-green-accent-icon.json b/icons-metadata/checkbox-green-accent-icon.json new file mode 100644 index 00000000..2d22c86b --- /dev/null +++ b/icons-metadata/checkbox-green-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-green-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/checkbox-green-accent.json b/icons-metadata/checkbox-green-accent.json deleted file mode 100644 index 9500f1c9..00000000 --- a/icons-metadata/checkbox-green-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "checkbox-green-accent" -} \ No newline at end of file diff --git a/icons-metadata/checkbox-partial-blue-accent-icon.json b/icons-metadata/checkbox-partial-blue-accent-icon.json new file mode 100644 index 00000000..c572896d --- /dev/null +++ b/icons-metadata/checkbox-partial-blue-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "checkbox-partial-blue-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/checkbox-partial-blue-accent.json b/icons-metadata/checkbox-partial-blue-accent.json deleted file mode 100644 index 4ff760e7..00000000 --- a/icons-metadata/checkbox-partial-blue-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "checkbox-partial-blue-accent" -} \ No newline at end of file diff --git a/icons-metadata/chevron-down-icon.json b/icons-metadata/chevron-down-icon.json new file mode 100644 index 00000000..6e4df675 --- /dev/null +++ b/icons-metadata/chevron-down-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-down-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-down.json b/icons-metadata/chevron-down.json deleted file mode 100644 index b272753b..00000000 --- a/icons-metadata/chevron-down.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevron-down", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/chevron-left-icon.json b/icons-metadata/chevron-left-icon.json new file mode 100644 index 00000000..4f5195e0 --- /dev/null +++ b/icons-metadata/chevron-left-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-left-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-left.json b/icons-metadata/chevron-left.json deleted file mode 100644 index 3dfc5020..00000000 --- a/icons-metadata/chevron-left.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevron-left", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/chevron-right-icon.json b/icons-metadata/chevron-right-icon.json new file mode 100644 index 00000000..ed1a437c --- /dev/null +++ b/icons-metadata/chevron-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-right.json b/icons-metadata/chevron-right.json deleted file mode 100644 index 9bb9b6fa..00000000 --- a/icons-metadata/chevron-right.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevron-right", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/chevron-up-icon.json b/icons-metadata/chevron-up-icon.json new file mode 100644 index 00000000..edb15804 --- /dev/null +++ b/icons-metadata/chevron-up-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevron-up-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevron-up.json b/icons-metadata/chevron-up.json deleted file mode 100644 index 8bbde2c7..00000000 --- a/icons-metadata/chevron-up.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevron-up", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/chevrons-left-icon.json b/icons-metadata/chevrons-left-icon.json new file mode 100644 index 00000000..9a631064 --- /dev/null +++ b/icons-metadata/chevrons-left-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevrons-left-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevrons-left.json b/icons-metadata/chevrons-left.json deleted file mode 100644 index ee2411a9..00000000 --- a/icons-metadata/chevrons-left.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevrons-left", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/chevrons-right-icon.json b/icons-metadata/chevrons-right-icon.json new file mode 100644 index 00000000..bcd4019e --- /dev/null +++ b/icons-metadata/chevrons-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "chevrons-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/chevrons-right.json b/icons-metadata/chevrons-right.json deleted file mode 100644 index 5c374c19..00000000 --- a/icons-metadata/chevrons-right.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "chevrons-right", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/circle-check-2-icon.json b/icons-metadata/circle-check-2-icon.json new file mode 100644 index 00000000..b1d7fdc0 --- /dev/null +++ b/icons-metadata/circle-check-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-check-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-check-2.json b/icons-metadata/circle-check-2.json deleted file mode 100644 index 869640c9..00000000 --- a/icons-metadata/circle-check-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "circle-check-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/circle-check-icon.json b/icons-metadata/circle-check-icon.json new file mode 100644 index 00000000..58a711ba --- /dev/null +++ b/icons-metadata/circle-check-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-check-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-check.json b/icons-metadata/circle-check.json deleted file mode 100644 index 3c13be42..00000000 --- a/icons-metadata/circle-check.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "circle-check", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/circle-cross-accent-icon.json b/icons-metadata/circle-cross-accent-icon.json new file mode 100644 index 00000000..fb749db0 --- /dev/null +++ b/icons-metadata/circle-cross-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "circle-cross-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/circle-cross-accent.json b/icons-metadata/circle-cross-accent.json deleted file mode 100644 index 1b9fd51d..00000000 --- a/icons-metadata/circle-cross-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "circle-cross-accent" -} \ No newline at end of file diff --git a/icons-metadata/arrow-curve-fill.json b/icons-metadata/circle-fill-icon.json similarity index 72% rename from icons-metadata/arrow-curve-fill.json rename to icons-metadata/circle-fill-icon.json index a1f17314..4148d408 100644 --- a/icons-metadata/arrow-curve-fill.json +++ b/icons-metadata/circle-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "arrow-curve-fill", + "name": "circle-fill-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/circle-icon.json b/icons-metadata/circle-icon.json new file mode 100644 index 00000000..c354ec7c --- /dev/null +++ b/icons-metadata/circle-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle.json b/icons-metadata/circle.json deleted file mode 100644 index 930eb97c..00000000 --- a/icons-metadata/circle.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "circle", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/clock-icon.json b/icons-metadata/clock-icon.json new file mode 100644 index 00000000..e75c17ce --- /dev/null +++ b/icons-metadata/clock-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "clock-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/clock.json b/icons-metadata/clock.json deleted file mode 100644 index f4a1d40a..00000000 --- a/icons-metadata/clock.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "clock", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/cloud-upload-accent-icon.json b/icons-metadata/cloud-upload-accent-icon.json new file mode 100644 index 00000000..da686497 --- /dev/null +++ b/icons-metadata/cloud-upload-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "cloud-upload-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/cloud-upload-accent.json b/icons-metadata/cloud-upload-accent.json deleted file mode 100644 index 424100a3..00000000 --- a/icons-metadata/cloud-upload-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "cloud-upload-accent" -} \ No newline at end of file diff --git a/icons-metadata/cloud-upload-icon.json b/icons-metadata/cloud-upload-icon.json new file mode 100644 index 00000000..91817a5f --- /dev/null +++ b/icons-metadata/cloud-upload-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "cloud-upload-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/cloud-upload.json b/icons-metadata/cloud-upload.json deleted file mode 100644 index f8fb236a..00000000 --- a/icons-metadata/cloud-upload.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "cloud-upload", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/check-box-empty.json b/icons-metadata/collection-icon.json similarity index 81% rename from icons-metadata/check-box-empty.json rename to icons-metadata/collection-icon.json index 04f14cae..a023e212 100644 --- a/icons-metadata/check-box-empty.json +++ b/icons-metadata/collection-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "check-box-empty", + "name": "collection-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/color-swatch-icon.json b/icons-metadata/color-swatch-icon.json new file mode 100644 index 00000000..ea24e132 --- /dev/null +++ b/icons-metadata/color-swatch-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "color-swatch-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/color-swatch.json b/icons-metadata/color-swatch.json deleted file mode 100644 index ea4e60bd..00000000 --- a/icons-metadata/color-swatch.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "color-swatch", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/confetti-icon.json b/icons-metadata/confetti-icon.json new file mode 100644 index 00000000..8e09421b --- /dev/null +++ b/icons-metadata/confetti-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "confetti-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/confetti.json b/icons-metadata/confetti.json deleted file mode 100644 index 0d6cbe3e..00000000 --- a/icons-metadata/confetti.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "confetti", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/copy-icon.json b/icons-metadata/copy-icon.json new file mode 100644 index 00000000..7a5f3375 --- /dev/null +++ b/icons-metadata/copy-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "copy-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/copy.json b/icons-metadata/copy.json deleted file mode 100644 index 609811a3..00000000 --- a/icons-metadata/copy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "copy", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/crown-2-fill-icon.json b/icons-metadata/crown-2-fill-icon.json new file mode 100644 index 00000000..bb20f98e --- /dev/null +++ b/icons-metadata/crown-2-fill-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "crown-2-fill-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/crown-icon.json b/icons-metadata/crown-icon.json new file mode 100644 index 00000000..c4956e6a --- /dev/null +++ b/icons-metadata/crown-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "crown-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/crown.json b/icons-metadata/crown.json deleted file mode 100644 index e1e31e5e..00000000 --- a/icons-metadata/crown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "crown", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/currency-dollar-icon.json b/icons-metadata/currency-dollar-icon.json new file mode 100644 index 00000000..e3a0c2ec --- /dev/null +++ b/icons-metadata/currency-dollar-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "currency-dollar-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/currency-dollar.json b/icons-metadata/currency-dollar.json deleted file mode 100644 index 3ee3b8cd..00000000 --- a/icons-metadata/currency-dollar.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "currency-dollar", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/current-location-icon.json b/icons-metadata/current-location-icon.json new file mode 100644 index 00000000..3f6b056d --- /dev/null +++ b/icons-metadata/current-location-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "current-location-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/current-location.json b/icons-metadata/current-location.json deleted file mode 100644 index 7e1dd8cd..00000000 --- a/icons-metadata/current-location.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "current-location", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/device-desktop-analytics-icon.json b/icons-metadata/device-desktop-analytics-icon.json new file mode 100644 index 00000000..e5ef8c80 --- /dev/null +++ b/icons-metadata/device-desktop-analytics-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop-analytics-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop-analytics.json b/icons-metadata/device-desktop-analytics.json deleted file mode 100644 index c960a299..00000000 --- a/icons-metadata/device-desktop-analytics.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "device-desktop-analytics", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/device-desktop-icon.json b/icons-metadata/device-desktop-icon.json new file mode 100644 index 00000000..f6b498ab --- /dev/null +++ b/icons-metadata/device-desktop-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop-off-icon.json b/icons-metadata/device-desktop-off-icon.json new file mode 100644 index 00000000..c2b09d8e --- /dev/null +++ b/icons-metadata/device-desktop-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-desktop-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-desktop-off.json b/icons-metadata/device-desktop-off.json deleted file mode 100644 index 448704af..00000000 --- a/icons-metadata/device-desktop-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "device-desktop-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/device-desktop.json b/icons-metadata/device-desktop.json deleted file mode 100644 index 30266bec..00000000 --- a/icons-metadata/device-desktop.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "device-desktop", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/device-laptop-icon.json b/icons-metadata/device-laptop-icon.json new file mode 100644 index 00000000..9f79cf99 --- /dev/null +++ b/icons-metadata/device-laptop-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-laptop-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-laptop.json b/icons-metadata/device-laptop.json deleted file mode 100644 index e7a07af8..00000000 --- a/icons-metadata/device-laptop.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "device-laptop", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/device-tv-icon.json b/icons-metadata/device-tv-icon.json new file mode 100644 index 00000000..6e56c49a --- /dev/null +++ b/icons-metadata/device-tv-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "device-tv-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/device-tv.json b/icons-metadata/device-tv.json deleted file mode 100644 index 678a06b3..00000000 --- a/icons-metadata/device-tv.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "device-tv", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/alert-circle.json b/icons-metadata/diamond-icon.json similarity index 83% rename from icons-metadata/alert-circle.json rename to icons-metadata/diamond-icon.json index 4ccc2f85..437d9137 100644 --- a/icons-metadata/alert-circle.json +++ b/icons-metadata/diamond-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "alert-circle", + "name": "diamond-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/diamond.json b/icons-metadata/diamond.json deleted file mode 100644 index fafb111b..00000000 --- a/icons-metadata/diamond.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "diamond", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/discount-2-icon.json b/icons-metadata/discount-2-icon.json new file mode 100644 index 00000000..d909d2c2 --- /dev/null +++ b/icons-metadata/discount-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "discount-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/discount-2.json b/icons-metadata/discount-2.json deleted file mode 100644 index 97530299..00000000 --- a/icons-metadata/discount-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "discount-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/discount-icon.json b/icons-metadata/discount-icon.json new file mode 100644 index 00000000..d219a8ea --- /dev/null +++ b/icons-metadata/discount-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "discount-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/discount.json b/icons-metadata/discount.json deleted file mode 100644 index 70ef70dc..00000000 --- a/icons-metadata/discount.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "discount", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/disk-icon.json b/icons-metadata/disk-icon.json new file mode 100644 index 00000000..7e73bb8b --- /dev/null +++ b/icons-metadata/disk-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "disk-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/disk.json b/icons-metadata/disk.json deleted file mode 100644 index f689c2c7..00000000 --- a/icons-metadata/disk.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "disk", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/dots-vertical-icon.json b/icons-metadata/dots-vertical-icon.json new file mode 100644 index 00000000..0692c1b1 --- /dev/null +++ b/icons-metadata/dots-vertical-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "dots-vertical-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/dots-vertical.json b/icons-metadata/dots-vertical.json deleted file mode 100644 index 6c97bccf..00000000 --- a/icons-metadata/dots-vertical.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "dots-vertical", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/download-accent-icon.json b/icons-metadata/download-accent-icon.json new file mode 100644 index 00000000..714634fd --- /dev/null +++ b/icons-metadata/download-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "download-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/download-icon.json b/icons-metadata/download-icon.json new file mode 100644 index 00000000..346c3175 --- /dev/null +++ b/icons-metadata/download-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "download-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/download.json b/icons-metadata/download.json deleted file mode 100644 index 82ad6a1b..00000000 --- a/icons-metadata/download.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "download", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/edit-icon-icon.json b/icons-metadata/edit-icon-icon.json new file mode 100644 index 00000000..68fe72ca --- /dev/null +++ b/icons-metadata/edit-icon-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "edit-icon-icon" +} \ No newline at end of file diff --git a/icons-metadata/edit-icon.json b/icons-metadata/edit-icon.json index 66b04f1f..6b863ca4 100644 --- a/icons-metadata/edit-icon.json +++ b/icons-metadata/edit-icon.json @@ -1,4 +1,9 @@ { - "icon_type": "logo", - "name": "edit-icon" + "icon_type": "outline", + "name": "edit-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } } \ No newline at end of file diff --git a/icons-metadata/edit.json b/icons-metadata/edit.json deleted file mode 100644 index 2fefa67b..00000000 --- a/icons-metadata/edit.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "edit", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/external-link-icon.json b/icons-metadata/external-link-icon.json new file mode 100644 index 00000000..c82b8cac --- /dev/null +++ b/icons-metadata/external-link-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "external-link-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/external-link.json b/icons-metadata/external-link.json deleted file mode 100644 index 23705914..00000000 --- a/icons-metadata/external-link.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "external-link", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/eye-check-icon.json b/icons-metadata/eye-check-icon.json new file mode 100644 index 00000000..5f4e3590 --- /dev/null +++ b/icons-metadata/eye-check-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "eye-check-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/eye-check.json b/icons-metadata/eye-check.json deleted file mode 100644 index e34cf977..00000000 --- a/icons-metadata/eye-check.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "eye-check", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/atom.json b/icons-metadata/eye-icon.json similarity index 85% rename from icons-metadata/atom.json rename to icons-metadata/eye-icon.json index ee062094..58402213 100644 --- a/icons-metadata/atom.json +++ b/icons-metadata/eye-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "atom", + "name": "eye-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/eye-off-icon.json b/icons-metadata/eye-off-icon.json new file mode 100644 index 00000000..49140c8a --- /dev/null +++ b/icons-metadata/eye-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "eye-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/eye-off.json b/icons-metadata/eye-off.json deleted file mode 100644 index 2906de26..00000000 --- a/icons-metadata/eye-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "eye-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/eye.json b/icons-metadata/eye.json deleted file mode 100644 index fb62fa33..00000000 --- a/icons-metadata/eye.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "eye", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/crown-2-fill.json b/icons-metadata/facebook-icon.json similarity index 74% rename from icons-metadata/crown-2-fill.json rename to icons-metadata/facebook-icon.json index 6aec2724..149ef0c3 100644 --- a/icons-metadata/crown-2-fill.json +++ b/icons-metadata/facebook-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "crown-2-fill", + "name": "facebook-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/facebook.json b/icons-metadata/facebook.json deleted file mode 100644 index 34bea1d6..00000000 --- a/icons-metadata/facebook.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "facebook", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/file-download-icon.json b/icons-metadata/file-download-icon.json new file mode 100644 index 00000000..66f488a6 --- /dev/null +++ b/icons-metadata/file-download-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-download-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-download.json b/icons-metadata/file-download.json deleted file mode 100644 index 3de21b1e..00000000 --- a/icons-metadata/file-download.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "file-download", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/file-export-icon.json b/icons-metadata/file-export-icon.json new file mode 100644 index 00000000..01a11e9a --- /dev/null +++ b/icons-metadata/file-export-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-export-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-export.json b/icons-metadata/file-export.json deleted file mode 100644 index 25e36f79..00000000 --- a/icons-metadata/file-export.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "file-export", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/file-report-icon.json b/icons-metadata/file-report-icon.json new file mode 100644 index 00000000..7d40ebfb --- /dev/null +++ b/icons-metadata/file-report-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-report-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-report.json b/icons-metadata/file-report.json deleted file mode 100644 index 90e39e1e..00000000 --- a/icons-metadata/file-report.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "file-report", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/file-search-icon.json b/icons-metadata/file-search-icon.json new file mode 100644 index 00000000..e1c13c74 --- /dev/null +++ b/icons-metadata/file-search-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "file-search-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/file-search.json b/icons-metadata/file-search.json deleted file mode 100644 index aea6df1b..00000000 --- a/icons-metadata/file-search.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "file-search", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/filter-icon.json b/icons-metadata/filter-icon.json new file mode 100644 index 00000000..c16c4884 --- /dev/null +++ b/icons-metadata/filter-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "filter-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/filter-off-icon.json b/icons-metadata/filter-off-icon.json new file mode 100644 index 00000000..108c0df7 --- /dev/null +++ b/icons-metadata/filter-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "filter-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/filter-off.json b/icons-metadata/filter-off.json deleted file mode 100644 index 5bdfdeba..00000000 --- a/icons-metadata/filter-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "filter-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/filter.json b/icons-metadata/filter.json deleted file mode 100644 index b756c828..00000000 --- a/icons-metadata/filter.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "filter", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/none-selected.json b/icons-metadata/flag-fill-icon.json similarity index 81% rename from icons-metadata/none-selected.json rename to icons-metadata/flag-fill-icon.json index 13495d35..66763d39 100644 --- a/icons-metadata/none-selected.json +++ b/icons-metadata/flag-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "none-selected", + "name": "flag-fill-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/flag-icon.json b/icons-metadata/flag-icon.json new file mode 100644 index 00000000..e0943210 --- /dev/null +++ b/icons-metadata/flag-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "flag-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/flag-off-icon.json b/icons-metadata/flag-off-icon.json new file mode 100644 index 00000000..cb14dca4 --- /dev/null +++ b/icons-metadata/flag-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "flag-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/flag-off.json b/icons-metadata/flag-off.json deleted file mode 100644 index 84dd4d53..00000000 --- a/icons-metadata/flag-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "flag-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/flag.json b/icons-metadata/flag.json deleted file mode 100644 index 31cc9150..00000000 --- a/icons-metadata/flag.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "flag", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-download-icon.json b/icons-metadata/folder-download-icon.json new file mode 100644 index 00000000..480b0b5d --- /dev/null +++ b/icons-metadata/folder-download-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-download-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-download.json b/icons-metadata/folder-download.json deleted file mode 100644 index f2681187..00000000 --- a/icons-metadata/folder-download.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-download", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-eye-icon.json b/icons-metadata/folder-eye-icon.json new file mode 100644 index 00000000..53527db4 --- /dev/null +++ b/icons-metadata/folder-eye-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-eye-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-eye.json b/icons-metadata/folder-eye.json deleted file mode 100644 index bab4b81f..00000000 --- a/icons-metadata/folder-eye.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-eye", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-fill-icon.json b/icons-metadata/folder-fill-icon.json new file mode 100644 index 00000000..89a9d203 --- /dev/null +++ b/icons-metadata/folder-fill-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "folder-fill-icon" +} \ No newline at end of file diff --git a/icons-metadata/folder-icon.json b/icons-metadata/folder-icon.json new file mode 100644 index 00000000..cf7c17d1 --- /dev/null +++ b/icons-metadata/folder-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-minus-icon.json b/icons-metadata/folder-minus-icon.json new file mode 100644 index 00000000..ae13457b --- /dev/null +++ b/icons-metadata/folder-minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-minus.json b/icons-metadata/folder-minus.json deleted file mode 100644 index 1b023545..00000000 --- a/icons-metadata/folder-minus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-minus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-off-icon.json b/icons-metadata/folder-off-icon.json new file mode 100644 index 00000000..c76b8b82 --- /dev/null +++ b/icons-metadata/folder-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-off.json b/icons-metadata/folder-off.json deleted file mode 100644 index 822f8087..00000000 --- a/icons-metadata/folder-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-plus-icon.json b/icons-metadata/folder-plus-icon.json new file mode 100644 index 00000000..d60b600e --- /dev/null +++ b/icons-metadata/folder-plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-plus.json b/icons-metadata/folder-plus.json deleted file mode 100644 index 7afc09fc..00000000 --- a/icons-metadata/folder-plus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-plus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-upload-icon.json b/icons-metadata/folder-upload-icon.json new file mode 100644 index 00000000..ad05f390 --- /dev/null +++ b/icons-metadata/folder-upload-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-upload-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-upload.json b/icons-metadata/folder-upload.json deleted file mode 100644 index afb830ff..00000000 --- a/icons-metadata/folder-upload.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-upload", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-x-icon.json b/icons-metadata/folder-x-icon.json new file mode 100644 index 00000000..fb9eae2e --- /dev/null +++ b/icons-metadata/folder-x-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folder-x-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folder-x.json b/icons-metadata/folder-x.json deleted file mode 100644 index 6b638776..00000000 --- a/icons-metadata/folder-x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder-x", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder.json b/icons-metadata/folder.json deleted file mode 100644 index 8eb99249..00000000 --- a/icons-metadata/folder.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folder", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folders-icon.json b/icons-metadata/folders-icon.json new file mode 100644 index 00000000..eea4281a --- /dev/null +++ b/icons-metadata/folders-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "folders-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/folders.json b/icons-metadata/folders.json deleted file mode 100644 index 0a3e4ea9..00000000 --- a/icons-metadata/folders.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "folders", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/google-color-icon.json b/icons-metadata/google-color-icon.json new file mode 100644 index 00000000..3c19c7b2 --- /dev/null +++ b/icons-metadata/google-color-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "google-color-icon" +} \ No newline at end of file diff --git a/icons-metadata/google-color.json b/icons-metadata/google-color.json deleted file mode 100644 index e43f95c6..00000000 --- a/icons-metadata/google-color.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "logo", - "name": "google-color" -} \ No newline at end of file diff --git a/icons-metadata/grab-hand-icon.json b/icons-metadata/grab-hand-icon.json new file mode 100644 index 00000000..439ca3de --- /dev/null +++ b/icons-metadata/grab-hand-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "grab-hand-icon" +} \ No newline at end of file diff --git a/icons-metadata/grab-hand.json b/icons-metadata/grab-hand.json deleted file mode 100644 index 184900ff..00000000 --- a/icons-metadata/grab-hand.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "logo", - "name": "grab-hand" -} \ No newline at end of file diff --git a/icons-metadata/grid-dots-icon.json b/icons-metadata/grid-dots-icon.json new file mode 100644 index 00000000..2630baf5 --- /dev/null +++ b/icons-metadata/grid-dots-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "grid-dots-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/grid-dots.json b/icons-metadata/grid-dots.json deleted file mode 100644 index 77179fec..00000000 --- a/icons-metadata/grid-dots.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "grid-dots", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/grid-view-1-icon.json b/icons-metadata/grid-view-1-icon.json new file mode 100644 index 00000000..380e6dc1 --- /dev/null +++ b/icons-metadata/grid-view-1-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-1-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/grid-view-1.json b/icons-metadata/grid-view-1.json deleted file mode 100644 index 7b7c1e5c..00000000 --- a/icons-metadata/grid-view-1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "grid-view-1", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/grid-view-2-icon.json b/icons-metadata/grid-view-2-icon.json new file mode 100644 index 00000000..568c0c1b --- /dev/null +++ b/icons-metadata/grid-view-2-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "grid-view-2-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/grid-view-2.json b/icons-metadata/grid-view-2.json deleted file mode 100644 index ca919d7e..00000000 --- a/icons-metadata/grid-view-2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "grid-view-2", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/home-2-icon.json b/icons-metadata/home-2-icon.json new file mode 100644 index 00000000..5f4e27eb --- /dev/null +++ b/icons-metadata/home-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "home-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/home-2.json b/icons-metadata/home-2.json deleted file mode 100644 index e43f8ccc..00000000 --- a/icons-metadata/home-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "home-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/home-mix.json b/icons-metadata/home-icon.json similarity index 58% rename from icons-metadata/home-mix.json rename to icons-metadata/home-icon.json index 3732de18..34550566 100644 --- a/icons-metadata/home-mix.json +++ b/icons-metadata/home-icon.json @@ -1,4 +1,4 @@ { "icon_type": "no-change", - "name": "home-mix" + "name": "home-icon" } \ No newline at end of file diff --git a/icons-metadata/image-border.json b/icons-metadata/image-border-icon.json similarity index 80% rename from icons-metadata/image-border.json rename to icons-metadata/image-border-icon.json index 13f0d57b..a0b7bd18 100644 --- a/icons-metadata/image-border.json +++ b/icons-metadata/image-border-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "image-border", + "name": "image-border-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/info-circle-icon.json b/icons-metadata/info-circle-icon.json new file mode 100644 index 00000000..983bdd73 --- /dev/null +++ b/icons-metadata/info-circle-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-circle-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-circle.json b/icons-metadata/info-circle.json deleted file mode 100644 index 3847715c..00000000 --- a/icons-metadata/info-circle.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "info-circle", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/info-cirlce-2-icon.json b/icons-metadata/info-cirlce-2-icon.json new file mode 100644 index 00000000..c09cb952 --- /dev/null +++ b/icons-metadata/info-cirlce-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-cirlce-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-cirlce-2.json b/icons-metadata/info-cirlce-2.json deleted file mode 100644 index 5223d852..00000000 --- a/icons-metadata/info-cirlce-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "info-cirlce-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/info-icon.json b/icons-metadata/info-icon.json new file mode 100644 index 00000000..308398f2 --- /dev/null +++ b/icons-metadata/info-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-square-icon.json b/icons-metadata/info-square-icon.json new file mode 100644 index 00000000..c10fe974 --- /dev/null +++ b/icons-metadata/info-square-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-square-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info-square.json b/icons-metadata/info-square.json deleted file mode 100644 index 1f0fdf2c..00000000 --- a/icons-metadata/info-square.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "info-square", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/info.json b/icons-metadata/info.json deleted file mode 100644 index 05e94bb5..00000000 --- a/icons-metadata/info.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "info", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/key-2-icon.json b/icons-metadata/key-2-icon.json new file mode 100644 index 00000000..3870a3c4 --- /dev/null +++ b/icons-metadata/key-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "key-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/key-2.json b/icons-metadata/key-2.json deleted file mode 100644 index 01936828..00000000 --- a/icons-metadata/key-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "key-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/key-duplicate-icon.json b/icons-metadata/key-duplicate-icon.json new file mode 100644 index 00000000..67bef34d --- /dev/null +++ b/icons-metadata/key-duplicate-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "key-duplicate-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/key-duplicate.json b/icons-metadata/key-duplicate.json deleted file mode 100644 index 5d270e67..00000000 --- a/icons-metadata/key-duplicate.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "key-duplicate", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/alarm.json b/icons-metadata/key-icon.json similarity index 85% rename from icons-metadata/alarm.json rename to icons-metadata/key-icon.json index 03263542..9c3108b6 100644 --- a/icons-metadata/alarm.json +++ b/icons-metadata/key-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "alarm", + "name": "key-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/key.json b/icons-metadata/key.json deleted file mode 100644 index 13a277a2..00000000 --- a/icons-metadata/key.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "key", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/layout-sidebar-right-mix-icon.json b/icons-metadata/layout-sidebar-right-mix-icon.json new file mode 100644 index 00000000..83f40fe7 --- /dev/null +++ b/icons-metadata/layout-sidebar-right-mix-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "layout-sidebar-right-mix-icon" +} \ No newline at end of file diff --git a/icons-metadata/layout-sidebar-right-mix.json b/icons-metadata/layout-sidebar-right-mix.json deleted file mode 100644 index adb6ee9e..00000000 --- a/icons-metadata/layout-sidebar-right-mix.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "layout-sidebar-right-mix" -} \ No newline at end of file diff --git a/icons-metadata/link-icon.json b/icons-metadata/link-icon.json new file mode 100644 index 00000000..6b14e738 --- /dev/null +++ b/icons-metadata/link-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "link-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/link.json b/icons-metadata/link.json deleted file mode 100644 index b06d8c83..00000000 --- a/icons-metadata/link.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "link", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/circle-fill.json b/icons-metadata/list-fill-icon.json similarity index 73% rename from icons-metadata/circle-fill.json rename to icons-metadata/list-fill-icon.json index 30109372..99822b4c 100644 --- a/icons-metadata/circle-fill.json +++ b/icons-metadata/list-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "circle-fill", + "name": "list-fill-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/loader-icon.json b/icons-metadata/loader-icon.json new file mode 100644 index 00000000..0342637d --- /dev/null +++ b/icons-metadata/loader-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "loader-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/loader.json b/icons-metadata/loader.json deleted file mode 100644 index 523fab6f..00000000 --- a/icons-metadata/loader.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "loader", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/lock-2-icon.json b/icons-metadata/lock-2-icon.json new file mode 100644 index 00000000..bdad3ec6 --- /dev/null +++ b/icons-metadata/lock-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-2.json b/icons-metadata/lock-2.json deleted file mode 100644 index a10c15b2..00000000 --- a/icons-metadata/lock-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "lock-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/lock-icon.json b/icons-metadata/lock-icon.json new file mode 100644 index 00000000..563cdc87 --- /dev/null +++ b/icons-metadata/lock-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-off-icon.json b/icons-metadata/lock-off-icon.json new file mode 100644 index 00000000..bf100417 --- /dev/null +++ b/icons-metadata/lock-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-off.json b/icons-metadata/lock-off.json deleted file mode 100644 index 58782877..00000000 --- a/icons-metadata/lock-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "lock-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/lock-open-icon.json b/icons-metadata/lock-open-icon.json new file mode 100644 index 00000000..1bf5d6d3 --- /dev/null +++ b/icons-metadata/lock-open-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "lock-open-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/lock-open.json b/icons-metadata/lock-open.json deleted file mode 100644 index 30be5192..00000000 --- a/icons-metadata/lock-open.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "lock-open", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/lock.json b/icons-metadata/lock.json deleted file mode 100644 index 06445cbe..00000000 --- a/icons-metadata/lock.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "lock", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/loop-icon.json b/icons-metadata/loop-icon.json new file mode 100644 index 00000000..f28f63ea --- /dev/null +++ b/icons-metadata/loop-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "loop-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/loop.json b/icons-metadata/loop.json deleted file mode 100644 index 8a0c1f1c..00000000 --- a/icons-metadata/loop.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "loop", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/aftershoot-logo.json b/icons-metadata/loupe-fill-icon.json similarity index 72% rename from icons-metadata/aftershoot-logo.json rename to icons-metadata/loupe-fill-icon.json index 68b44467..381e14c4 100644 --- a/icons-metadata/aftershoot-logo.json +++ b/icons-metadata/loupe-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "aftershoot-logo", + "name": "loupe-fill-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/loupe-fill.json b/icons-metadata/loupe-fill.json deleted file mode 100644 index ee4cc769..00000000 --- a/icons-metadata/loupe-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "loupe-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/mail-icon.json b/icons-metadata/mail-icon.json new file mode 100644 index 00000000..9f8deb74 --- /dev/null +++ b/icons-metadata/mail-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mail-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mail.json b/icons-metadata/mail.json deleted file mode 100644 index 89360eae..00000000 --- a/icons-metadata/mail.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mail", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/map-2-icon.json b/icons-metadata/map-2-icon.json new file mode 100644 index 00000000..a7d76942 --- /dev/null +++ b/icons-metadata/map-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-2.json b/icons-metadata/map-2.json deleted file mode 100644 index 4788f5cb..00000000 --- a/icons-metadata/map-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "map-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/map-pin-icon.json b/icons-metadata/map-pin-icon.json new file mode 100644 index 00000000..a6b0e4f7 --- /dev/null +++ b/icons-metadata/map-pin-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-pin-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-pin-off-icon.json b/icons-metadata/map-pin-off-icon.json new file mode 100644 index 00000000..e960db91 --- /dev/null +++ b/icons-metadata/map-pin-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "map-pin-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/map-pin-off.json b/icons-metadata/map-pin-off.json deleted file mode 100644 index c77f74ec..00000000 --- a/icons-metadata/map-pin-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "map-pin-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/map-pin.json b/icons-metadata/map-pin.json deleted file mode 100644 index 6b1c33c1..00000000 --- a/icons-metadata/map-pin.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "map-pin", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/minus-icon.json b/icons-metadata/minus-icon.json new file mode 100644 index 00000000..874fad89 --- /dev/null +++ b/icons-metadata/minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/minus.json b/icons-metadata/minus.json deleted file mode 100644 index 63bdc089..00000000 --- a/icons-metadata/minus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "minus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mood-crazy-happy-icon.json b/icons-metadata/mood-crazy-happy-icon.json new file mode 100644 index 00000000..b70a99dd --- /dev/null +++ b/icons-metadata/mood-crazy-happy-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-crazy-happy-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-crazy-happy.json b/icons-metadata/mood-crazy-happy.json deleted file mode 100644 index ce6b347f..00000000 --- a/icons-metadata/mood-crazy-happy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mood-crazy-happy", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mood-empty-icon.json b/icons-metadata/mood-empty-icon.json new file mode 100644 index 00000000..3427286d --- /dev/null +++ b/icons-metadata/mood-empty-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-empty-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-empty.json b/icons-metadata/mood-empty.json deleted file mode 100644 index bbbdde42..00000000 --- a/icons-metadata/mood-empty.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mood-empty", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mood-gray.json b/icons-metadata/mood-gray-icon.json similarity index 53% rename from icons-metadata/mood-gray.json rename to icons-metadata/mood-gray-icon.json index 8b90ef80..5b926f19 100644 --- a/icons-metadata/mood-gray.json +++ b/icons-metadata/mood-gray-icon.json @@ -1,4 +1,4 @@ { "icon_type": "no-change", - "name": "mood-gray" + "name": "mood-gray-icon" } \ No newline at end of file diff --git a/icons-metadata/recull.json b/icons-metadata/mood-icon.json similarity index 58% rename from icons-metadata/recull.json rename to icons-metadata/mood-icon.json index 298e0d5e..54a4b21c 100644 --- a/icons-metadata/recull.json +++ b/icons-metadata/mood-icon.json @@ -1,4 +1,4 @@ { "icon_type": "no-change", - "name": "recull" + "name": "mood-icon" } \ No newline at end of file diff --git a/icons-metadata/mood-sad-icon.json b/icons-metadata/mood-sad-icon.json new file mode 100644 index 00000000..bee58f72 --- /dev/null +++ b/icons-metadata/mood-sad-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-sad-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-sad.json b/icons-metadata/mood-sad.json deleted file mode 100644 index 2a2fd68a..00000000 --- a/icons-metadata/mood-sad.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mood-sad", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mood-smile-icon.json b/icons-metadata/mood-smile-icon.json new file mode 100644 index 00000000..71917343 --- /dev/null +++ b/icons-metadata/mood-smile-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mood-smile-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mood-smile.json b/icons-metadata/mood-smile.json deleted file mode 100644 index 4c808624..00000000 --- a/icons-metadata/mood-smile.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mood-smile", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mouse-left-2-icon.json b/icons-metadata/mouse-left-2-icon.json new file mode 100644 index 00000000..821965aa --- /dev/null +++ b/icons-metadata/mouse-left-2-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "mouse-left-2-icon" +} \ No newline at end of file diff --git a/icons-metadata/mouse-left-2.json b/icons-metadata/mouse-left-2.json deleted file mode 100644 index 7a3ed2e9..00000000 --- a/icons-metadata/mouse-left-2.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "mouse-left-2" -} \ No newline at end of file diff --git a/icons-metadata/mouse-left-icon.json b/icons-metadata/mouse-left-icon.json new file mode 100644 index 00000000..c5afc6d0 --- /dev/null +++ b/icons-metadata/mouse-left-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mouse-left-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mouse-left.json b/icons-metadata/mouse-left.json deleted file mode 100644 index f125b2f4..00000000 --- a/icons-metadata/mouse-left.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mouse-left", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mouse-right-icon.json b/icons-metadata/mouse-right-icon.json new file mode 100644 index 00000000..946b246f --- /dev/null +++ b/icons-metadata/mouse-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "mouse-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mouse-right.json b/icons-metadata/mouse-right.json deleted file mode 100644 index 4b827c66..00000000 --- a/icons-metadata/mouse-right.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "mouse-right", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/no-duplicate-icon.json b/icons-metadata/no-duplicate-icon.json new file mode 100644 index 00000000..ebef7e23 --- /dev/null +++ b/icons-metadata/no-duplicate-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "no-duplicate-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/no-duplicate.json b/icons-metadata/no-duplicate.json deleted file mode 100644 index 1a2af913..00000000 --- a/icons-metadata/no-duplicate.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "no-duplicate", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/none-selected-icon.json b/icons-metadata/none-selected-icon.json new file mode 100644 index 00000000..42c7905b --- /dev/null +++ b/icons-metadata/none-selected-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "none-selected-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/palette-fill-icon.json b/icons-metadata/palette-fill-icon.json new file mode 100644 index 00000000..c247946c --- /dev/null +++ b/icons-metadata/palette-fill-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "palette-fill-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/palette-fill.json b/icons-metadata/palette-fill.json deleted file mode 100644 index d065c897..00000000 --- a/icons-metadata/palette-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "palette-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/palette-icon.json b/icons-metadata/palette-icon.json new file mode 100644 index 00000000..364bc3cb --- /dev/null +++ b/icons-metadata/palette-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "palette-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/palette.json b/icons-metadata/palette.json deleted file mode 100644 index 006c0574..00000000 --- a/icons-metadata/palette.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "palette", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/pause-fill-icon.json b/icons-metadata/pause-fill-icon.json new file mode 100644 index 00000000..e7eac3fe --- /dev/null +++ b/icons-metadata/pause-fill-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "pause-fill-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/pause-fill.json b/icons-metadata/pause-fill.json deleted file mode 100644 index 88c48558..00000000 --- a/icons-metadata/pause-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "pause-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/photo-icon.json b/icons-metadata/photo-icon.json new file mode 100644 index 00000000..59053cbe --- /dev/null +++ b/icons-metadata/photo-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-off-2-icon.json b/icons-metadata/photo-off-2-icon.json new file mode 100644 index 00000000..67a43435 --- /dev/null +++ b/icons-metadata/photo-off-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-off-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-off-2.json b/icons-metadata/photo-off-2.json deleted file mode 100644 index 3ca1fe87..00000000 --- a/icons-metadata/photo-off-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "photo-off-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/photo-off-icon.json b/icons-metadata/photo-off-icon.json new file mode 100644 index 00000000..481ff197 --- /dev/null +++ b/icons-metadata/photo-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-off.json b/icons-metadata/photo-off.json deleted file mode 100644 index e2d96244..00000000 --- a/icons-metadata/photo-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "photo-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/photo-stack-icon.json b/icons-metadata/photo-stack-icon.json new file mode 100644 index 00000000..fd89bbd9 --- /dev/null +++ b/icons-metadata/photo-stack-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "photo-stack-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/photo-stack.json b/icons-metadata/photo-stack.json deleted file mode 100644 index 9eac568d..00000000 --- a/icons-metadata/photo-stack.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "photo-stack", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/photo.json b/icons-metadata/photo.json deleted file mode 100644 index 47847883..00000000 --- a/icons-metadata/photo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "photo", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/pinned-icon.json b/icons-metadata/pinned-icon.json new file mode 100644 index 00000000..e7373c88 --- /dev/null +++ b/icons-metadata/pinned-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "pinned-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/pinned.json b/icons-metadata/pinned.json deleted file mode 100644 index b7a2834e..00000000 --- a/icons-metadata/pinned.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "pinned", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/apple.json b/icons-metadata/play-fill-icon.json similarity index 73% rename from icons-metadata/apple.json rename to icons-metadata/play-fill-icon.json index 5e114c61..5f703ba6 100644 --- a/icons-metadata/apple.json +++ b/icons-metadata/play-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "apple", + "name": "play-fill-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/play-fill.json b/icons-metadata/play-fill.json deleted file mode 100644 index ba8969ca..00000000 --- a/icons-metadata/play-fill.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "icon_type": "fill", - "name": "play-fill", - "svg_process_option": { - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/play.json b/icons-metadata/play-icon.json similarity index 84% rename from icons-metadata/play.json rename to icons-metadata/play-icon.json index 9ea81caa..890f9d84 100644 --- a/icons-metadata/play.json +++ b/icons-metadata/play-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "play", + "name": "play-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/star - 1.json b/icons-metadata/player-icon.json similarity index 53% rename from icons-metadata/star - 1.json rename to icons-metadata/player-icon.json index 36c6a394..6e73724b 100644 --- a/icons-metadata/star - 1.json +++ b/icons-metadata/player-icon.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "star - 1" + "name": "player-icon" } \ No newline at end of file diff --git a/icons-metadata/plus-icon.json b/icons-metadata/plus-icon.json new file mode 100644 index 00000000..4ab989aa --- /dev/null +++ b/icons-metadata/plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/plus.json b/icons-metadata/plus.json deleted file mode 100644 index a542c687..00000000 --- a/icons-metadata/plus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "plus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/question-mark-icon.json b/icons-metadata/question-mark-icon.json new file mode 100644 index 00000000..37c716ff --- /dev/null +++ b/icons-metadata/question-mark-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "question-mark-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/question-mark.json b/icons-metadata/question-mark.json deleted file mode 100644 index aed1ea2c..00000000 --- a/icons-metadata/question-mark.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "question-mark", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/mood.json b/icons-metadata/recull-icon.json similarity index 56% rename from icons-metadata/mood.json rename to icons-metadata/recull-icon.json index 5b6139ee..776ca8af 100644 --- a/icons-metadata/mood.json +++ b/icons-metadata/recull-icon.json @@ -1,4 +1,4 @@ { "icon_type": "no-change", - "name": "mood" + "name": "recull-icon" } \ No newline at end of file diff --git a/icons-metadata/redeem-icon.json b/icons-metadata/redeem-icon.json new file mode 100644 index 00000000..c426e79f --- /dev/null +++ b/icons-metadata/redeem-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "redeem-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/redeem.json b/icons-metadata/redeem.json deleted file mode 100644 index a0b0c86c..00000000 --- a/icons-metadata/redeem.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "redeem", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/refresh-2-icon.json b/icons-metadata/refresh-2-icon.json new file mode 100644 index 00000000..27c20788 --- /dev/null +++ b/icons-metadata/refresh-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh-2.json b/icons-metadata/refresh-2.json deleted file mode 100644 index e2022afa..00000000 --- a/icons-metadata/refresh-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "refresh-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/refresh-alert-icon.json b/icons-metadata/refresh-alert-icon.json new file mode 100644 index 00000000..eb94bd68 --- /dev/null +++ b/icons-metadata/refresh-alert-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh-alert-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh-alert.json b/icons-metadata/refresh-alert.json deleted file mode 100644 index e43a88f7..00000000 --- a/icons-metadata/refresh-alert.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "refresh-alert", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/refresh-icon.json b/icons-metadata/refresh-icon.json new file mode 100644 index 00000000..9f4e35d0 --- /dev/null +++ b/icons-metadata/refresh-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "refresh-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/refresh.json b/icons-metadata/refresh.json deleted file mode 100644 index d5da3ff4..00000000 --- a/icons-metadata/refresh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "refresh", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/reload-alert-icon.json b/icons-metadata/reload-alert-icon.json new file mode 100644 index 00000000..a8e07355 --- /dev/null +++ b/icons-metadata/reload-alert-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "reload-alert-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/reload-alert.json b/icons-metadata/reload-alert.json deleted file mode 100644 index c42413e8..00000000 --- a/icons-metadata/reload-alert.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "reload-alert", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/rotate-clockwise-icon.json b/icons-metadata/rotate-clockwise-icon.json new file mode 100644 index 00000000..5781a401 --- /dev/null +++ b/icons-metadata/rotate-clockwise-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate-clockwise-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate-clockwise.json b/icons-metadata/rotate-clockwise.json deleted file mode 100644 index 2347cd30..00000000 --- a/icons-metadata/rotate-clockwise.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "rotate-clockwise", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/rotate-icon.json b/icons-metadata/rotate-icon.json new file mode 100644 index 00000000..a34622f6 --- /dev/null +++ b/icons-metadata/rotate-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate.json b/icons-metadata/rotate.json deleted file mode 100644 index b967fb69..00000000 --- a/icons-metadata/rotate.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "rotate", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/folder-fill.json b/icons-metadata/scissors-icon.json similarity index 54% rename from icons-metadata/folder-fill.json rename to icons-metadata/scissors-icon.json index 7ee05eee..3a0db502 100644 --- a/icons-metadata/folder-fill.json +++ b/icons-metadata/scissors-icon.json @@ -1,4 +1,4 @@ { "icon_type": "no-change", - "name": "folder-fill" + "name": "scissors-icon" } \ No newline at end of file diff --git a/icons-metadata/scissors.json b/icons-metadata/scissors.json deleted file mode 100644 index 116b7e4e..00000000 --- a/icons-metadata/scissors.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "scissors" -} \ No newline at end of file diff --git a/icons-metadata/search-icon.json b/icons-metadata/search-icon.json new file mode 100644 index 00000000..d4a83a6b --- /dev/null +++ b/icons-metadata/search-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "search-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/search.json b/icons-metadata/search.json deleted file mode 100644 index 014bf4d7..00000000 --- a/icons-metadata/search.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "search", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/share-icon.json b/icons-metadata/share-icon.json new file mode 100644 index 00000000..b8029d27 --- /dev/null +++ b/icons-metadata/share-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "share-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/share.json b/icons-metadata/share.json deleted file mode 100644 index a8818fa4..00000000 --- a/icons-metadata/share.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "share", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/shopping-cart-discount-icon.json b/icons-metadata/shopping-cart-discount-icon.json new file mode 100644 index 00000000..54b6d47e --- /dev/null +++ b/icons-metadata/shopping-cart-discount-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "shopping-cart-discount-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/shopping-cart-discount.json b/icons-metadata/shopping-cart-discount.json deleted file mode 100644 index 5f2ffab7..00000000 --- a/icons-metadata/shopping-cart-discount.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "shopping-cart-discount", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/shopping-cart-icon.json b/icons-metadata/shopping-cart-icon.json new file mode 100644 index 00000000..6f410200 --- /dev/null +++ b/icons-metadata/shopping-cart-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "shopping-cart-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/shopping-cart.json b/icons-metadata/shopping-cart.json deleted file mode 100644 index 55273432..00000000 --- a/icons-metadata/shopping-cart.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "shopping-cart", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-2-icon.json b/icons-metadata/sort-ascending-2-icon.json new file mode 100644 index 00000000..efc2076f --- /dev/null +++ b/icons-metadata/sort-ascending-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-2.json b/icons-metadata/sort-ascending-2.json deleted file mode 100644 index 3967c569..00000000 --- a/icons-metadata/sort-ascending-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-ascending-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-icon.json b/icons-metadata/sort-ascending-icon.json new file mode 100644 index 00000000..442ac7c3 --- /dev/null +++ b/icons-metadata/sort-ascending-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-letters-icon.json b/icons-metadata/sort-ascending-letters-icon.json new file mode 100644 index 00000000..dd6b3355 --- /dev/null +++ b/icons-metadata/sort-ascending-letters-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-letters-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-letters.json b/icons-metadata/sort-ascending-letters.json deleted file mode 100644 index 64ed0542..00000000 --- a/icons-metadata/sort-ascending-letters.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-ascending-letters", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-numbers-icon.json b/icons-metadata/sort-ascending-numbers-icon.json new file mode 100644 index 00000000..fb5e1a8d --- /dev/null +++ b/icons-metadata/sort-ascending-numbers-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-ascending-numbers-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-ascending-numbers.json b/icons-metadata/sort-ascending-numbers.json deleted file mode 100644 index f867ab45..00000000 --- a/icons-metadata/sort-ascending-numbers.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-ascending-numbers", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-ascending.json b/icons-metadata/sort-ascending.json deleted file mode 100644 index 1a22e52d..00000000 --- a/icons-metadata/sort-ascending.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-ascending", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-descending-2-icon.json b/icons-metadata/sort-descending-2-icon.json new file mode 100644 index 00000000..07fe4daa --- /dev/null +++ b/icons-metadata/sort-descending-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-2.json b/icons-metadata/sort-descending-2.json deleted file mode 100644 index 12d03a76..00000000 --- a/icons-metadata/sort-descending-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-descending-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-descending-icon.json b/icons-metadata/sort-descending-icon.json new file mode 100644 index 00000000..18dbfd23 --- /dev/null +++ b/icons-metadata/sort-descending-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-letters-icon.json b/icons-metadata/sort-descending-letters-icon.json new file mode 100644 index 00000000..cf0492de --- /dev/null +++ b/icons-metadata/sort-descending-letters-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-letters-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-letters.json b/icons-metadata/sort-descending-letters.json deleted file mode 100644 index 8b505d34..00000000 --- a/icons-metadata/sort-descending-letters.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-descending-letters", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-descending-numbers-icon.json b/icons-metadata/sort-descending-numbers-icon.json new file mode 100644 index 00000000..7e6b297b --- /dev/null +++ b/icons-metadata/sort-descending-numbers-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "sort-descending-numbers-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-descending-numbers.json b/icons-metadata/sort-descending-numbers.json deleted file mode 100644 index 034f13f4..00000000 --- a/icons-metadata/sort-descending-numbers.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-descending-numbers", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/sort-descending.json b/icons-metadata/sort-descending.json deleted file mode 100644 index 81d49187..00000000 --- a/icons-metadata/sort-descending.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "sort-descending", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/collection.json b/icons-metadata/sparkle-icon.json similarity index 83% rename from icons-metadata/collection.json rename to icons-metadata/sparkle-icon.json index e0771f88..436d6da6 100644 --- a/icons-metadata/collection.json +++ b/icons-metadata/sparkle-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "collection", + "name": "sparkle-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/sparkle.json b/icons-metadata/sparkle.json deleted file mode 100644 index 7a37bec3..00000000 --- a/icons-metadata/sparkle.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "sparkle", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/spray-icon.json b/icons-metadata/spray-icon.json new file mode 100644 index 00000000..813e4c90 --- /dev/null +++ b/icons-metadata/spray-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "spray-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/spray.json b/icons-metadata/spray.json deleted file mode 100644 index 82d0c5e7..00000000 --- a/icons-metadata/spray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "spray", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/spray_2-icon.json b/icons-metadata/spray_2-icon.json new file mode 100644 index 00000000..16c7691f --- /dev/null +++ b/icons-metadata/spray_2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "spray_2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/spray_2.json b/icons-metadata/spray_2.json deleted file mode 100644 index cc630256..00000000 --- a/icons-metadata/spray_2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "spray_2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/stack-double-icon.json b/icons-metadata/stack-double-icon.json new file mode 100644 index 00000000..dffad09a --- /dev/null +++ b/icons-metadata/stack-double-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "stack-double-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/stack-double.json b/icons-metadata/stack-double.json deleted file mode 100644 index 37edc59b..00000000 --- a/icons-metadata/stack-double.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "stack-double", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/stack-triple-icon.json b/icons-metadata/stack-triple-icon.json new file mode 100644 index 00000000..405d9274 --- /dev/null +++ b/icons-metadata/stack-triple-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "stack-triple-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/stack-triple.json b/icons-metadata/stack-triple.json deleted file mode 100644 index 88835b08..00000000 --- a/icons-metadata/stack-triple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "stack-triple", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/atom-accent.json b/icons-metadata/star - 0-icon.json similarity index 51% rename from icons-metadata/atom-accent.json rename to icons-metadata/star - 0-icon.json index 031eb179..58b7b0bf 100644 --- a/icons-metadata/atom-accent.json +++ b/icons-metadata/star - 0-icon.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "atom-accent" + "name": "star - 0-icon" } \ No newline at end of file diff --git a/icons-metadata/player.json b/icons-metadata/star - 1-icon.json similarity index 51% rename from icons-metadata/player.json rename to icons-metadata/star - 1-icon.json index 358c1d69..3187991a 100644 --- a/icons-metadata/player.json +++ b/icons-metadata/star - 1-icon.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "player" + "name": "star - 1-icon" } \ No newline at end of file diff --git a/icons-metadata/star - 0.json b/icons-metadata/star - 2-icon.json similarity index 51% rename from icons-metadata/star - 0.json rename to icons-metadata/star - 2-icon.json index 2e28e9e3..34d0a1ac 100644 --- a/icons-metadata/star - 0.json +++ b/icons-metadata/star - 2-icon.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "star - 0" + "name": "star - 2-icon" } \ No newline at end of file diff --git a/icons-metadata/star - 2.json b/icons-metadata/star - 2.json deleted file mode 100644 index e4f6b507..00000000 --- a/icons-metadata/star - 2.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "star - 2" -} \ No newline at end of file diff --git a/icons-metadata/star - 3-icon.json b/icons-metadata/star - 3-icon.json new file mode 100644 index 00000000..623e70bd --- /dev/null +++ b/icons-metadata/star - 3-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 3-icon" +} \ No newline at end of file diff --git a/icons-metadata/star - 3.json b/icons-metadata/star - 3.json deleted file mode 100644 index f180762b..00000000 --- a/icons-metadata/star - 3.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "star - 3" -} \ No newline at end of file diff --git a/icons-metadata/star - 4-icon.json b/icons-metadata/star - 4-icon.json new file mode 100644 index 00000000..3501a808 --- /dev/null +++ b/icons-metadata/star - 4-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 4-icon" +} \ No newline at end of file diff --git a/icons-metadata/star - 4.json b/icons-metadata/star - 4.json deleted file mode 100644 index 6ef6af15..00000000 --- a/icons-metadata/star - 4.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "star - 4" -} \ No newline at end of file diff --git a/icons-metadata/star - 5-icon.json b/icons-metadata/star - 5-icon.json new file mode 100644 index 00000000..e8704ecd --- /dev/null +++ b/icons-metadata/star - 5-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "star - 5-icon" +} \ No newline at end of file diff --git a/icons-metadata/star - 5.json b/icons-metadata/star - 5.json deleted file mode 100644 index 9e8ce8d8..00000000 --- a/icons-metadata/star - 5.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "star - 5" -} \ No newline at end of file diff --git a/icons-metadata/flag-fill.json b/icons-metadata/star-fill-icon.json similarity index 81% rename from icons-metadata/flag-fill.json rename to icons-metadata/star-fill-icon.json index dcc79f8a..9ae71518 100644 --- a/icons-metadata/flag-fill.json +++ b/icons-metadata/star-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "mix", - "name": "flag-fill", + "name": "star-fill-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/star-fill-off-icon.json b/icons-metadata/star-fill-off-icon.json new file mode 100644 index 00000000..6d6eaca8 --- /dev/null +++ b/icons-metadata/star-fill-off-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "star-fill-off-icon" +} \ No newline at end of file diff --git a/icons-metadata/star-fill-off.json b/icons-metadata/star-fill-off.json deleted file mode 100644 index 022d8fbc..00000000 --- a/icons-metadata/star-fill-off.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "star-fill-off" -} \ No newline at end of file diff --git a/icons-metadata/star-fill.json b/icons-metadata/star-fill.json deleted file mode 100644 index 70663e8a..00000000 --- a/icons-metadata/star-fill.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "star-fill", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/star-icon.json b/icons-metadata/star-icon.json new file mode 100644 index 00000000..356f64b6 --- /dev/null +++ b/icons-metadata/star-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "star-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/star-off-icon.json b/icons-metadata/star-off-icon.json new file mode 100644 index 00000000..063a5df6 --- /dev/null +++ b/icons-metadata/star-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "star-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/star-off.json b/icons-metadata/star-off.json deleted file mode 100644 index 0f653bc3..00000000 --- a/icons-metadata/star-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "star-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/star.json b/icons-metadata/star.json deleted file mode 100644 index 986919c7..00000000 --- a/icons-metadata/star.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "star", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/download-accent.json b/icons-metadata/success-di-icon.json similarity index 50% rename from icons-metadata/download-accent.json rename to icons-metadata/success-di-icon.json index ca1ec89e..525b51ee 100644 --- a/icons-metadata/download-accent.json +++ b/icons-metadata/success-di-icon.json @@ -1,4 +1,4 @@ { "icon_type": "accent", - "name": "download-accent" + "name": "success-di-icon" } \ No newline at end of file diff --git a/icons-metadata/success-di.json b/icons-metadata/success-di.json deleted file mode 100644 index f5fbac73..00000000 --- a/icons-metadata/success-di.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "success-di" -} \ No newline at end of file diff --git a/icons-metadata/thumb-down-icon.json b/icons-metadata/thumb-down-icon.json new file mode 100644 index 00000000..a085d7ce --- /dev/null +++ b/icons-metadata/thumb-down-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "thumb-down-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/thumb-down.json b/icons-metadata/thumb-down.json deleted file mode 100644 index 4076b723..00000000 --- a/icons-metadata/thumb-down.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "thumb-down", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/thumb-up-icon.json b/icons-metadata/thumb-up-icon.json new file mode 100644 index 00000000..aaf6e546 --- /dev/null +++ b/icons-metadata/thumb-up-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "thumb-up-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/thumb-up.json b/icons-metadata/thumb-up.json deleted file mode 100644 index eef2c57e..00000000 --- a/icons-metadata/thumb-up.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "thumb-up", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/trash-icon.json b/icons-metadata/trash-icon.json new file mode 100644 index 00000000..ded41627 --- /dev/null +++ b/icons-metadata/trash-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/trash-off-icon.json b/icons-metadata/trash-off-icon.json new file mode 100644 index 00000000..fa2f415f --- /dev/null +++ b/icons-metadata/trash-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/trash-off.json b/icons-metadata/trash-off.json deleted file mode 100644 index da4ce96a..00000000 --- a/icons-metadata/trash-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "trash-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/trash.json b/icons-metadata/trash.json deleted file mode 100644 index fd935268..00000000 --- a/icons-metadata/trash.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "trash", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/unlink-icon.json b/icons-metadata/unlink-icon.json new file mode 100644 index 00000000..b65f53db --- /dev/null +++ b/icons-metadata/unlink-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "unlink-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/unlink.json b/icons-metadata/unlink.json deleted file mode 100644 index e48a1337..00000000 --- a/icons-metadata/unlink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "unlink", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/upload-2-icon.json b/icons-metadata/upload-2-icon.json new file mode 100644 index 00000000..dff95a6c --- /dev/null +++ b/icons-metadata/upload-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "upload-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-2.json b/icons-metadata/upload-2.json deleted file mode 100644 index a35fedb2..00000000 --- a/icons-metadata/upload-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "upload-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/upload-accent-icon.json b/icons-metadata/upload-accent-icon.json new file mode 100644 index 00000000..1438f9ee --- /dev/null +++ b/icons-metadata/upload-accent-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "accent", + "name": "upload-accent-icon" +} \ No newline at end of file diff --git a/icons-metadata/upload-accent.json b/icons-metadata/upload-accent.json deleted file mode 100644 index 56cd7d86..00000000 --- a/icons-metadata/upload-accent.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "accent", - "name": "upload-accent" -} \ No newline at end of file diff --git a/icons-metadata/upload-c1-cat-icon.json b/icons-metadata/upload-c1-cat-icon.json new file mode 100644 index 00000000..e67b127f --- /dev/null +++ b/icons-metadata/upload-c1-cat-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-c1-cat-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-c1-cat.json b/icons-metadata/upload-c1-cat.json deleted file mode 100644 index 76f1255b..00000000 --- a/icons-metadata/upload-c1-cat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "upload-c1-cat", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/upload-icon.json b/icons-metadata/upload-icon.json new file mode 100644 index 00000000..b1eda0bb --- /dev/null +++ b/icons-metadata/upload-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "upload-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-lr-cat-icon.json b/icons-metadata/upload-lr-cat-icon.json new file mode 100644 index 00000000..d521a125 --- /dev/null +++ b/icons-metadata/upload-lr-cat-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "upload-lr-cat-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/upload-lr-cat.json b/icons-metadata/upload-lr-cat.json deleted file mode 100644 index cd184bc6..00000000 --- a/icons-metadata/upload-lr-cat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "mix", - "name": "upload-lr-cat", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "#555555" - } -} \ No newline at end of file diff --git a/icons-metadata/upload.json b/icons-metadata/upload.json deleted file mode 100644 index 38602864..00000000 --- a/icons-metadata/upload.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "upload", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-check-icon.json b/icons-metadata/user-check-icon.json new file mode 100644 index 00000000..b11892e0 --- /dev/null +++ b/icons-metadata/user-check-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-check-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-check.json b/icons-metadata/user-check.json deleted file mode 100644 index 9489a831..00000000 --- a/icons-metadata/user-check.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-check", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-exclamation-icon.json b/icons-metadata/user-exclamation-icon.json new file mode 100644 index 00000000..3a0c59cc --- /dev/null +++ b/icons-metadata/user-exclamation-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-exclamation-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-exclamation.json b/icons-metadata/user-exclamation.json deleted file mode 100644 index d1bb2a43..00000000 --- a/icons-metadata/user-exclamation.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-exclamation", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-icon.json b/icons-metadata/user-icon.json new file mode 100644 index 00000000..9d9b166f --- /dev/null +++ b/icons-metadata/user-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-minus-icon.json b/icons-metadata/user-minus-icon.json new file mode 100644 index 00000000..14f4e6c9 --- /dev/null +++ b/icons-metadata/user-minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-minus.json b/icons-metadata/user-minus.json deleted file mode 100644 index 1d81957e..00000000 --- a/icons-metadata/user-minus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-minus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-off-icon.json b/icons-metadata/user-off-icon.json new file mode 100644 index 00000000..1791fe75 --- /dev/null +++ b/icons-metadata/user-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-off.json b/icons-metadata/user-off.json deleted file mode 100644 index 83d6483f..00000000 --- a/icons-metadata/user-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-plus-icon.json b/icons-metadata/user-plus-icon.json new file mode 100644 index 00000000..517a1647 --- /dev/null +++ b/icons-metadata/user-plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-plus.json b/icons-metadata/user-plus.json deleted file mode 100644 index 2e3dbcc5..00000000 --- a/icons-metadata/user-plus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-plus", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user-x-icon.json b/icons-metadata/user-x-icon.json new file mode 100644 index 00000000..f97fbc64 --- /dev/null +++ b/icons-metadata/user-x-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "user-x-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/user-x.json b/icons-metadata/user-x.json deleted file mode 100644 index ba63afdd..00000000 --- a/icons-metadata/user-x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user-x", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/user.json b/icons-metadata/user.json deleted file mode 100644 index d7da2de0..00000000 --- a/icons-metadata/user.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "user", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/users-icon.json b/icons-metadata/users-icon.json new file mode 100644 index 00000000..98cf6d86 --- /dev/null +++ b/icons-metadata/users-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "users-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/users.json b/icons-metadata/users.json deleted file mode 100644 index dd99da9f..00000000 --- a/icons-metadata/users.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "users", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/view-all-icon.json b/icons-metadata/view-all-icon.json new file mode 100644 index 00000000..8d948542 --- /dev/null +++ b/icons-metadata/view-all-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "view-all-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/view-all.json b/icons-metadata/view-all.json deleted file mode 100644 index 04a34bdd..00000000 --- a/icons-metadata/view-all.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "view-all", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/viewfinder-icon.json b/icons-metadata/viewfinder-icon.json new file mode 100644 index 00000000..837e1eca --- /dev/null +++ b/icons-metadata/viewfinder-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "viewfinder-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/viewfinder.json b/icons-metadata/viewfinder.json deleted file mode 100644 index 9065179a..00000000 --- a/icons-metadata/viewfinder.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "viewfinder", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/wifi-1-icon.json b/icons-metadata/wifi-1-icon.json new file mode 100644 index 00000000..b09ee9b3 --- /dev/null +++ b/icons-metadata/wifi-1-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-1-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-1.json b/icons-metadata/wifi-1.json deleted file mode 100644 index f1875226..00000000 --- a/icons-metadata/wifi-1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "wifi-1", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/wifi-2-icon.json b/icons-metadata/wifi-2-icon.json new file mode 100644 index 00000000..c1fd5d9f --- /dev/null +++ b/icons-metadata/wifi-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-2.json b/icons-metadata/wifi-2.json deleted file mode 100644 index 8d74aea2..00000000 --- a/icons-metadata/wifi-2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "wifi-2", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/wifi-icon.json b/icons-metadata/wifi-icon.json new file mode 100644 index 00000000..e2633de1 --- /dev/null +++ b/icons-metadata/wifi-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-off-icon.json b/icons-metadata/wifi-off-icon.json new file mode 100644 index 00000000..d511f124 --- /dev/null +++ b/icons-metadata/wifi-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "wifi-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/wifi-off.json b/icons-metadata/wifi-off.json deleted file mode 100644 index 8014a439..00000000 --- a/icons-metadata/wifi-off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "wifi-off", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/wifi.json b/icons-metadata/wifi.json deleted file mode 100644 index 28bd9cca..00000000 --- a/icons-metadata/wifi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "wifi", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/world-icon.json b/icons-metadata/world-icon.json new file mode 100644 index 00000000..c9fd0098 --- /dev/null +++ b/icons-metadata/world-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "world-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/world.json b/icons-metadata/world.json deleted file mode 100644 index 8ff49134..00000000 --- a/icons-metadata/world.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "world", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/writing-icon.json b/icons-metadata/writing-icon.json new file mode 100644 index 00000000..9b7e4159 --- /dev/null +++ b/icons-metadata/writing-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "writing-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/writing.json b/icons-metadata/writing.json deleted file mode 100644 index 5c38553a..00000000 --- a/icons-metadata/writing.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "writing", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/Import.json b/icons-metadata/x-icon.json similarity index 86% rename from icons-metadata/Import.json rename to icons-metadata/x-icon.json index 1d426605..f76854cc 100644 --- a/icons-metadata/Import.json +++ b/icons-metadata/x-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "Import", + "name": "x-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/x.json b/icons-metadata/x.json deleted file mode 100644 index dae663ee..00000000 --- a/icons-metadata/x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "x", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/zoom-in-icon.json b/icons-metadata/zoom-in-icon.json new file mode 100644 index 00000000..f30ca478 --- /dev/null +++ b/icons-metadata/zoom-in-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-in-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-in.json b/icons-metadata/zoom-in.json deleted file mode 100644 index 211883fd..00000000 --- a/icons-metadata/zoom-in.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "zoom-in", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/zoom-out-icon.json b/icons-metadata/zoom-out-icon.json new file mode 100644 index 00000000..049bcfce --- /dev/null +++ b/icons-metadata/zoom-out-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-out-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-out.json b/icons-metadata/zoom-out.json deleted file mode 100644 index bb16b59d..00000000 --- a/icons-metadata/zoom-out.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "zoom-out", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-metadata/zoom-question-icon.json b/icons-metadata/zoom-question-icon.json new file mode 100644 index 00000000..c1462c7c --- /dev/null +++ b/icons-metadata/zoom-question-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "zoom-question-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/zoom-question.json b/icons-metadata/zoom-question.json deleted file mode 100644 index 684919dc..00000000 --- a/icons-metadata/zoom-question.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "icon_type": "outline", - "name": "zoom-question", - "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" - } -} \ No newline at end of file diff --git a/icons-optimized/Import.svg b/icons-optimized/Import-icon.svg similarity index 100% rename from icons-optimized/Import.svg rename to icons-optimized/Import-icon.svg diff --git a/icons-optimized/adjustments-horizontal.svg b/icons-optimized/adjustments-horizontal-icon.svg similarity index 100% rename from icons-optimized/adjustments-horizontal.svg rename to icons-optimized/adjustments-horizontal-icon.svg diff --git a/icons-optimized/adjustments.svg b/icons-optimized/adjustments-icon.svg similarity index 100% rename from icons-optimized/adjustments.svg rename to icons-optimized/adjustments-icon.svg diff --git a/icons-optimized/aftershoot-credit.svg b/icons-optimized/aftershoot-credit-icon.svg similarity index 100% rename from icons-optimized/aftershoot-credit.svg rename to icons-optimized/aftershoot-credit-icon.svg diff --git a/icons-optimized/aftershoot-logo.svg b/icons-optimized/aftershoot-logo-icon.svg similarity index 100% rename from icons-optimized/aftershoot-logo.svg rename to icons-optimized/aftershoot-logo-icon.svg diff --git a/icons-optimized/alarm.svg b/icons-optimized/alarm-icon.svg similarity index 100% rename from icons-optimized/alarm.svg rename to icons-optimized/alarm-icon.svg diff --git a/icons-optimized/alert-circle-accent.svg b/icons-optimized/alert-circle-accent-icon.svg similarity index 100% rename from icons-optimized/alert-circle-accent.svg rename to icons-optimized/alert-circle-accent-icon.svg diff --git a/icons-optimized/alert-circle.svg b/icons-optimized/alert-circle-icon.svg similarity index 100% rename from icons-optimized/alert-circle.svg rename to icons-optimized/alert-circle-icon.svg diff --git a/icons-optimized/alert-octagon.svg b/icons-optimized/alert-octagon-icon.svg similarity index 100% rename from icons-optimized/alert-octagon.svg rename to icons-optimized/alert-octagon-icon.svg diff --git a/icons-optimized/alert-triangle-accent.svg b/icons-optimized/alert-triangle-accent-icon.svg similarity index 100% rename from icons-optimized/alert-triangle-accent.svg rename to icons-optimized/alert-triangle-accent-icon.svg diff --git a/icons-optimized/alert-triangle.svg b/icons-optimized/alert-triangle-icon.svg similarity index 100% rename from icons-optimized/alert-triangle.svg rename to icons-optimized/alert-triangle-icon.svg diff --git a/icons-optimized/apple.svg b/icons-optimized/apple-icon.svg similarity index 100% rename from icons-optimized/apple.svg rename to icons-optimized/apple-icon.svg diff --git a/icons-optimized/arrow-curve-fill.svg b/icons-optimized/arrow-curve-fill-icon.svg similarity index 100% rename from icons-optimized/arrow-curve-fill.svg rename to icons-optimized/arrow-curve-fill-icon.svg diff --git a/icons-optimized/arrow-down.svg b/icons-optimized/arrow-down-icon.svg similarity index 100% rename from icons-optimized/arrow-down.svg rename to icons-optimized/arrow-down-icon.svg diff --git a/icons-optimized/arrow-left.svg b/icons-optimized/arrow-left-icon.svg similarity index 100% rename from icons-optimized/arrow-left.svg rename to icons-optimized/arrow-left-icon.svg diff --git a/icons-optimized/arrow-narrow-left.svg b/icons-optimized/arrow-narrow-left-icon.svg similarity index 100% rename from icons-optimized/arrow-narrow-left.svg rename to icons-optimized/arrow-narrow-left-icon.svg diff --git a/icons-optimized/arrow-narrow-right.svg b/icons-optimized/arrow-narrow-right-icon.svg similarity index 100% rename from icons-optimized/arrow-narrow-right.svg rename to icons-optimized/arrow-narrow-right-icon.svg diff --git a/icons-optimized/arrow-right.svg b/icons-optimized/arrow-right-icon.svg similarity index 100% rename from icons-optimized/arrow-right.svg rename to icons-optimized/arrow-right-icon.svg diff --git a/icons-optimized/arrow-sort-2.svg b/icons-optimized/arrow-sort-2-icon.svg similarity index 100% rename from icons-optimized/arrow-sort-2.svg rename to icons-optimized/arrow-sort-2-icon.svg diff --git a/icons-optimized/arrow-up.svg b/icons-optimized/arrow-up-icon.svg similarity index 100% rename from icons-optimized/arrow-up.svg rename to icons-optimized/arrow-up-icon.svg diff --git a/icons-optimized/arrows-diagonal.svg b/icons-optimized/arrows-diagonal-icon.svg similarity index 100% rename from icons-optimized/arrows-diagonal.svg rename to icons-optimized/arrows-diagonal-icon.svg diff --git a/icons-optimized/arrows-sort.svg b/icons-optimized/arrows-sort-icon.svg similarity index 100% rename from icons-optimized/arrows-sort.svg rename to icons-optimized/arrows-sort-icon.svg diff --git a/icons-optimized/atom-accent.svg b/icons-optimized/atom-accent-icon.svg similarity index 100% rename from icons-optimized/atom-accent.svg rename to icons-optimized/atom-accent-icon.svg diff --git a/icons-optimized/atom.svg b/icons-optimized/atom-icon.svg similarity index 100% rename from icons-optimized/atom.svg rename to icons-optimized/atom-icon.svg diff --git a/icons-optimized/ban.svg b/icons-optimized/ban-icon.svg similarity index 100% rename from icons-optimized/ban.svg rename to icons-optimized/ban-icon.svg diff --git a/icons-optimized/bell.svg b/icons-optimized/bell-icon.svg similarity index 100% rename from icons-optimized/bell.svg rename to icons-optimized/bell-icon.svg diff --git a/icons-optimized/bell-minus.svg b/icons-optimized/bell-minus-icon.svg similarity index 100% rename from icons-optimized/bell-minus.svg rename to icons-optimized/bell-minus-icon.svg diff --git a/icons-optimized/bell-off.svg b/icons-optimized/bell-off-icon.svg similarity index 100% rename from icons-optimized/bell-off.svg rename to icons-optimized/bell-off-icon.svg diff --git a/icons-optimized/bell-plus.svg b/icons-optimized/bell-plus-icon.svg similarity index 100% rename from icons-optimized/bell-plus.svg rename to icons-optimized/bell-plus-icon.svg diff --git a/icons-optimized/bell-ringing-2.svg b/icons-optimized/bell-ringing-2-icon.svg similarity index 100% rename from icons-optimized/bell-ringing-2.svg rename to icons-optimized/bell-ringing-2-icon.svg diff --git a/icons-optimized/bell-ringing.svg b/icons-optimized/bell-ringing-icon.svg similarity index 100% rename from icons-optimized/bell-ringing.svg rename to icons-optimized/bell-ringing-icon.svg diff --git a/icons-optimized/bell-x.svg b/icons-optimized/bell-x-icon.svg similarity index 100% rename from icons-optimized/bell-x.svg rename to icons-optimized/bell-x-icon.svg diff --git a/icons-optimized/brand-facebook.svg b/icons-optimized/brand-facebook-icon.svg similarity index 100% rename from icons-optimized/brand-facebook.svg rename to icons-optimized/brand-facebook-icon.svg diff --git a/icons-optimized/brand-github.svg b/icons-optimized/brand-github-icon.svg similarity index 100% rename from icons-optimized/brand-github.svg rename to icons-optimized/brand-github-icon.svg diff --git a/icons-optimized/brand-instagram.svg b/icons-optimized/brand-instagram-icon.svg similarity index 100% rename from icons-optimized/brand-instagram.svg rename to icons-optimized/brand-instagram-icon.svg diff --git a/icons-optimized/brand-twitter.svg b/icons-optimized/brand-twitter-icon.svg similarity index 100% rename from icons-optimized/brand-twitter.svg rename to icons-optimized/brand-twitter-icon.svg diff --git a/icons-optimized/brand-whatsapp.svg b/icons-optimized/brand-whatsapp-icon.svg similarity index 100% rename from icons-optimized/brand-whatsapp.svg rename to icons-optimized/brand-whatsapp-icon.svg diff --git a/icons-optimized/brand-youtube.svg b/icons-optimized/brand-youtube-icon.svg similarity index 100% rename from icons-optimized/brand-youtube.svg rename to icons-optimized/brand-youtube-icon.svg diff --git a/icons-optimized/bulb.svg b/icons-optimized/bulb-icon.svg similarity index 100% rename from icons-optimized/bulb.svg rename to icons-optimized/bulb-icon.svg diff --git a/icons-optimized/bulb-off.svg b/icons-optimized/bulb-off-icon.svg similarity index 100% rename from icons-optimized/bulb-off.svg rename to icons-optimized/bulb-off-icon.svg diff --git a/icons-optimized/check-box-empty.svg b/icons-optimized/check-box-empty-icon.svg similarity index 100% rename from icons-optimized/check-box-empty.svg rename to icons-optimized/check-box-empty-icon.svg diff --git a/icons-optimized/check.svg b/icons-optimized/check-icon.svg similarity index 100% rename from icons-optimized/check.svg rename to icons-optimized/check-icon.svg diff --git a/icons-optimized/checkbox-blue-accent.svg b/icons-optimized/checkbox-blue-accent-icon.svg similarity index 100% rename from icons-optimized/checkbox-blue-accent.svg rename to icons-optimized/checkbox-blue-accent-icon.svg diff --git a/icons-optimized/checkbox-green-accent.svg b/icons-optimized/checkbox-green-accent-icon.svg similarity index 100% rename from icons-optimized/checkbox-green-accent.svg rename to icons-optimized/checkbox-green-accent-icon.svg diff --git a/icons-optimized/checkbox-partial-blue-accent.svg b/icons-optimized/checkbox-partial-blue-accent-icon.svg similarity index 100% rename from icons-optimized/checkbox-partial-blue-accent.svg rename to icons-optimized/checkbox-partial-blue-accent-icon.svg diff --git a/icons-optimized/chevron-down.svg b/icons-optimized/chevron-down-icon.svg similarity index 100% rename from icons-optimized/chevron-down.svg rename to icons-optimized/chevron-down-icon.svg diff --git a/icons-optimized/chevron-left.svg b/icons-optimized/chevron-left-icon.svg similarity index 100% rename from icons-optimized/chevron-left.svg rename to icons-optimized/chevron-left-icon.svg diff --git a/icons-optimized/chevron-right.svg b/icons-optimized/chevron-right-icon.svg similarity index 100% rename from icons-optimized/chevron-right.svg rename to icons-optimized/chevron-right-icon.svg diff --git a/icons-optimized/chevron-up.svg b/icons-optimized/chevron-up-icon.svg similarity index 100% rename from icons-optimized/chevron-up.svg rename to icons-optimized/chevron-up-icon.svg diff --git a/icons-optimized/chevrons-left.svg b/icons-optimized/chevrons-left-icon.svg similarity index 100% rename from icons-optimized/chevrons-left.svg rename to icons-optimized/chevrons-left-icon.svg diff --git a/icons-optimized/chevrons-right.svg b/icons-optimized/chevrons-right-icon.svg similarity index 100% rename from icons-optimized/chevrons-right.svg rename to icons-optimized/chevrons-right-icon.svg diff --git a/icons-optimized/circle-check-2.svg b/icons-optimized/circle-check-2-icon.svg similarity index 100% rename from icons-optimized/circle-check-2.svg rename to icons-optimized/circle-check-2-icon.svg diff --git a/icons-optimized/circle-check.svg b/icons-optimized/circle-check-icon.svg similarity index 100% rename from icons-optimized/circle-check.svg rename to icons-optimized/circle-check-icon.svg diff --git a/icons-optimized/circle-cross-accent.svg b/icons-optimized/circle-cross-accent-icon.svg similarity index 100% rename from icons-optimized/circle-cross-accent.svg rename to icons-optimized/circle-cross-accent-icon.svg diff --git a/icons-optimized/circle-fill.svg b/icons-optimized/circle-fill-icon.svg similarity index 100% rename from icons-optimized/circle-fill.svg rename to icons-optimized/circle-fill-icon.svg diff --git a/icons-optimized/circle.svg b/icons-optimized/circle-icon.svg similarity index 100% rename from icons-optimized/circle.svg rename to icons-optimized/circle-icon.svg diff --git a/icons-optimized/clock.svg b/icons-optimized/clock-icon.svg similarity index 100% rename from icons-optimized/clock.svg rename to icons-optimized/clock-icon.svg diff --git a/icons-optimized/cloud-upload-accent.svg b/icons-optimized/cloud-upload-accent-icon.svg similarity index 100% rename from icons-optimized/cloud-upload-accent.svg rename to icons-optimized/cloud-upload-accent-icon.svg diff --git a/icons-optimized/cloud-upload.svg b/icons-optimized/cloud-upload-icon.svg similarity index 100% rename from icons-optimized/cloud-upload.svg rename to icons-optimized/cloud-upload-icon.svg diff --git a/icons-optimized/collection.svg b/icons-optimized/collection-icon.svg similarity index 100% rename from icons-optimized/collection.svg rename to icons-optimized/collection-icon.svg diff --git a/icons-optimized/color-swatch.svg b/icons-optimized/color-swatch-icon.svg similarity index 100% rename from icons-optimized/color-swatch.svg rename to icons-optimized/color-swatch-icon.svg diff --git a/icons-optimized/confetti.svg b/icons-optimized/confetti-icon.svg similarity index 100% rename from icons-optimized/confetti.svg rename to icons-optimized/confetti-icon.svg diff --git a/icons-optimized/copy.svg b/icons-optimized/copy-icon.svg similarity index 100% rename from icons-optimized/copy.svg rename to icons-optimized/copy-icon.svg diff --git a/icons-optimized/crown-2-fill.svg b/icons-optimized/crown-2-fill-icon.svg similarity index 100% rename from icons-optimized/crown-2-fill.svg rename to icons-optimized/crown-2-fill-icon.svg diff --git a/icons-optimized/crown.svg b/icons-optimized/crown-icon.svg similarity index 100% rename from icons-optimized/crown.svg rename to icons-optimized/crown-icon.svg diff --git a/icons-optimized/currency-dollar.svg b/icons-optimized/currency-dollar-icon.svg similarity index 100% rename from icons-optimized/currency-dollar.svg rename to icons-optimized/currency-dollar-icon.svg diff --git a/icons-optimized/current-location.svg b/icons-optimized/current-location-icon.svg similarity index 100% rename from icons-optimized/current-location.svg rename to icons-optimized/current-location-icon.svg diff --git a/icons-optimized/device-desktop-analytics.svg b/icons-optimized/device-desktop-analytics-icon.svg similarity index 100% rename from icons-optimized/device-desktop-analytics.svg rename to icons-optimized/device-desktop-analytics-icon.svg diff --git a/icons-optimized/device-desktop.svg b/icons-optimized/device-desktop-icon.svg similarity index 100% rename from icons-optimized/device-desktop.svg rename to icons-optimized/device-desktop-icon.svg diff --git a/icons-optimized/device-desktop-off.svg b/icons-optimized/device-desktop-off-icon.svg similarity index 100% rename from icons-optimized/device-desktop-off.svg rename to icons-optimized/device-desktop-off-icon.svg diff --git a/icons-optimized/device-laptop.svg b/icons-optimized/device-laptop-icon.svg similarity index 100% rename from icons-optimized/device-laptop.svg rename to icons-optimized/device-laptop-icon.svg diff --git a/icons-optimized/device-tv.svg b/icons-optimized/device-tv-icon.svg similarity index 100% rename from icons-optimized/device-tv.svg rename to icons-optimized/device-tv-icon.svg diff --git a/icons-optimized/diamond.svg b/icons-optimized/diamond-icon.svg similarity index 100% rename from icons-optimized/diamond.svg rename to icons-optimized/diamond-icon.svg diff --git a/icons-optimized/discount-2.svg b/icons-optimized/discount-2-icon.svg similarity index 100% rename from icons-optimized/discount-2.svg rename to icons-optimized/discount-2-icon.svg diff --git a/icons-optimized/discount.svg b/icons-optimized/discount-icon.svg similarity index 100% rename from icons-optimized/discount.svg rename to icons-optimized/discount-icon.svg diff --git a/icons-optimized/disk.svg b/icons-optimized/disk-icon.svg similarity index 100% rename from icons-optimized/disk.svg rename to icons-optimized/disk-icon.svg diff --git a/icons-optimized/dots-vertical.svg b/icons-optimized/dots-vertical-icon.svg similarity index 100% rename from icons-optimized/dots-vertical.svg rename to icons-optimized/dots-vertical-icon.svg diff --git a/icons-optimized/download-accent.svg b/icons-optimized/download-accent-icon.svg similarity index 100% rename from icons-optimized/download-accent.svg rename to icons-optimized/download-accent-icon.svg diff --git a/icons-optimized/download.svg b/icons-optimized/download-icon.svg similarity index 100% rename from icons-optimized/download.svg rename to icons-optimized/download-icon.svg diff --git a/icons-optimized/edit-icon-icon.svg b/icons-optimized/edit-icon-icon.svg new file mode 100644 index 00000000..49525617 --- /dev/null +++ b/icons-optimized/edit-icon-icon.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/edit-icon.svg b/icons-optimized/edit-icon.svg index 49525617..f5fa609b 100644 --- a/icons-optimized/edit-icon.svg +++ b/icons-optimized/edit-icon.svg @@ -1,85 +1,12 @@ - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - + + + diff --git a/icons-optimized/edit.svg b/icons-optimized/edit.svg deleted file mode 100644 index f5fa609b..00000000 --- a/icons-optimized/edit.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons-optimized/external-link.svg b/icons-optimized/external-link-icon.svg similarity index 100% rename from icons-optimized/external-link.svg rename to icons-optimized/external-link-icon.svg diff --git a/icons-optimized/eye-check.svg b/icons-optimized/eye-check-icon.svg similarity index 100% rename from icons-optimized/eye-check.svg rename to icons-optimized/eye-check-icon.svg diff --git a/icons-optimized/eye.svg b/icons-optimized/eye-icon.svg similarity index 100% rename from icons-optimized/eye.svg rename to icons-optimized/eye-icon.svg diff --git a/icons-optimized/eye-off.svg b/icons-optimized/eye-off-icon.svg similarity index 100% rename from icons-optimized/eye-off.svg rename to icons-optimized/eye-off-icon.svg diff --git a/icons-optimized/facebook.svg b/icons-optimized/facebook-icon.svg similarity index 100% rename from icons-optimized/facebook.svg rename to icons-optimized/facebook-icon.svg diff --git a/icons-optimized/file-download.svg b/icons-optimized/file-download-icon.svg similarity index 100% rename from icons-optimized/file-download.svg rename to icons-optimized/file-download-icon.svg diff --git a/icons-optimized/file-export.svg b/icons-optimized/file-export-icon.svg similarity index 100% rename from icons-optimized/file-export.svg rename to icons-optimized/file-export-icon.svg diff --git a/icons-optimized/file-report.svg b/icons-optimized/file-report-icon.svg similarity index 100% rename from icons-optimized/file-report.svg rename to icons-optimized/file-report-icon.svg diff --git a/icons-optimized/file-search.svg b/icons-optimized/file-search-icon.svg similarity index 100% rename from icons-optimized/file-search.svg rename to icons-optimized/file-search-icon.svg diff --git a/icons-optimized/filter.svg b/icons-optimized/filter-icon.svg similarity index 100% rename from icons-optimized/filter.svg rename to icons-optimized/filter-icon.svg diff --git a/icons-optimized/filter-off.svg b/icons-optimized/filter-off-icon.svg similarity index 100% rename from icons-optimized/filter-off.svg rename to icons-optimized/filter-off-icon.svg diff --git a/icons-optimized/flag-fill.svg b/icons-optimized/flag-fill-icon.svg similarity index 100% rename from icons-optimized/flag-fill.svg rename to icons-optimized/flag-fill-icon.svg diff --git a/icons-optimized/flag.svg b/icons-optimized/flag-icon.svg similarity index 100% rename from icons-optimized/flag.svg rename to icons-optimized/flag-icon.svg diff --git a/icons-optimized/flag-off.svg b/icons-optimized/flag-off-icon.svg similarity index 100% rename from icons-optimized/flag-off.svg rename to icons-optimized/flag-off-icon.svg diff --git a/icons-optimized/folder-download.svg b/icons-optimized/folder-download-icon.svg similarity index 100% rename from icons-optimized/folder-download.svg rename to icons-optimized/folder-download-icon.svg diff --git a/icons-optimized/folder-eye.svg b/icons-optimized/folder-eye-icon.svg similarity index 100% rename from icons-optimized/folder-eye.svg rename to icons-optimized/folder-eye-icon.svg diff --git a/icons-optimized/folder-fill.svg b/icons-optimized/folder-fill-icon.svg similarity index 100% rename from icons-optimized/folder-fill.svg rename to icons-optimized/folder-fill-icon.svg diff --git a/icons-optimized/folder.svg b/icons-optimized/folder-icon.svg similarity index 100% rename from icons-optimized/folder.svg rename to icons-optimized/folder-icon.svg diff --git a/icons-optimized/folder-minus.svg b/icons-optimized/folder-minus-icon.svg similarity index 100% rename from icons-optimized/folder-minus.svg rename to icons-optimized/folder-minus-icon.svg diff --git a/icons-optimized/folder-off.svg b/icons-optimized/folder-off-icon.svg similarity index 100% rename from icons-optimized/folder-off.svg rename to icons-optimized/folder-off-icon.svg diff --git a/icons-optimized/folder-plus.svg b/icons-optimized/folder-plus-icon.svg similarity index 100% rename from icons-optimized/folder-plus.svg rename to icons-optimized/folder-plus-icon.svg diff --git a/icons-optimized/folder-upload.svg b/icons-optimized/folder-upload-icon.svg similarity index 100% rename from icons-optimized/folder-upload.svg rename to icons-optimized/folder-upload-icon.svg diff --git a/icons-optimized/folder-x.svg b/icons-optimized/folder-x-icon.svg similarity index 100% rename from icons-optimized/folder-x.svg rename to icons-optimized/folder-x-icon.svg diff --git a/icons-optimized/folders.svg b/icons-optimized/folders-icon.svg similarity index 100% rename from icons-optimized/folders.svg rename to icons-optimized/folders-icon.svg diff --git a/icons-optimized/google-color.svg b/icons-optimized/google-color-icon.svg similarity index 100% rename from icons-optimized/google-color.svg rename to icons-optimized/google-color-icon.svg diff --git a/icons-optimized/grab-hand.svg b/icons-optimized/grab-hand-icon.svg similarity index 100% rename from icons-optimized/grab-hand.svg rename to icons-optimized/grab-hand-icon.svg diff --git a/icons-optimized/grid-dots.svg b/icons-optimized/grid-dots-icon.svg similarity index 100% rename from icons-optimized/grid-dots.svg rename to icons-optimized/grid-dots-icon.svg diff --git a/icons-optimized/grid-view-1.svg b/icons-optimized/grid-view-1-icon.svg similarity index 100% rename from icons-optimized/grid-view-1.svg rename to icons-optimized/grid-view-1-icon.svg diff --git a/icons-optimized/grid-view-2.svg b/icons-optimized/grid-view-2-icon.svg similarity index 100% rename from icons-optimized/grid-view-2.svg rename to icons-optimized/grid-view-2-icon.svg diff --git a/icons-optimized/home-2.svg b/icons-optimized/home-2-icon.svg similarity index 87% rename from icons-optimized/home-2.svg rename to icons-optimized/home-2-icon.svg index 742b5e3c..b8075582 100644 --- a/icons-optimized/home-2.svg +++ b/icons-optimized/home-2-icon.svg @@ -1,14 +1,6 @@ - + diff --git a/icons-optimized/home-mix.svg b/icons-optimized/home-icon.svg similarity index 100% rename from icons-optimized/home-mix.svg rename to icons-optimized/home-icon.svg diff --git a/icons-optimized/image-border.svg b/icons-optimized/image-border-icon.svg similarity index 100% rename from icons-optimized/image-border.svg rename to icons-optimized/image-border-icon.svg diff --git a/icons-optimized/info-circle.svg b/icons-optimized/info-circle-icon.svg similarity index 100% rename from icons-optimized/info-circle.svg rename to icons-optimized/info-circle-icon.svg diff --git a/icons-optimized/info-cirlce-2.svg b/icons-optimized/info-cirlce-2-icon.svg similarity index 100% rename from icons-optimized/info-cirlce-2.svg rename to icons-optimized/info-cirlce-2-icon.svg diff --git a/icons-optimized/info.svg b/icons-optimized/info-icon.svg similarity index 100% rename from icons-optimized/info.svg rename to icons-optimized/info-icon.svg diff --git a/icons-optimized/info-square.svg b/icons-optimized/info-square-icon.svg similarity index 100% rename from icons-optimized/info-square.svg rename to icons-optimized/info-square-icon.svg diff --git a/icons-optimized/key-2.svg b/icons-optimized/key-2-icon.svg similarity index 100% rename from icons-optimized/key-2.svg rename to icons-optimized/key-2-icon.svg diff --git a/icons-optimized/key-duplicate.svg b/icons-optimized/key-duplicate-icon.svg similarity index 100% rename from icons-optimized/key-duplicate.svg rename to icons-optimized/key-duplicate-icon.svg diff --git a/icons-optimized/key.svg b/icons-optimized/key-icon.svg similarity index 100% rename from icons-optimized/key.svg rename to icons-optimized/key-icon.svg diff --git a/icons-optimized/layout-sidebar-right-mix.svg b/icons-optimized/layout-sidebar-right-mix-icon.svg similarity index 100% rename from icons-optimized/layout-sidebar-right-mix.svg rename to icons-optimized/layout-sidebar-right-mix-icon.svg diff --git a/icons-optimized/link.svg b/icons-optimized/link-icon.svg similarity index 100% rename from icons-optimized/link.svg rename to icons-optimized/link-icon.svg diff --git a/icons-optimized/list-fill.svg b/icons-optimized/list-fill-icon.svg similarity index 100% rename from icons-optimized/list-fill.svg rename to icons-optimized/list-fill-icon.svg diff --git a/icons-optimized/loader.svg b/icons-optimized/loader-icon.svg similarity index 100% rename from icons-optimized/loader.svg rename to icons-optimized/loader-icon.svg diff --git a/icons-optimized/lock-2.svg b/icons-optimized/lock-2-icon.svg similarity index 100% rename from icons-optimized/lock-2.svg rename to icons-optimized/lock-2-icon.svg diff --git a/icons-optimized/lock.svg b/icons-optimized/lock-icon.svg similarity index 100% rename from icons-optimized/lock.svg rename to icons-optimized/lock-icon.svg diff --git a/icons-optimized/lock-off.svg b/icons-optimized/lock-off-icon.svg similarity index 100% rename from icons-optimized/lock-off.svg rename to icons-optimized/lock-off-icon.svg diff --git a/icons-optimized/lock-open.svg b/icons-optimized/lock-open-icon.svg similarity index 100% rename from icons-optimized/lock-open.svg rename to icons-optimized/lock-open-icon.svg diff --git a/icons-optimized/loop.svg b/icons-optimized/loop-icon.svg similarity index 100% rename from icons-optimized/loop.svg rename to icons-optimized/loop-icon.svg diff --git a/icons-optimized/loupe-fill.svg b/icons-optimized/loupe-fill-icon.svg similarity index 100% rename from icons-optimized/loupe-fill.svg rename to icons-optimized/loupe-fill-icon.svg diff --git a/icons-optimized/mail.svg b/icons-optimized/mail-icon.svg similarity index 100% rename from icons-optimized/mail.svg rename to icons-optimized/mail-icon.svg diff --git a/icons-optimized/map-2.svg b/icons-optimized/map-2-icon.svg similarity index 100% rename from icons-optimized/map-2.svg rename to icons-optimized/map-2-icon.svg diff --git a/icons-optimized/map-pin.svg b/icons-optimized/map-pin-icon.svg similarity index 100% rename from icons-optimized/map-pin.svg rename to icons-optimized/map-pin-icon.svg diff --git a/icons-optimized/map-pin-off.svg b/icons-optimized/map-pin-off-icon.svg similarity index 100% rename from icons-optimized/map-pin-off.svg rename to icons-optimized/map-pin-off-icon.svg diff --git a/icons-optimized/minus.svg b/icons-optimized/minus-icon.svg similarity index 100% rename from icons-optimized/minus.svg rename to icons-optimized/minus-icon.svg diff --git a/icons-optimized/mood-crazy-happy.svg b/icons-optimized/mood-crazy-happy-icon.svg similarity index 100% rename from icons-optimized/mood-crazy-happy.svg rename to icons-optimized/mood-crazy-happy-icon.svg diff --git a/icons-optimized/mood-empty.svg b/icons-optimized/mood-empty-icon.svg similarity index 100% rename from icons-optimized/mood-empty.svg rename to icons-optimized/mood-empty-icon.svg diff --git a/icons-optimized/mood-gray.svg b/icons-optimized/mood-gray-icon.svg similarity index 100% rename from icons-optimized/mood-gray.svg rename to icons-optimized/mood-gray-icon.svg diff --git a/icons-optimized/mood.svg b/icons-optimized/mood-icon.svg similarity index 100% rename from icons-optimized/mood.svg rename to icons-optimized/mood-icon.svg diff --git a/icons-optimized/mood-sad.svg b/icons-optimized/mood-sad-icon.svg similarity index 100% rename from icons-optimized/mood-sad.svg rename to icons-optimized/mood-sad-icon.svg diff --git a/icons-optimized/mood-smile.svg b/icons-optimized/mood-smile-icon.svg similarity index 100% rename from icons-optimized/mood-smile.svg rename to icons-optimized/mood-smile-icon.svg diff --git a/icons-optimized/mouse-left-2.svg b/icons-optimized/mouse-left-2-icon.svg similarity index 100% rename from icons-optimized/mouse-left-2.svg rename to icons-optimized/mouse-left-2-icon.svg diff --git a/icons-optimized/mouse-left.svg b/icons-optimized/mouse-left-icon.svg similarity index 100% rename from icons-optimized/mouse-left.svg rename to icons-optimized/mouse-left-icon.svg diff --git a/icons-optimized/mouse-right.svg b/icons-optimized/mouse-right-icon.svg similarity index 100% rename from icons-optimized/mouse-right.svg rename to icons-optimized/mouse-right-icon.svg diff --git a/icons-optimized/no-duplicate.svg b/icons-optimized/no-duplicate-icon.svg similarity index 100% rename from icons-optimized/no-duplicate.svg rename to icons-optimized/no-duplicate-icon.svg diff --git a/icons-optimized/none-selected.svg b/icons-optimized/none-selected-icon.svg similarity index 100% rename from icons-optimized/none-selected.svg rename to icons-optimized/none-selected-icon.svg diff --git a/icons-optimized/palette-fill.svg b/icons-optimized/palette-fill-icon.svg similarity index 100% rename from icons-optimized/palette-fill.svg rename to icons-optimized/palette-fill-icon.svg diff --git a/icons-optimized/palette.svg b/icons-optimized/palette-icon.svg similarity index 100% rename from icons-optimized/palette.svg rename to icons-optimized/palette-icon.svg diff --git a/icons-optimized/pause-fill.svg b/icons-optimized/pause-fill-icon.svg similarity index 100% rename from icons-optimized/pause-fill.svg rename to icons-optimized/pause-fill-icon.svg diff --git a/icons-optimized/photo.svg b/icons-optimized/photo-icon.svg similarity index 100% rename from icons-optimized/photo.svg rename to icons-optimized/photo-icon.svg diff --git a/icons-optimized/photo-off-2.svg b/icons-optimized/photo-off-2-icon.svg similarity index 100% rename from icons-optimized/photo-off-2.svg rename to icons-optimized/photo-off-2-icon.svg diff --git a/icons-optimized/photo-off.svg b/icons-optimized/photo-off-icon.svg similarity index 100% rename from icons-optimized/photo-off.svg rename to icons-optimized/photo-off-icon.svg diff --git a/icons-optimized/photo-stack.svg b/icons-optimized/photo-stack-icon.svg similarity index 100% rename from icons-optimized/photo-stack.svg rename to icons-optimized/photo-stack-icon.svg diff --git a/icons-optimized/pinned.svg b/icons-optimized/pinned-icon.svg similarity index 100% rename from icons-optimized/pinned.svg rename to icons-optimized/pinned-icon.svg diff --git a/icons-optimized/play-fill.svg b/icons-optimized/play-fill-icon.svg similarity index 100% rename from icons-optimized/play-fill.svg rename to icons-optimized/play-fill-icon.svg diff --git a/icons-optimized/play.svg b/icons-optimized/play-icon.svg similarity index 100% rename from icons-optimized/play.svg rename to icons-optimized/play-icon.svg diff --git a/icons-optimized/player.svg b/icons-optimized/player-icon.svg similarity index 100% rename from icons-optimized/player.svg rename to icons-optimized/player-icon.svg diff --git a/icons-optimized/plus.svg b/icons-optimized/plus-icon.svg similarity index 100% rename from icons-optimized/plus.svg rename to icons-optimized/plus-icon.svg diff --git a/icons-optimized/question-mark.svg b/icons-optimized/question-mark-icon.svg similarity index 100% rename from icons-optimized/question-mark.svg rename to icons-optimized/question-mark-icon.svg diff --git a/icons-optimized/recull.svg b/icons-optimized/recull-icon.svg similarity index 100% rename from icons-optimized/recull.svg rename to icons-optimized/recull-icon.svg diff --git a/icons-optimized/redeem.svg b/icons-optimized/redeem-icon.svg similarity index 100% rename from icons-optimized/redeem.svg rename to icons-optimized/redeem-icon.svg diff --git a/icons-optimized/refresh-2.svg b/icons-optimized/refresh-2-icon.svg similarity index 100% rename from icons-optimized/refresh-2.svg rename to icons-optimized/refresh-2-icon.svg diff --git a/icons-optimized/refresh-alert.svg b/icons-optimized/refresh-alert-icon.svg similarity index 100% rename from icons-optimized/refresh-alert.svg rename to icons-optimized/refresh-alert-icon.svg diff --git a/icons-optimized/refresh.svg b/icons-optimized/refresh-icon.svg similarity index 100% rename from icons-optimized/refresh.svg rename to icons-optimized/refresh-icon.svg diff --git a/icons-optimized/reload-alert.svg b/icons-optimized/reload-alert-icon.svg similarity index 100% rename from icons-optimized/reload-alert.svg rename to icons-optimized/reload-alert-icon.svg diff --git a/icons-optimized/rotate-clockwise.svg b/icons-optimized/rotate-clockwise-icon.svg similarity index 100% rename from icons-optimized/rotate-clockwise.svg rename to icons-optimized/rotate-clockwise-icon.svg diff --git a/icons-optimized/rotate.svg b/icons-optimized/rotate-icon.svg similarity index 100% rename from icons-optimized/rotate.svg rename to icons-optimized/rotate-icon.svg diff --git a/icons-optimized/scissors.svg b/icons-optimized/scissors-icon.svg similarity index 100% rename from icons-optimized/scissors.svg rename to icons-optimized/scissors-icon.svg diff --git a/icons-optimized/search.svg b/icons-optimized/search-icon.svg similarity index 100% rename from icons-optimized/search.svg rename to icons-optimized/search-icon.svg diff --git a/icons-optimized/share.svg b/icons-optimized/share-icon.svg similarity index 100% rename from icons-optimized/share.svg rename to icons-optimized/share-icon.svg diff --git a/icons-optimized/shopping-cart-discount.svg b/icons-optimized/shopping-cart-discount-icon.svg similarity index 100% rename from icons-optimized/shopping-cart-discount.svg rename to icons-optimized/shopping-cart-discount-icon.svg diff --git a/icons-optimized/shopping-cart.svg b/icons-optimized/shopping-cart-icon.svg similarity index 100% rename from icons-optimized/shopping-cart.svg rename to icons-optimized/shopping-cart-icon.svg diff --git a/icons-optimized/sort-ascending-2.svg b/icons-optimized/sort-ascending-2-icon.svg similarity index 100% rename from icons-optimized/sort-ascending-2.svg rename to icons-optimized/sort-ascending-2-icon.svg diff --git a/icons-optimized/sort-ascending.svg b/icons-optimized/sort-ascending-icon.svg similarity index 100% rename from icons-optimized/sort-ascending.svg rename to icons-optimized/sort-ascending-icon.svg diff --git a/icons-optimized/sort-ascending-letters.svg b/icons-optimized/sort-ascending-letters-icon.svg similarity index 100% rename from icons-optimized/sort-ascending-letters.svg rename to icons-optimized/sort-ascending-letters-icon.svg diff --git a/icons-optimized/sort-ascending-numbers.svg b/icons-optimized/sort-ascending-numbers-icon.svg similarity index 100% rename from icons-optimized/sort-ascending-numbers.svg rename to icons-optimized/sort-ascending-numbers-icon.svg diff --git a/icons-optimized/sort-descending-2.svg b/icons-optimized/sort-descending-2-icon.svg similarity index 100% rename from icons-optimized/sort-descending-2.svg rename to icons-optimized/sort-descending-2-icon.svg diff --git a/icons-optimized/sort-descending.svg b/icons-optimized/sort-descending-icon.svg similarity index 100% rename from icons-optimized/sort-descending.svg rename to icons-optimized/sort-descending-icon.svg diff --git a/icons-optimized/sort-descending-letters.svg b/icons-optimized/sort-descending-letters-icon.svg similarity index 100% rename from icons-optimized/sort-descending-letters.svg rename to icons-optimized/sort-descending-letters-icon.svg diff --git a/icons-optimized/sort-descending-numbers.svg b/icons-optimized/sort-descending-numbers-icon.svg similarity index 100% rename from icons-optimized/sort-descending-numbers.svg rename to icons-optimized/sort-descending-numbers-icon.svg diff --git a/icons-optimized/sparkle.svg b/icons-optimized/sparkle-icon.svg similarity index 100% rename from icons-optimized/sparkle.svg rename to icons-optimized/sparkle-icon.svg diff --git a/icons-optimized/spray.svg b/icons-optimized/spray-icon.svg similarity index 100% rename from icons-optimized/spray.svg rename to icons-optimized/spray-icon.svg diff --git a/icons-optimized/spray_2.svg b/icons-optimized/spray_2-icon.svg similarity index 100% rename from icons-optimized/spray_2.svg rename to icons-optimized/spray_2-icon.svg diff --git a/icons-optimized/stack-double.svg b/icons-optimized/stack-double-icon.svg similarity index 100% rename from icons-optimized/stack-double.svg rename to icons-optimized/stack-double-icon.svg diff --git a/icons-optimized/stack-triple.svg b/icons-optimized/stack-triple-icon.svg similarity index 100% rename from icons-optimized/stack-triple.svg rename to icons-optimized/stack-triple-icon.svg diff --git a/icons-optimized/star - 0.svg b/icons-optimized/star - 0-icon.svg similarity index 100% rename from icons-optimized/star - 0.svg rename to icons-optimized/star - 0-icon.svg diff --git a/icons-optimized/star - 1.svg b/icons-optimized/star - 1-icon.svg similarity index 100% rename from icons-optimized/star - 1.svg rename to icons-optimized/star - 1-icon.svg diff --git a/icons-optimized/star - 2.svg b/icons-optimized/star - 2-icon.svg similarity index 100% rename from icons-optimized/star - 2.svg rename to icons-optimized/star - 2-icon.svg diff --git a/icons-optimized/star - 3.svg b/icons-optimized/star - 3-icon.svg similarity index 100% rename from icons-optimized/star - 3.svg rename to icons-optimized/star - 3-icon.svg diff --git a/icons-optimized/star - 4.svg b/icons-optimized/star - 4-icon.svg similarity index 100% rename from icons-optimized/star - 4.svg rename to icons-optimized/star - 4-icon.svg diff --git a/icons-optimized/star - 5.svg b/icons-optimized/star - 5-icon.svg similarity index 100% rename from icons-optimized/star - 5.svg rename to icons-optimized/star - 5-icon.svg diff --git a/icons-optimized/star-fill.svg b/icons-optimized/star-fill-icon.svg similarity index 100% rename from icons-optimized/star-fill.svg rename to icons-optimized/star-fill-icon.svg diff --git a/icons-optimized/star-fill-off.svg b/icons-optimized/star-fill-off-icon.svg similarity index 100% rename from icons-optimized/star-fill-off.svg rename to icons-optimized/star-fill-off-icon.svg diff --git a/icons-optimized/star.svg b/icons-optimized/star-icon.svg similarity index 100% rename from icons-optimized/star.svg rename to icons-optimized/star-icon.svg diff --git a/icons-optimized/star-off.svg b/icons-optimized/star-off-icon.svg similarity index 100% rename from icons-optimized/star-off.svg rename to icons-optimized/star-off-icon.svg diff --git a/icons-optimized/success-di.svg b/icons-optimized/success-di-icon.svg similarity index 100% rename from icons-optimized/success-di.svg rename to icons-optimized/success-di-icon.svg diff --git a/icons-optimized/thumb-down.svg b/icons-optimized/thumb-down-icon.svg similarity index 100% rename from icons-optimized/thumb-down.svg rename to icons-optimized/thumb-down-icon.svg diff --git a/icons-optimized/thumb-up.svg b/icons-optimized/thumb-up-icon.svg similarity index 100% rename from icons-optimized/thumb-up.svg rename to icons-optimized/thumb-up-icon.svg diff --git a/icons-optimized/trash.svg b/icons-optimized/trash-icon.svg similarity index 100% rename from icons-optimized/trash.svg rename to icons-optimized/trash-icon.svg diff --git a/icons-optimized/trash-off.svg b/icons-optimized/trash-off-icon.svg similarity index 100% rename from icons-optimized/trash-off.svg rename to icons-optimized/trash-off-icon.svg diff --git a/icons-optimized/unlink.svg b/icons-optimized/unlink-icon.svg similarity index 100% rename from icons-optimized/unlink.svg rename to icons-optimized/unlink-icon.svg diff --git a/icons-optimized/upload-2.svg b/icons-optimized/upload-2-icon.svg similarity index 100% rename from icons-optimized/upload-2.svg rename to icons-optimized/upload-2-icon.svg diff --git a/icons-optimized/upload-accent.svg b/icons-optimized/upload-accent-icon.svg similarity index 100% rename from icons-optimized/upload-accent.svg rename to icons-optimized/upload-accent-icon.svg diff --git a/icons-optimized/upload-c1-cat.svg b/icons-optimized/upload-c1-cat-icon.svg similarity index 100% rename from icons-optimized/upload-c1-cat.svg rename to icons-optimized/upload-c1-cat-icon.svg diff --git a/icons-optimized/upload.svg b/icons-optimized/upload-icon.svg similarity index 100% rename from icons-optimized/upload.svg rename to icons-optimized/upload-icon.svg diff --git a/icons-optimized/upload-lr-cat.svg b/icons-optimized/upload-lr-cat-icon.svg similarity index 100% rename from icons-optimized/upload-lr-cat.svg rename to icons-optimized/upload-lr-cat-icon.svg diff --git a/icons-optimized/user-check.svg b/icons-optimized/user-check-icon.svg similarity index 100% rename from icons-optimized/user-check.svg rename to icons-optimized/user-check-icon.svg diff --git a/icons-optimized/user-exclamation.svg b/icons-optimized/user-exclamation-icon.svg similarity index 100% rename from icons-optimized/user-exclamation.svg rename to icons-optimized/user-exclamation-icon.svg diff --git a/icons-optimized/user.svg b/icons-optimized/user-icon.svg similarity index 100% rename from icons-optimized/user.svg rename to icons-optimized/user-icon.svg diff --git a/icons-optimized/user-minus.svg b/icons-optimized/user-minus-icon.svg similarity index 100% rename from icons-optimized/user-minus.svg rename to icons-optimized/user-minus-icon.svg diff --git a/icons-optimized/user-off.svg b/icons-optimized/user-off-icon.svg similarity index 100% rename from icons-optimized/user-off.svg rename to icons-optimized/user-off-icon.svg diff --git a/icons-optimized/user-plus.svg b/icons-optimized/user-plus-icon.svg similarity index 100% rename from icons-optimized/user-plus.svg rename to icons-optimized/user-plus-icon.svg diff --git a/icons-optimized/user-x.svg b/icons-optimized/user-x-icon.svg similarity index 100% rename from icons-optimized/user-x.svg rename to icons-optimized/user-x-icon.svg diff --git a/icons-optimized/users.svg b/icons-optimized/users-icon.svg similarity index 100% rename from icons-optimized/users.svg rename to icons-optimized/users-icon.svg diff --git a/icons-optimized/view-all.svg b/icons-optimized/view-all-icon.svg similarity index 100% rename from icons-optimized/view-all.svg rename to icons-optimized/view-all-icon.svg diff --git a/icons-optimized/viewfinder.svg b/icons-optimized/viewfinder-icon.svg similarity index 100% rename from icons-optimized/viewfinder.svg rename to icons-optimized/viewfinder-icon.svg diff --git a/icons-optimized/wifi-1.svg b/icons-optimized/wifi-1-icon.svg similarity index 100% rename from icons-optimized/wifi-1.svg rename to icons-optimized/wifi-1-icon.svg diff --git a/icons-optimized/wifi-2.svg b/icons-optimized/wifi-2-icon.svg similarity index 100% rename from icons-optimized/wifi-2.svg rename to icons-optimized/wifi-2-icon.svg diff --git a/icons-optimized/wifi.svg b/icons-optimized/wifi-icon.svg similarity index 100% rename from icons-optimized/wifi.svg rename to icons-optimized/wifi-icon.svg diff --git a/icons-optimized/wifi-off.svg b/icons-optimized/wifi-off-icon.svg similarity index 100% rename from icons-optimized/wifi-off.svg rename to icons-optimized/wifi-off-icon.svg diff --git a/icons-optimized/world.svg b/icons-optimized/world-icon.svg similarity index 100% rename from icons-optimized/world.svg rename to icons-optimized/world-icon.svg diff --git a/icons-optimized/writing.svg b/icons-optimized/writing-icon.svg similarity index 100% rename from icons-optimized/writing.svg rename to icons-optimized/writing-icon.svg diff --git a/icons-optimized/x.svg b/icons-optimized/x-icon.svg similarity index 100% rename from icons-optimized/x.svg rename to icons-optimized/x-icon.svg diff --git a/icons-optimized/zoom-in.svg b/icons-optimized/zoom-in-icon.svg similarity index 100% rename from icons-optimized/zoom-in.svg rename to icons-optimized/zoom-in-icon.svg diff --git a/icons-optimized/zoom-out.svg b/icons-optimized/zoom-out-icon.svg similarity index 100% rename from icons-optimized/zoom-out.svg rename to icons-optimized/zoom-out-icon.svg diff --git a/icons-optimized/zoom-question.svg b/icons-optimized/zoom-question-icon.svg similarity index 100% rename from icons-optimized/zoom-question.svg rename to icons-optimized/zoom-question-icon.svg diff --git a/icons-original/no-change/home-mix.svg b/icons-original/no-change/home.svg similarity index 100% rename from icons-original/no-change/home-mix.svg rename to icons-original/no-change/home.svg diff --git a/icons-original/outline/home-2.svg b/icons-original/outline/home-2.svg index 44e6a625..c312e5d7 100644 --- a/icons-original/outline/home-2.svg +++ b/icons-original/outline/home-2.svg @@ -1,6 +1,6 @@ - + diff --git a/package.json b/package.json index 266a39d1..d9ee72c1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@aftershootco/unicons", + "name": "@aftershootco/unicons-v2", "version": "1.0.0", "description": "", "author": { @@ -21,7 +21,7 @@ "build:icons": "node ./scripts/buildIcons.mjs --exportFileName index.ts", "remove:dir": "node ./scripts/removeDir.mjs --targetDir ./svg-children", "gen:unicons": "npm-run-all -s o:svgs gen:metadata gen:childsvgs build:icons remove:dir", - "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons-test && node ./scripts/removeDir.mjs --targetDir ./icons-optimized node && ./scripts/removeDir.mjs --targetDir ./icons-metadata", + "rem:reset": "node ./scripts/removeDir.mjs --targetDir ./src/stories && node ./scripts/removeDir.mjs --targetDir ./src/icons && node ./scripts/removeDir.mjs --targetDir ./icons-optimized node && ./scripts/removeDir.mjs --targetDir ./icons-metadata", "storybook": "concurrently \"pnpm watch:tw\" \"pnpm watch:storybook\"", "watch:tw": "pnpm tailwindcss -i ./src/tailwind.css -o ./src/styles/tailwind.css --watch", "watch:storybook": "storybook dev -p 6006", diff --git a/scripts/optimizeSvgs.mjs b/scripts/optimizeSvgs.mjs index 6a74bc26..21fca723 100644 --- a/scripts/optimizeSvgs.mjs +++ b/scripts/optimizeSvgs.mjs @@ -1,5 +1,5 @@ import fs from 'fs' -import path from 'path' +import path, { basename } from 'path' import { getDirectories, readSvgDirectory, writeSvgFile } from './helpers.mjs' import processSvg from './processSvg.mjs' @@ -33,7 +33,8 @@ const optimizeSvgFiles = async () => { for (const svgFile of svgFiles) { const content = fs.readFileSync(path.resolve(FOLDER_PATH, svgFile), 'utf-8') const optimizedSvg = await processSvg(content, svgFile, iconType) - writeSvgFile(svgFile, OUTPUT_OPTIMIZED_ICONS_DIR, optimizedSvg) + const svgName = basename(svgFile, '.svg') + '-icon.svg' + writeSvgFile(svgName, OUTPUT_OPTIMIZED_ICONS_DIR, optimizedSvg) } } } diff --git a/scripts/writeSvgMetadata.mjs b/scripts/writeSvgMetadata.mjs index 347adeee..89b57161 100644 --- a/scripts/writeSvgMetadata.mjs +++ b/scripts/writeSvgMetadata.mjs @@ -38,7 +38,7 @@ const writeFiles = async () => { } for (const svgFile of svgFiles) { - const baseName = basename(svgFile, '.svg') + const baseName = basename(svgFile, '.svg') + '-icon' const svgJSON = { icon_type: iconType, diff --git a/src/.DS_Store b/src/.DS_Store index 149617850c0291f3934daa3fbd8546ecb073c328..1debaf82d8babad2327343b24a29bc4d64c5bef0 100644 GIT binary patch delta 31 ncmZoMXfc@J&&akhU^gQp+hiW5+|7%bQdlQ8Xl-Wa_{$FfoV*F^ delta 56 zcmZoMXfc@J&&a+pU^gQp`(z%bTxnK@Oon8Je1<%RV$YoX @@ -38,4 +37,4 @@ const Home2 = createASIcon( "outline", ); -export default Home2; +export default Home2Icon; diff --git a/src/icons-test/home-mix.tsx b/src/Icons/home-icon.tsx similarity index 97% rename from src/icons-test/home-mix.tsx rename to src/Icons/home-icon.tsx index d367c9fd..3477bd5d 100644 --- a/src/icons-test/home-mix.tsx +++ b/src/Icons/home-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const HomeMix = createASIcon( - "HomeMix", +const HomeIcon = createASIcon( + "HomeIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -53,4 +53,4 @@ const HomeMix = createASIcon( "no-change", ); -export default HomeMix; +export default HomeIcon; diff --git a/src/icons-test/image-border.tsx b/src/Icons/image-border-icon.tsx similarity index 87% rename from src/icons-test/image-border.tsx rename to src/Icons/image-border-icon.tsx index 3d26e1e8..cf94e6fb 100644 --- a/src/icons-test/image-border.tsx +++ b/src/Icons/image-border-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ImageBorder = createASIcon( - "ImageBorder", +const ImageBorderIcon = createASIcon( + "ImageBorderIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -24,4 +24,4 @@ const ImageBorder = createASIcon( "mix", ); -export default ImageBorder; +export default ImageBorderIcon; diff --git a/src/Icons/index.ts b/src/Icons/index.ts index ca79d9b3..e4115c02 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -1,6 +1,227 @@ -export * from './culling' -export * from './edit' -export * from './enable' -export * from './general' -export * from './logo' -export * from './social' +export { default as ImportIcon } from './Import-icon'; +export { default as AdjustmentsHorizontalIcon } from './adjustments-horizontal-icon'; +export { default as AdjustmentsIcon } from './adjustments-icon'; +export { default as AftershootCreditIcon } from './aftershoot-credit-icon'; +export { default as AftershootLogoIcon } from './aftershoot-logo-icon'; +export { default as AlarmIcon } from './alarm-icon'; +export { default as AlertCircleAccentIcon } from './alert-circle-accent-icon'; +export { default as AlertCircleIcon } from './alert-circle-icon'; +export { default as AlertOctagonIcon } from './alert-octagon-icon'; +export { default as AlertTriangleAccentIcon } from './alert-triangle-accent-icon'; +export { default as AlertTriangleIcon } from './alert-triangle-icon'; +export { default as AppleIcon } from './apple-icon'; +export { default as ArrowCurveFillIcon } from './arrow-curve-fill-icon'; +export { default as ArrowDownIcon } from './arrow-down-icon'; +export { default as ArrowLeftIcon } from './arrow-left-icon'; +export { default as ArrowNarrowLeftIcon } from './arrow-narrow-left-icon'; +export { default as ArrowNarrowRightIcon } from './arrow-narrow-right-icon'; +export { default as ArrowRightIcon } from './arrow-right-icon'; +export { default as ArrowSort2Icon } from './arrow-sort-2-icon'; +export { default as ArrowUpIcon } from './arrow-up-icon'; +export { default as ArrowsDiagonalIcon } from './arrows-diagonal-icon'; +export { default as ArrowsSortIcon } from './arrows-sort-icon'; +export { default as AtomAccentIcon } from './atom-accent-icon'; +export { default as AtomIcon } from './atom-icon'; +export { default as BanIcon } from './ban-icon'; +export { default as BellIcon } from './bell-icon'; +export { default as BellMinusIcon } from './bell-minus-icon'; +export { default as BellOffIcon } from './bell-off-icon'; +export { default as BellPlusIcon } from './bell-plus-icon'; +export { default as BellRinging2Icon } from './bell-ringing-2-icon'; +export { default as BellRingingIcon } from './bell-ringing-icon'; +export { default as BellXIcon } from './bell-x-icon'; +export { default as BrandFacebookIcon } from './brand-facebook-icon'; +export { default as BrandGithubIcon } from './brand-github-icon'; +export { default as BrandInstagramIcon } from './brand-instagram-icon'; +export { default as BrandTwitterIcon } from './brand-twitter-icon'; +export { default as BrandWhatsappIcon } from './brand-whatsapp-icon'; +export { default as BrandYoutubeIcon } from './brand-youtube-icon'; +export { default as BulbIcon } from './bulb-icon'; +export { default as BulbOffIcon } from './bulb-off-icon'; +export { default as CheckBoxEmptyIcon } from './check-box-empty-icon'; +export { default as CheckIcon } from './check-icon'; +export { default as CheckboxBlueAccentIcon } from './checkbox-blue-accent-icon'; +export { default as CheckboxGreenAccentIcon } from './checkbox-green-accent-icon'; +export { default as CheckboxPartialBlueAccentIcon } from './checkbox-partial-blue-accent-icon'; +export { default as ChevronDownIcon } from './chevron-down-icon'; +export { default as ChevronLeftIcon } from './chevron-left-icon'; +export { default as ChevronRightIcon } from './chevron-right-icon'; +export { default as ChevronUpIcon } from './chevron-up-icon'; +export { default as ChevronsLeftIcon } from './chevrons-left-icon'; +export { default as ChevronsRightIcon } from './chevrons-right-icon'; +export { default as CircleCheck2Icon } from './circle-check-2-icon'; +export { default as CircleCheckIcon } from './circle-check-icon'; +export { default as CircleCrossAccentIcon } from './circle-cross-accent-icon'; +export { default as CircleFillIcon } from './circle-fill-icon'; +export { default as CircleIcon } from './circle-icon'; +export { default as ClockIcon } from './clock-icon'; +export { default as CloudUploadAccentIcon } from './cloud-upload-accent-icon'; +export { default as CloudUploadIcon } from './cloud-upload-icon'; +export { default as CollectionIcon } from './collection-icon'; +export { default as ColorSwatchIcon } from './color-swatch-icon'; +export { default as ConfettiIcon } from './confetti-icon'; +export { default as CopyIcon } from './copy-icon'; +export { default as Crown2FillIcon } from './crown-2-fill-icon'; +export { default as CrownIcon } from './crown-icon'; +export { default as CurrencyDollarIcon } from './currency-dollar-icon'; +export { default as CurrentLocationIcon } from './current-location-icon'; +export { default as DeviceDesktopAnalyticsIcon } from './device-desktop-analytics-icon'; +export { default as DeviceDesktopIcon } from './device-desktop-icon'; +export { default as DeviceDesktopOffIcon } from './device-desktop-off-icon'; +export { default as DeviceLaptopIcon } from './device-laptop-icon'; +export { default as DeviceTvIcon } from './device-tv-icon'; +export { default as DiamondIcon } from './diamond-icon'; +export { default as Discount2Icon } from './discount-2-icon'; +export { default as DiscountIcon } from './discount-icon'; +export { default as DiskIcon } from './disk-icon'; +export { default as DotsVerticalIcon } from './dots-vertical-icon'; +export { default as DownloadAccentIcon } from './download-accent-icon'; +export { default as DownloadIcon } from './download-icon'; +export { default as EditIconIcon } from './edit-icon-icon'; +export { default as EditIcon } from './edit-icon'; +export { default as ExternalLinkIcon } from './external-link-icon'; +export { default as EyeCheckIcon } from './eye-check-icon'; +export { default as EyeIcon } from './eye-icon'; +export { default as EyeOffIcon } from './eye-off-icon'; +export { default as FacebookIcon } from './facebook-icon'; +export { default as FileDownloadIcon } from './file-download-icon'; +export { default as FileExportIcon } from './file-export-icon'; +export { default as FileReportIcon } from './file-report-icon'; +export { default as FileSearchIcon } from './file-search-icon'; +export { default as FilterIcon } from './filter-icon'; +export { default as FilterOffIcon } from './filter-off-icon'; +export { default as FlagFillIcon } from './flag-fill-icon'; +export { default as FlagIcon } from './flag-icon'; +export { default as FlagOffIcon } from './flag-off-icon'; +export { default as FolderDownloadIcon } from './folder-download-icon'; +export { default as FolderEyeIcon } from './folder-eye-icon'; +export { default as FolderFillIcon } from './folder-fill-icon'; +export { default as FolderIcon } from './folder-icon'; +export { default as FolderMinusIcon } from './folder-minus-icon'; +export { default as FolderOffIcon } from './folder-off-icon'; +export { default as FolderPlusIcon } from './folder-plus-icon'; +export { default as FolderUploadIcon } from './folder-upload-icon'; +export { default as FolderXIcon } from './folder-x-icon'; +export { default as FoldersIcon } from './folders-icon'; +export { default as GoogleColorIcon } from './google-color-icon'; +export { default as GrabHandIcon } from './grab-hand-icon'; +export { default as GridDotsIcon } from './grid-dots-icon'; +export { default as GridView1Icon } from './grid-view-1-icon'; +export { default as GridView2Icon } from './grid-view-2-icon'; +export { default as Home2Icon } from './home-2-icon'; +export { default as HomeIcon } from './home-icon'; +export { default as ImageBorderIcon } from './image-border-icon'; +export { default as InfoCircleIcon } from './info-circle-icon'; +export { default as InfoCirlce2Icon } from './info-cirlce-2-icon'; +export { default as InfoIcon } from './info-icon'; +export { default as InfoSquareIcon } from './info-square-icon'; +export { default as Key2Icon } from './key-2-icon'; +export { default as KeyDuplicateIcon } from './key-duplicate-icon'; +export { default as KeyIcon } from './key-icon'; +export { default as LayoutSidebarRightMixIcon } from './layout-sidebar-right-mix-icon'; +export { default as LinkIcon } from './link-icon'; +export { default as ListFillIcon } from './list-fill-icon'; +export { default as LoaderIcon } from './loader-icon'; +export { default as Lock2Icon } from './lock-2-icon'; +export { default as LockIcon } from './lock-icon'; +export { default as LockOffIcon } from './lock-off-icon'; +export { default as LockOpenIcon } from './lock-open-icon'; +export { default as LoopIcon } from './loop-icon'; +export { default as LoupeFillIcon } from './loupe-fill-icon'; +export { default as MailIcon } from './mail-icon'; +export { default as Map2Icon } from './map-2-icon'; +export { default as MapPinIcon } from './map-pin-icon'; +export { default as MapPinOffIcon } from './map-pin-off-icon'; +export { default as MinusIcon } from './minus-icon'; +export { default as MoodCrazyHappyIcon } from './mood-crazy-happy-icon'; +export { default as MoodEmptyIcon } from './mood-empty-icon'; +export { default as MoodGrayIcon } from './mood-gray-icon'; +export { default as MoodIcon } from './mood-icon'; +export { default as MoodSadIcon } from './mood-sad-icon'; +export { default as MoodSmileIcon } from './mood-smile-icon'; +export { default as MouseLeft2Icon } from './mouse-left-2-icon'; +export { default as MouseLeftIcon } from './mouse-left-icon'; +export { default as MouseRightIcon } from './mouse-right-icon'; +export { default as NoDuplicateIcon } from './no-duplicate-icon'; +export { default as NoneSelectedIcon } from './none-selected-icon'; +export { default as PaletteFillIcon } from './palette-fill-icon'; +export { default as PaletteIcon } from './palette-icon'; +export { default as PauseFillIcon } from './pause-fill-icon'; +export { default as PhotoIcon } from './photo-icon'; +export { default as PhotoOff2Icon } from './photo-off-2-icon'; +export { default as PhotoOffIcon } from './photo-off-icon'; +export { default as PhotoStackIcon } from './photo-stack-icon'; +export { default as PinnedIcon } from './pinned-icon'; +export { default as PlayFillIcon } from './play-fill-icon'; +export { default as PlayIcon } from './play-icon'; +export { default as PlayerIcon } from './player-icon'; +export { default as PlusIcon } from './plus-icon'; +export { default as QuestionMarkIcon } from './question-mark-icon'; +export { default as RecullIcon } from './recull-icon'; +export { default as RedeemIcon } from './redeem-icon'; +export { default as Refresh2Icon } from './refresh-2-icon'; +export { default as RefreshAlertIcon } from './refresh-alert-icon'; +export { default as RefreshIcon } from './refresh-icon'; +export { default as ReloadAlertIcon } from './reload-alert-icon'; +export { default as RotateClockwiseIcon } from './rotate-clockwise-icon'; +export { default as RotateIcon } from './rotate-icon'; +export { default as ScissorsIcon } from './scissors-icon'; +export { default as SearchIcon } from './search-icon'; +export { default as ShareIcon } from './share-icon'; +export { default as ShoppingCartDiscountIcon } from './shopping-cart-discount-icon'; +export { default as ShoppingCartIcon } from './shopping-cart-icon'; +export { default as SortAscending2Icon } from './sort-ascending-2-icon'; +export { default as SortAscendingIcon } from './sort-ascending-icon'; +export { default as SortAscendingLettersIcon } from './sort-ascending-letters-icon'; +export { default as SortAscendingNumbersIcon } from './sort-ascending-numbers-icon'; +export { default as SortDescending2Icon } from './sort-descending-2-icon'; +export { default as SortDescendingIcon } from './sort-descending-icon'; +export { default as SortDescendingLettersIcon } from './sort-descending-letters-icon'; +export { default as SortDescendingNumbersIcon } from './sort-descending-numbers-icon'; +export { default as SparkleIcon } from './sparkle-icon'; +export { default as SprayIcon } from './spray-icon'; +export { default as Spray2Icon } from './spray_2-icon'; +export { default as StackDoubleIcon } from './stack-double-icon'; +export { default as StackTripleIcon } from './stack-triple-icon'; +export { default as Star0Icon } from './star - 0-icon'; +export { default as Star1Icon } from './star - 1-icon'; +export { default as Star2Icon } from './star - 2-icon'; +export { default as Star3Icon } from './star - 3-icon'; +export { default as Star4Icon } from './star - 4-icon'; +export { default as Star5Icon } from './star - 5-icon'; +export { default as StarFillIcon } from './star-fill-icon'; +export { default as StarFillOffIcon } from './star-fill-off-icon'; +export { default as StarIcon } from './star-icon'; +export { default as StarOffIcon } from './star-off-icon'; +export { default as SuccessDiIcon } from './success-di-icon'; +export { default as ThumbDownIcon } from './thumb-down-icon'; +export { default as ThumbUpIcon } from './thumb-up-icon'; +export { default as TrashIcon } from './trash-icon'; +export { default as TrashOffIcon } from './trash-off-icon'; +export { default as UnlinkIcon } from './unlink-icon'; +export { default as Upload2Icon } from './upload-2-icon'; +export { default as UploadAccentIcon } from './upload-accent-icon'; +export { default as UploadC1CatIcon } from './upload-c1-cat-icon'; +export { default as UploadIcon } from './upload-icon'; +export { default as UploadLrCatIcon } from './upload-lr-cat-icon'; +export { default as UserCheckIcon } from './user-check-icon'; +export { default as UserExclamationIcon } from './user-exclamation-icon'; +export { default as UserIcon } from './user-icon'; +export { default as UserMinusIcon } from './user-minus-icon'; +export { default as UserOffIcon } from './user-off-icon'; +export { default as UserPlusIcon } from './user-plus-icon'; +export { default as UserXIcon } from './user-x-icon'; +export { default as UsersIcon } from './users-icon'; +export { default as ViewAllIcon } from './view-all-icon'; +export { default as ViewfinderIcon } from './viewfinder-icon'; +export { default as Wifi1Icon } from './wifi-1-icon'; +export { default as Wifi2Icon } from './wifi-2-icon'; +export { default as WifiIcon } from './wifi-icon'; +export { default as WifiOffIcon } from './wifi-off-icon'; +export { default as WorldIcon } from './world-icon'; +export { default as WritingIcon } from './writing-icon'; +export { default as XIcon } from './x-icon'; +export { default as ZoomInIcon } from './zoom-in-icon'; +export { default as ZoomOutIcon } from './zoom-out-icon'; +export { default as ZoomQuestionIcon } from './zoom-question-icon'; + diff --git a/src/icons-test/info-circle.tsx b/src/Icons/info-circle-icon.tsx similarity index 86% rename from src/icons-test/info-circle.tsx rename to src/Icons/info-circle-icon.tsx index ef289a4c..68fafea9 100644 --- a/src/icons-test/info-circle.tsx +++ b/src/Icons/info-circle-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const InfoCircle = createASIcon( - "InfoCircle", +const InfoCircleIcon = createASIcon( + "InfoCircleIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const InfoCircle = createASIcon( "outline", ); -export default InfoCircle; +export default InfoCircleIcon; diff --git a/src/icons-test/info-cirlce-2.tsx b/src/Icons/info-cirlce-2-icon.tsx similarity index 88% rename from src/icons-test/info-cirlce-2.tsx rename to src/Icons/info-cirlce-2-icon.tsx index 65133220..37030260 100644 --- a/src/icons-test/info-cirlce-2.tsx +++ b/src/Icons/info-cirlce-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const InfoCirlce2 = createASIcon( - "InfoCirlce2", +const InfoCirlce2Icon = createASIcon( + "InfoCirlce2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const InfoCirlce2 = createASIcon( "outline", ); -export default InfoCirlce2; +export default InfoCirlce2Icon; diff --git a/src/icons-test/info.tsx b/src/Icons/info-icon.tsx similarity index 85% rename from src/icons-test/info.tsx rename to src/Icons/info-icon.tsx index 8f09ab6a..11cc0ca5 100644 --- a/src/icons-test/info.tsx +++ b/src/Icons/info-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Info = createASIcon( - "Info", +const InfoIcon = createASIcon( + "InfoIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const Info = createASIcon( "outline", ); -export default Info; +export default InfoIcon; diff --git a/src/icons-test/info-square.tsx b/src/Icons/info-square-icon.tsx similarity index 87% rename from src/icons-test/info-square.tsx rename to src/Icons/info-square-icon.tsx index b4b7acc6..989ec92a 100644 --- a/src/icons-test/info-square.tsx +++ b/src/Icons/info-square-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const InfoSquare = createASIcon( - "InfoSquare", +const InfoSquareIcon = createASIcon( + "InfoSquareIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const InfoSquare = createASIcon( "outline", ); -export default InfoSquare; +export default InfoSquareIcon; diff --git a/src/icons-test/key-2.tsx b/src/Icons/key-2-icon.tsx similarity index 90% rename from src/icons-test/key-2.tsx rename to src/Icons/key-2-icon.tsx index 390a6d4f..aa73fc9e 100644 --- a/src/icons-test/key-2.tsx +++ b/src/Icons/key-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Key2 = createASIcon( - "Key2", +const Key2Icon = createASIcon( + "Key2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -19,4 +19,4 @@ const Key2 = createASIcon( "outline", ); -export default Key2; +export default Key2Icon; diff --git a/src/icons-test/key-duplicate.tsx b/src/Icons/key-duplicate-icon.tsx similarity index 87% rename from src/icons-test/key-duplicate.tsx rename to src/Icons/key-duplicate-icon.tsx index 1fd558e5..8967b580 100644 --- a/src/icons-test/key-duplicate.tsx +++ b/src/Icons/key-duplicate-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const KeyDuplicate = createASIcon( - "KeyDuplicate", +const KeyDuplicateIcon = createASIcon( + "KeyDuplicateIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const KeyDuplicate = createASIcon( "outline", ); -export default KeyDuplicate; +export default KeyDuplicateIcon; diff --git a/src/icons-test/key.tsx b/src/Icons/key-icon.tsx similarity index 89% rename from src/icons-test/key.tsx rename to src/Icons/key-icon.tsx index 2a31cae0..606bb30e 100644 --- a/src/icons-test/key.tsx +++ b/src/Icons/key-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Key = createASIcon( - "Key", +const KeyIcon = createASIcon( + "KeyIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const Key = createASIcon( "outline", ); -export default Key; +export default KeyIcon; diff --git a/src/icons-test/layout-sidebar-right-mix.tsx b/src/Icons/layout-sidebar-right-mix-icon.tsx similarity index 88% rename from src/icons-test/layout-sidebar-right-mix.tsx rename to src/Icons/layout-sidebar-right-mix-icon.tsx index f4567590..f1046f49 100644 --- a/src/icons-test/layout-sidebar-right-mix.tsx +++ b/src/Icons/layout-sidebar-right-mix-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const LayoutSidebarRightMix = createASIcon( - "LayoutSidebarRightMix", +const LayoutSidebarRightMixIcon = createASIcon( + "LayoutSidebarRightMixIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -36,4 +36,4 @@ const LayoutSidebarRightMix = createASIcon( "no-change", ); -export default LayoutSidebarRightMix; +export default LayoutSidebarRightMixIcon; diff --git a/src/icons-test/link.tsx b/src/Icons/link-icon.tsx similarity index 90% rename from src/icons-test/link.tsx rename to src/Icons/link-icon.tsx index 62d351ea..d5aaf26a 100644 --- a/src/icons-test/link.tsx +++ b/src/Icons/link-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Link = createASIcon( - "Link", +const LinkIcon = createASIcon( + "LinkIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Link = createASIcon( "outline", ); -export default Link; +export default LinkIcon; diff --git a/src/icons-test/list-fill.tsx b/src/Icons/list-fill-icon.tsx similarity index 88% rename from src/icons-test/list-fill.tsx rename to src/Icons/list-fill-icon.tsx index 23f8fad6..4d0ee1ac 100644 --- a/src/icons-test/list-fill.tsx +++ b/src/Icons/list-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ListFill = createASIcon( - "ListFill", +const ListFillIcon = createASIcon( + "ListFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -24,4 +24,4 @@ const ListFill = createASIcon( "fill", ); -export default ListFill; +export default ListFillIcon; diff --git a/src/icons-test/loader.tsx b/src/Icons/loader-icon.tsx similarity index 90% rename from src/icons-test/loader.tsx rename to src/Icons/loader-icon.tsx index 2c55028f..0e0f38e5 100644 --- a/src/icons-test/loader.tsx +++ b/src/Icons/loader-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Loader = createASIcon( - "Loader", +const LoaderIcon = createASIcon( + "LoaderIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -33,4 +33,4 @@ const Loader = createASIcon( "outline", ); -export default Loader; +export default LoaderIcon; diff --git a/src/icons-test/lock-2.tsx b/src/Icons/lock-2-icon.tsx similarity index 91% rename from src/icons-test/lock-2.tsx rename to src/Icons/lock-2-icon.tsx index d294c60e..0aa41270 100644 --- a/src/icons-test/lock-2.tsx +++ b/src/Icons/lock-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Lock2 = createASIcon( - "Lock2", +const Lock2Icon = createASIcon( + "Lock2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Lock2 = createASIcon( "outline", ); -export default Lock2; +export default Lock2Icon; diff --git a/src/icons-test/lock.tsx b/src/Icons/lock-icon.tsx similarity index 90% rename from src/icons-test/lock.tsx rename to src/Icons/lock-icon.tsx index cbb8dc2a..776b98f7 100644 --- a/src/icons-test/lock.tsx +++ b/src/Icons/lock-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Lock = createASIcon( - "Lock", +const LockIcon = createASIcon( + "LockIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const Lock = createASIcon( "outline", ); -export default Lock; +export default LockIcon; diff --git a/src/icons-test/lock-off.tsx b/src/Icons/lock-off-icon.tsx similarity index 89% rename from src/icons-test/lock-off.tsx rename to src/Icons/lock-off-icon.tsx index 29783c8b..52542b71 100644 --- a/src/icons-test/lock-off.tsx +++ b/src/Icons/lock-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const LockOff = createASIcon( - "LockOff", +const LockOffIcon = createASIcon( + "LockOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const LockOff = createASIcon( "outline", ); -export default LockOff; +export default LockOffIcon; diff --git a/src/icons-test/lock-open.tsx b/src/Icons/lock-open-icon.tsx similarity index 88% rename from src/icons-test/lock-open.tsx rename to src/Icons/lock-open-icon.tsx index 120d0a47..c9dac89d 100644 --- a/src/icons-test/lock-open.tsx +++ b/src/Icons/lock-open-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const LockOpen = createASIcon( - "LockOpen", +const LockOpenIcon = createASIcon( + "LockOpenIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const LockOpen = createASIcon( "outline", ); -export default LockOpen; +export default LockOpenIcon; diff --git a/src/icons-test/loop.tsx b/src/Icons/loop-icon.tsx similarity index 92% rename from src/icons-test/loop.tsx rename to src/Icons/loop-icon.tsx index 9e6240db..0700814b 100644 --- a/src/icons-test/loop.tsx +++ b/src/Icons/loop-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Loop = createASIcon( - "Loop", +const LoopIcon = createASIcon( + "LoopIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -39,4 +39,4 @@ const Loop = createASIcon( "outline", ); -export default Loop; +export default LoopIcon; diff --git a/src/icons-test/loupe-fill.tsx b/src/Icons/loupe-fill-icon.tsx similarity index 85% rename from src/icons-test/loupe-fill.tsx rename to src/Icons/loupe-fill-icon.tsx index b81811b4..ccb94261 100644 --- a/src/icons-test/loupe-fill.tsx +++ b/src/Icons/loupe-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const LoupeFill = createASIcon( - "LoupeFill", +const LoupeFillIcon = createASIcon( + "LoupeFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -23,4 +23,4 @@ const LoupeFill = createASIcon( "fill", ); -export default LoupeFill; +export default LoupeFillIcon; diff --git a/src/icons-test/mail.tsx b/src/Icons/mail-icon.tsx similarity index 89% rename from src/icons-test/mail.tsx rename to src/Icons/mail-icon.tsx index 15d03972..387cf482 100644 --- a/src/icons-test/mail.tsx +++ b/src/Icons/mail-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Mail = createASIcon( - "Mail", +const MailIcon = createASIcon( + "MailIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Mail = createASIcon( "outline", ); -export default Mail; +export default MailIcon; diff --git a/src/icons-test/map-2.tsx b/src/Icons/map-2-icon.tsx similarity index 90% rename from src/icons-test/map-2.tsx rename to src/Icons/map-2-icon.tsx index a9fd8f98..00414ce8 100644 --- a/src/icons-test/map-2.tsx +++ b/src/Icons/map-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Map2 = createASIcon( - "Map2", +const Map2Icon = createASIcon( + "Map2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const Map2 = createASIcon( "outline", ); -export default Map2; +export default Map2Icon; diff --git a/src/icons-test/map-pin.tsx b/src/Icons/map-pin-icon.tsx similarity index 89% rename from src/icons-test/map-pin.tsx rename to src/Icons/map-pin-icon.tsx index 95255405..51b2c346 100644 --- a/src/icons-test/map-pin.tsx +++ b/src/Icons/map-pin-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MapPin = createASIcon( - "MapPin", +const MapPinIcon = createASIcon( + "MapPinIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const MapPin = createASIcon( "outline", ); -export default MapPin; +export default MapPinIcon; diff --git a/src/icons-test/map-pin-off.tsx b/src/Icons/map-pin-off-icon.tsx similarity index 89% rename from src/icons-test/map-pin-off.tsx rename to src/Icons/map-pin-off-icon.tsx index 23bf289a..46010681 100644 --- a/src/icons-test/map-pin-off.tsx +++ b/src/Icons/map-pin-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MapPinOff = createASIcon( - "MapPinOff", +const MapPinOffIcon = createASIcon( + "MapPinOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const MapPinOff = createASIcon( "outline", ); -export default MapPinOff; +export default MapPinOffIcon; diff --git a/src/icons-test/minus.tsx b/src/Icons/minus-icon.tsx similarity index 77% rename from src/icons-test/minus.tsx rename to src/Icons/minus-icon.tsx index e774c91b..c4d423df 100644 --- a/src/icons-test/minus.tsx +++ b/src/Icons/minus-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Minus = createASIcon( - "Minus", +const MinusIcon = createASIcon( + "MinusIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -14,4 +14,4 @@ const Minus = createASIcon( "outline", ); -export default Minus; +export default MinusIcon; diff --git a/src/icons-test/mood-crazy-happy.tsx b/src/Icons/mood-crazy-happy-icon.tsx similarity index 87% rename from src/icons-test/mood-crazy-happy.tsx rename to src/Icons/mood-crazy-happy-icon.tsx index e304eda2..5053385e 100644 --- a/src/icons-test/mood-crazy-happy.tsx +++ b/src/Icons/mood-crazy-happy-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MoodCrazyHappy = createASIcon( - "MoodCrazyHappy", +const MoodCrazyHappyIcon = createASIcon( + "MoodCrazyHappyIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -31,4 +31,4 @@ const MoodCrazyHappy = createASIcon( "outline", ); -export default MoodCrazyHappy; +export default MoodCrazyHappyIcon; diff --git a/src/icons-test/mood-empty.tsx b/src/Icons/mood-empty-icon.tsx similarity index 88% rename from src/icons-test/mood-empty.tsx rename to src/Icons/mood-empty-icon.tsx index 89335f06..9c1eb58b 100644 --- a/src/icons-test/mood-empty.tsx +++ b/src/Icons/mood-empty-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MoodEmpty = createASIcon( - "MoodEmpty", +const MoodEmptyIcon = createASIcon( + "MoodEmptyIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const MoodEmpty = createASIcon( "outline", ); -export default MoodEmpty; +export default MoodEmptyIcon; diff --git a/src/icons-test/mood-gray.tsx b/src/Icons/mood-gray-icon.tsx similarity index 95% rename from src/icons-test/mood-gray.tsx rename to src/Icons/mood-gray-icon.tsx index c464662f..15af2e6c 100644 --- a/src/icons-test/mood-gray.tsx +++ b/src/Icons/mood-gray-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MoodGray = createASIcon( - "MoodGray", +const MoodGrayIcon = createASIcon( + "MoodGrayIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -37,4 +37,4 @@ const MoodGray = createASIcon( "no-change", ); -export default MoodGray; +export default MoodGrayIcon; diff --git a/src/icons-test/mood.tsx b/src/Icons/mood-icon.tsx similarity index 95% rename from src/icons-test/mood.tsx rename to src/Icons/mood-icon.tsx index 8c4d873b..0ed64657 100644 --- a/src/icons-test/mood.tsx +++ b/src/Icons/mood-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Mood = createASIcon( - "Mood", +const MoodIcon = createASIcon( + "MoodIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -37,4 +37,4 @@ const Mood = createASIcon( "no-change", ); -export default Mood; +export default MoodIcon; diff --git a/src/icons-test/mood-sad.tsx b/src/Icons/mood-sad-icon.tsx similarity index 89% rename from src/icons-test/mood-sad.tsx rename to src/Icons/mood-sad-icon.tsx index cb545af4..125c6a0f 100644 --- a/src/icons-test/mood-sad.tsx +++ b/src/Icons/mood-sad-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MoodSad = createASIcon( - "MoodSad", +const MoodSadIcon = createASIcon( + "MoodSadIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const MoodSad = createASIcon( "outline", ); -export default MoodSad; +export default MoodSadIcon; diff --git a/src/icons-test/mood-smile.tsx b/src/Icons/mood-smile-icon.tsx similarity index 88% rename from src/icons-test/mood-smile.tsx rename to src/Icons/mood-smile-icon.tsx index 0ac6d6d4..f0cf6744 100644 --- a/src/icons-test/mood-smile.tsx +++ b/src/Icons/mood-smile-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MoodSmile = createASIcon( - "MoodSmile", +const MoodSmileIcon = createASIcon( + "MoodSmileIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const MoodSmile = createASIcon( "outline", ); -export default MoodSmile; +export default MoodSmileIcon; diff --git a/src/icons-test/mouse-left-2.tsx b/src/Icons/mouse-left-2-icon.tsx similarity index 91% rename from src/icons-test/mouse-left-2.tsx rename to src/Icons/mouse-left-2-icon.tsx index 953ab49c..5bfadac2 100644 --- a/src/icons-test/mouse-left-2.tsx +++ b/src/Icons/mouse-left-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MouseLeft2 = createASIcon( - "MouseLeft2", +const MouseLeft2Icon = createASIcon( + "MouseLeft2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -33,4 +33,4 @@ const MouseLeft2 = createASIcon( "no-change", ); -export default MouseLeft2; +export default MouseLeft2Icon; diff --git a/src/icons-test/mouse-left.tsx b/src/Icons/mouse-left-icon.tsx similarity index 85% rename from src/icons-test/mouse-left.tsx rename to src/Icons/mouse-left-icon.tsx index 68e921ac..b5a40619 100644 --- a/src/icons-test/mouse-left.tsx +++ b/src/Icons/mouse-left-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MouseLeft = createASIcon( - "MouseLeft", +const MouseLeftIcon = createASIcon( + "MouseLeftIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -24,4 +24,4 @@ const MouseLeft = createASIcon( "outline", ); -export default MouseLeft; +export default MouseLeftIcon; diff --git a/src/icons-test/mouse-right.tsx b/src/Icons/mouse-right-icon.tsx similarity index 84% rename from src/icons-test/mouse-right.tsx rename to src/Icons/mouse-right-icon.tsx index 469b991a..abed0ada 100644 --- a/src/icons-test/mouse-right.tsx +++ b/src/Icons/mouse-right-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const MouseRight = createASIcon( - "MouseRight", +const MouseRightIcon = createASIcon( + "MouseRightIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -24,4 +24,4 @@ const MouseRight = createASIcon( "outline", ); -export default MouseRight; +export default MouseRightIcon; diff --git a/src/icons-test/no-duplicate.tsx b/src/Icons/no-duplicate-icon.tsx similarity index 90% rename from src/icons-test/no-duplicate.tsx rename to src/Icons/no-duplicate-icon.tsx index 8e296546..ea5d79e5 100644 --- a/src/icons-test/no-duplicate.tsx +++ b/src/Icons/no-duplicate-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const NoDuplicate = createASIcon( - "NoDuplicate", +const NoDuplicateIcon = createASIcon( + "NoDuplicateIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const NoDuplicate = createASIcon( "outline", ); -export default NoDuplicate; +export default NoDuplicateIcon; diff --git a/src/icons-test/none-selected.tsx b/src/Icons/none-selected-icon.tsx similarity index 89% rename from src/icons-test/none-selected.tsx rename to src/Icons/none-selected-icon.tsx index ce189361..cf42eaed 100644 --- a/src/icons-test/none-selected.tsx +++ b/src/Icons/none-selected-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const NoneSelected = createASIcon( - "NoneSelected", +const NoneSelectedIcon = createASIcon( + "NoneSelectedIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -36,4 +36,4 @@ const NoneSelected = createASIcon( "mix", ); -export default NoneSelected; +export default NoneSelectedIcon; diff --git a/src/icons-test/palette-fill.tsx b/src/Icons/palette-fill-icon.tsx similarity index 93% rename from src/icons-test/palette-fill.tsx rename to src/Icons/palette-fill-icon.tsx index d3c2d69e..07606a0d 100644 --- a/src/icons-test/palette-fill.tsx +++ b/src/Icons/palette-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PaletteFill = createASIcon( - "PaletteFill", +const PaletteFillIcon = createASIcon( + "PaletteFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -18,4 +18,4 @@ const PaletteFill = createASIcon( "fill", ); -export default PaletteFill; +export default PaletteFillIcon; diff --git a/src/icons-test/palette.tsx b/src/Icons/palette-icon.tsx similarity index 91% rename from src/icons-test/palette.tsx rename to src/Icons/palette-icon.tsx index 61e25258..7513fa72 100644 --- a/src/icons-test/palette.tsx +++ b/src/Icons/palette-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Palette = createASIcon( - "Palette", +const PaletteIcon = createASIcon( + "PaletteIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const Palette = createASIcon( "outline", ); -export default Palette; +export default PaletteIcon; diff --git a/src/icons-test/pause-fill.tsx b/src/Icons/pause-fill-icon.tsx similarity index 87% rename from src/icons-test/pause-fill.tsx rename to src/Icons/pause-fill-icon.tsx index 984339be..dac68260 100644 --- a/src/icons-test/pause-fill.tsx +++ b/src/Icons/pause-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PauseFill = createASIcon( - "PauseFill", +const PauseFillIcon = createASIcon( + "PauseFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -23,4 +23,4 @@ const PauseFill = createASIcon( "fill", ); -export default PauseFill; +export default PauseFillIcon; diff --git a/src/icons-test/photo.tsx b/src/Icons/photo-icon.tsx similarity index 91% rename from src/icons-test/photo.tsx rename to src/Icons/photo-icon.tsx index 7da0638e..9358a976 100644 --- a/src/icons-test/photo.tsx +++ b/src/Icons/photo-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Photo = createASIcon( - "Photo", +const PhotoIcon = createASIcon( + "PhotoIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const Photo = createASIcon( "outline", ); -export default Photo; +export default PhotoIcon; diff --git a/src/icons-test/photo-off-2.tsx b/src/Icons/photo-off-2-icon.tsx similarity index 90% rename from src/icons-test/photo-off-2.tsx rename to src/Icons/photo-off-2-icon.tsx index 3b8d36c0..0d24e804 100644 --- a/src/icons-test/photo-off-2.tsx +++ b/src/Icons/photo-off-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PhotoOff2 = createASIcon( - "PhotoOff2", +const PhotoOff2Icon = createASIcon( + "PhotoOff2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -26,4 +26,4 @@ const PhotoOff2 = createASIcon( "outline", ); -export default PhotoOff2; +export default PhotoOff2Icon; diff --git a/src/icons-test/photo-off.tsx b/src/Icons/photo-off-icon.tsx similarity index 90% rename from src/icons-test/photo-off.tsx rename to src/Icons/photo-off-icon.tsx index e37f62ba..001bce53 100644 --- a/src/icons-test/photo-off.tsx +++ b/src/Icons/photo-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PhotoOff = createASIcon( - "PhotoOff", +const PhotoOffIcon = createASIcon( + "PhotoOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const PhotoOff = createASIcon( "outline", ); -export default PhotoOff; +export default PhotoOffIcon; diff --git a/src/icons-test/photo-stack.tsx b/src/Icons/photo-stack-icon.tsx similarity index 90% rename from src/icons-test/photo-stack.tsx rename to src/Icons/photo-stack-icon.tsx index a3c1dc3d..a76fde48 100644 --- a/src/icons-test/photo-stack.tsx +++ b/src/Icons/photo-stack-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PhotoStack = createASIcon( - "PhotoStack", +const PhotoStackIcon = createASIcon( + "PhotoStackIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const PhotoStack = createASIcon( "outline", ); -export default PhotoStack; +export default PhotoStackIcon; diff --git a/src/icons-test/pinned.tsx b/src/Icons/pinned-icon.tsx similarity index 88% rename from src/icons-test/pinned.tsx rename to src/Icons/pinned-icon.tsx index 13fb3718..51f63982 100644 --- a/src/icons-test/pinned.tsx +++ b/src/Icons/pinned-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Pinned = createASIcon( - "Pinned", +const PinnedIcon = createASIcon( + "PinnedIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const Pinned = createASIcon( "outline", ); -export default Pinned; +export default PinnedIcon; diff --git a/src/icons-test/play-fill.tsx b/src/Icons/play-fill-icon.tsx similarity index 86% rename from src/icons-test/play-fill.tsx rename to src/Icons/play-fill-icon.tsx index 947b4b6c..0667e71b 100644 --- a/src/icons-test/play-fill.tsx +++ b/src/Icons/play-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const PlayFill = createASIcon( - "PlayFill", +const PlayFillIcon = createASIcon( + "PlayFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -18,4 +18,4 @@ const PlayFill = createASIcon( "fill", ); -export default PlayFill; +export default PlayFillIcon; diff --git a/src/icons-test/play.tsx b/src/Icons/play-icon.tsx similarity index 87% rename from src/icons-test/play.tsx rename to src/Icons/play-icon.tsx index 1ab7284f..bc6b006e 100644 --- a/src/icons-test/play.tsx +++ b/src/Icons/play-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Play = createASIcon( - "Play", +const PlayIcon = createASIcon( + "PlayIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -26,4 +26,4 @@ const Play = createASIcon( "mix", ); -export default Play; +export default PlayIcon; diff --git a/src/icons-test/player.tsx b/src/Icons/player-icon.tsx similarity index 93% rename from src/icons-test/player.tsx rename to src/Icons/player-icon.tsx index a2593ba7..7f1b3287 100644 --- a/src/icons-test/player.tsx +++ b/src/Icons/player-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Player = createASIcon( - "Player", +const PlayerIcon = createASIcon( + "PlayerIcon", { width: "24", height: "24", @@ -25,4 +25,4 @@ const Player = createASIcon( "accent", ); -export default Player; +export default PlayerIcon; diff --git a/src/icons-test/plus.tsx b/src/Icons/plus-icon.tsx similarity index 88% rename from src/icons-test/plus.tsx rename to src/Icons/plus-icon.tsx index bf490052..154988e1 100644 --- a/src/icons-test/plus.tsx +++ b/src/Icons/plus-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Plus = createASIcon( - "Plus", +const PlusIcon = createASIcon( + "PlusIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Plus = createASIcon( "outline", ); -export default Plus; +export default PlusIcon; diff --git a/src/icons-test/question-mark.tsx b/src/Icons/question-mark-icon.tsx similarity index 87% rename from src/icons-test/question-mark.tsx rename to src/Icons/question-mark-icon.tsx index 28c481dc..99b46a82 100644 --- a/src/icons-test/question-mark.tsx +++ b/src/Icons/question-mark-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const QuestionMark = createASIcon( - "QuestionMark", +const QuestionMarkIcon = createASIcon( + "QuestionMarkIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const QuestionMark = createASIcon( "outline", ); -export default QuestionMark; +export default QuestionMarkIcon; diff --git a/src/icons-test/recull.tsx b/src/Icons/recull-icon.tsx similarity index 95% rename from src/icons-test/recull.tsx rename to src/Icons/recull-icon.tsx index e680f5be..3e007089 100644 --- a/src/icons-test/recull.tsx +++ b/src/Icons/recull-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Recull = createASIcon( - "Recull", +const RecullIcon = createASIcon( + "RecullIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -40,4 +40,4 @@ const Recull = createASIcon( "no-change", ); -export default Recull; +export default RecullIcon; diff --git a/src/icons-test/redeem.tsx b/src/Icons/redeem-icon.tsx similarity index 91% rename from src/icons-test/redeem.tsx rename to src/Icons/redeem-icon.tsx index 99c047cf..55a9c078 100644 --- a/src/icons-test/redeem.tsx +++ b/src/Icons/redeem-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Redeem = createASIcon( - "Redeem", +const RedeemIcon = createASIcon( + "RedeemIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -37,4 +37,4 @@ const Redeem = createASIcon( "outline", ); -export default Redeem; +export default RedeemIcon; diff --git a/src/icons-test/refresh-2.tsx b/src/Icons/refresh-2-icon.tsx similarity index 91% rename from src/icons-test/refresh-2.tsx rename to src/Icons/refresh-2-icon.tsx index b6c0e365..0377fe9c 100644 --- a/src/icons-test/refresh-2.tsx +++ b/src/Icons/refresh-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Refresh2 = createASIcon( - "Refresh2", +const Refresh2Icon = createASIcon( + "Refresh2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -31,4 +31,4 @@ const Refresh2 = createASIcon( "outline", ); -export default Refresh2; +export default Refresh2Icon; diff --git a/src/icons-test/refresh-alert.tsx b/src/Icons/refresh-alert-icon.tsx similarity index 85% rename from src/icons-test/refresh-alert.tsx rename to src/Icons/refresh-alert-icon.tsx index 2e9ec16e..d95446ef 100644 --- a/src/icons-test/refresh-alert.tsx +++ b/src/Icons/refresh-alert-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const RefreshAlert = createASIcon( - "RefreshAlert", +const RefreshAlertIcon = createASIcon( + "RefreshAlertIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const RefreshAlert = createASIcon( "outline", ); -export default RefreshAlert; +export default RefreshAlertIcon; diff --git a/src/icons-test/refresh.tsx b/src/Icons/refresh-icon.tsx similarity index 87% rename from src/icons-test/refresh.tsx rename to src/Icons/refresh-icon.tsx index c7327178..7ef8989e 100644 --- a/src/icons-test/refresh.tsx +++ b/src/Icons/refresh-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Refresh = createASIcon( - "Refresh", +const RefreshIcon = createASIcon( + "RefreshIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const Refresh = createASIcon( "outline", ); -export default Refresh; +export default RefreshIcon; diff --git a/src/icons-test/reload-alert.tsx b/src/Icons/reload-alert-icon.tsx similarity index 86% rename from src/icons-test/reload-alert.tsx rename to src/Icons/reload-alert-icon.tsx index 5a0c8481..f8f81799 100644 --- a/src/icons-test/reload-alert.tsx +++ b/src/Icons/reload-alert-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ReloadAlert = createASIcon( - "ReloadAlert", +const ReloadAlertIcon = createASIcon( + "ReloadAlertIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -19,4 +19,4 @@ const ReloadAlert = createASIcon( "outline", ); -export default ReloadAlert; +export default ReloadAlertIcon; diff --git a/src/icons-test/rotate-clockwise.tsx b/src/Icons/rotate-clockwise-icon.tsx similarity index 85% rename from src/icons-test/rotate-clockwise.tsx rename to src/Icons/rotate-clockwise-icon.tsx index 1b53e098..ba67569c 100644 --- a/src/icons-test/rotate-clockwise.tsx +++ b/src/Icons/rotate-clockwise-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const RotateClockwise = createASIcon( - "RotateClockwise", +const RotateClockwiseIcon = createASIcon( + "RotateClockwiseIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const RotateClockwise = createASIcon( "outline", ); -export default RotateClockwise; +export default RotateClockwiseIcon; diff --git a/src/icons-test/rotate.tsx b/src/Icons/rotate-icon.tsx similarity index 88% rename from src/icons-test/rotate.tsx rename to src/Icons/rotate-icon.tsx index 83ad166a..f5faa133 100644 --- a/src/icons-test/rotate.tsx +++ b/src/Icons/rotate-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Rotate = createASIcon( - "Rotate", +const RotateIcon = createASIcon( + "RotateIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const Rotate = createASIcon( "outline", ); -export default Rotate; +export default RotateIcon; diff --git a/src/icons-test/scissors.tsx b/src/Icons/scissors-icon.tsx similarity index 94% rename from src/icons-test/scissors.tsx rename to src/Icons/scissors-icon.tsx index a5b00872..2252a4a1 100644 --- a/src/icons-test/scissors.tsx +++ b/src/Icons/scissors-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Scissors = createASIcon( - "Scissors", +const ScissorsIcon = createASIcon( + "ScissorsIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -30,4 +30,4 @@ const Scissors = createASIcon( "no-change", ); -export default Scissors; +export default ScissorsIcon; diff --git a/src/icons-test/search.tsx b/src/Icons/search-icon.tsx similarity index 87% rename from src/icons-test/search.tsx rename to src/Icons/search-icon.tsx index c5f904d5..36f32f8e 100644 --- a/src/icons-test/search.tsx +++ b/src/Icons/search-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Search = createASIcon( - "Search", +const SearchIcon = createASIcon( + "SearchIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Search = createASIcon( "outline", ); -export default Search; +export default SearchIcon; diff --git a/src/icons-test/share.tsx b/src/Icons/share-icon.tsx similarity index 90% rename from src/icons-test/share.tsx rename to src/Icons/share-icon.tsx index bee34cfa..ef278288 100644 --- a/src/icons-test/share.tsx +++ b/src/Icons/share-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Share = createASIcon( - "Share", +const ShareIcon = createASIcon( + "ShareIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const Share = createASIcon( "outline", ); -export default Share; +export default ShareIcon; diff --git a/src/icons-test/shopping-cart-discount.tsx b/src/Icons/shopping-cart-discount-icon.tsx similarity index 87% rename from src/icons-test/shopping-cart-discount.tsx rename to src/Icons/shopping-cart-discount-icon.tsx index d0f04316..87502982 100644 --- a/src/icons-test/shopping-cart-discount.tsx +++ b/src/Icons/shopping-cart-discount-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ShoppingCartDiscount = createASIcon( - "ShoppingCartDiscount", +const ShoppingCartDiscountIcon = createASIcon( + "ShoppingCartDiscountIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -32,4 +32,4 @@ const ShoppingCartDiscount = createASIcon( "outline", ); -export default ShoppingCartDiscount; +export default ShoppingCartDiscountIcon; diff --git a/src/icons-test/shopping-cart.tsx b/src/Icons/shopping-cart-icon.tsx similarity index 87% rename from src/icons-test/shopping-cart.tsx rename to src/Icons/shopping-cart-icon.tsx index 421862dc..a2038699 100644 --- a/src/icons-test/shopping-cart.tsx +++ b/src/Icons/shopping-cart-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ShoppingCart = createASIcon( - "ShoppingCart", +const ShoppingCartIcon = createASIcon( + "ShoppingCartIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const ShoppingCart = createASIcon( "outline", ); -export default ShoppingCart; +export default ShoppingCartIcon; diff --git a/src/icons-test/sort-ascending-2.tsx b/src/Icons/sort-ascending-2-icon.tsx similarity index 88% rename from src/icons-test/sort-ascending-2.tsx rename to src/Icons/sort-ascending-2-icon.tsx index 160f12d2..0e6d459b 100644 --- a/src/icons-test/sort-ascending-2.tsx +++ b/src/Icons/sort-ascending-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortAscending2 = createASIcon( - "SortAscending2", +const SortAscending2Icon = createASIcon( + "SortAscending2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const SortAscending2 = createASIcon( "outline", ); -export default SortAscending2; +export default SortAscending2Icon; diff --git a/src/icons-test/sort-ascending.tsx b/src/Icons/sort-ascending-icon.tsx similarity index 86% rename from src/icons-test/sort-ascending.tsx rename to src/Icons/sort-ascending-icon.tsx index e634a125..b2671c98 100644 --- a/src/icons-test/sort-ascending.tsx +++ b/src/Icons/sort-ascending-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortAscending = createASIcon( - "SortAscending", +const SortAscendingIcon = createASIcon( + "SortAscendingIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const SortAscending = createASIcon( "outline", ); -export default SortAscending; +export default SortAscendingIcon; diff --git a/src/icons-test/sort-ascending-letters.tsx b/src/Icons/sort-ascending-letters-icon.tsx similarity index 84% rename from src/icons-test/sort-ascending-letters.tsx rename to src/Icons/sort-ascending-letters-icon.tsx index 9f3f82a7..d1b5aa71 100644 --- a/src/icons-test/sort-ascending-letters.tsx +++ b/src/Icons/sort-ascending-letters-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortAscendingLetters = createASIcon( - "SortAscendingLetters", +const SortAscendingLettersIcon = createASIcon( + "SortAscendingLettersIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const SortAscendingLetters = createASIcon( "outline", ); -export default SortAscendingLetters; +export default SortAscendingLettersIcon; diff --git a/src/icons-test/sort-ascending-numbers.tsx b/src/Icons/sort-ascending-numbers-icon.tsx similarity index 86% rename from src/icons-test/sort-ascending-numbers.tsx rename to src/Icons/sort-ascending-numbers-icon.tsx index f64970b5..3a649e3d 100644 --- a/src/icons-test/sort-ascending-numbers.tsx +++ b/src/Icons/sort-ascending-numbers-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortAscendingNumbers = createASIcon( - "SortAscendingNumbers", +const SortAscendingNumbersIcon = createASIcon( + "SortAscendingNumbersIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const SortAscendingNumbers = createASIcon( "outline", ); -export default SortAscendingNumbers; +export default SortAscendingNumbersIcon; diff --git a/src/icons-test/sort-descending-2.tsx b/src/Icons/sort-descending-2-icon.tsx similarity index 88% rename from src/icons-test/sort-descending-2.tsx rename to src/Icons/sort-descending-2-icon.tsx index c50f1e8f..fd3ab171 100644 --- a/src/icons-test/sort-descending-2.tsx +++ b/src/Icons/sort-descending-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortDescending2 = createASIcon( - "SortDescending2", +const SortDescending2Icon = createASIcon( + "SortDescending2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const SortDescending2 = createASIcon( "outline", ); -export default SortDescending2; +export default SortDescending2Icon; diff --git a/src/icons-test/sort-descending.tsx b/src/Icons/sort-descending-icon.tsx similarity index 86% rename from src/icons-test/sort-descending.tsx rename to src/Icons/sort-descending-icon.tsx index 7dd28c8c..eb830f79 100644 --- a/src/icons-test/sort-descending.tsx +++ b/src/Icons/sort-descending-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortDescending = createASIcon( - "SortDescending", +const SortDescendingIcon = createASIcon( + "SortDescendingIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const SortDescending = createASIcon( "outline", ); -export default SortDescending; +export default SortDescendingIcon; diff --git a/src/icons-test/sort-descending-letters.tsx b/src/Icons/sort-descending-letters-icon.tsx similarity index 84% rename from src/icons-test/sort-descending-letters.tsx rename to src/Icons/sort-descending-letters-icon.tsx index b634e7b1..415ba903 100644 --- a/src/icons-test/sort-descending-letters.tsx +++ b/src/Icons/sort-descending-letters-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortDescendingLetters = createASIcon( - "SortDescendingLetters", +const SortDescendingLettersIcon = createASIcon( + "SortDescendingLettersIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const SortDescendingLetters = createASIcon( "outline", ); -export default SortDescendingLetters; +export default SortDescendingLettersIcon; diff --git a/src/icons-test/sort-descending-numbers.tsx b/src/Icons/sort-descending-numbers-icon.tsx similarity index 85% rename from src/icons-test/sort-descending-numbers.tsx rename to src/Icons/sort-descending-numbers-icon.tsx index 0b84442b..17b79835 100644 --- a/src/icons-test/sort-descending-numbers.tsx +++ b/src/Icons/sort-descending-numbers-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SortDescendingNumbers = createASIcon( - "SortDescendingNumbers", +const SortDescendingNumbersIcon = createASIcon( + "SortDescendingNumbersIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const SortDescendingNumbers = createASIcon( "outline", ); -export default SortDescendingNumbers; +export default SortDescendingNumbersIcon; diff --git a/src/icons-test/sparkle.tsx b/src/Icons/sparkle-icon.tsx similarity index 94% rename from src/icons-test/sparkle.tsx rename to src/Icons/sparkle-icon.tsx index adf3710d..8952056a 100644 --- a/src/icons-test/sparkle.tsx +++ b/src/Icons/sparkle-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Sparkle = createASIcon( - "Sparkle", +const SparkleIcon = createASIcon( + "SparkleIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -24,4 +24,4 @@ const Sparkle = createASIcon( "mix", ); -export default Sparkle; +export default SparkleIcon; diff --git a/src/icons-test/spray.tsx b/src/Icons/spray-icon.tsx similarity index 89% rename from src/icons-test/spray.tsx rename to src/Icons/spray-icon.tsx index 42295836..fefc1abd 100644 --- a/src/icons-test/spray.tsx +++ b/src/Icons/spray-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Spray = createASIcon( - "Spray", +const SprayIcon = createASIcon( + "SprayIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const Spray = createASIcon( "outline", ); -export default Spray; +export default SprayIcon; diff --git a/src/icons-test/spray_2.tsx b/src/Icons/spray_2-icon.tsx similarity index 94% rename from src/icons-test/spray_2.tsx rename to src/Icons/spray_2-icon.tsx index 77b1ae78..9f1b7ecb 100644 --- a/src/icons-test/spray_2.tsx +++ b/src/Icons/spray_2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Spray2 = createASIcon( - "Spray2", +const Spray2Icon = createASIcon( + "Spray2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -23,4 +23,4 @@ const Spray2 = createASIcon( "outline", ); -export default Spray2; +export default Spray2Icon; diff --git a/src/icons-test/stack-double.tsx b/src/Icons/stack-double-icon.tsx similarity index 85% rename from src/icons-test/stack-double.tsx rename to src/Icons/stack-double-icon.tsx index e9aa9cc0..d1f18761 100644 --- a/src/icons-test/stack-double.tsx +++ b/src/Icons/stack-double-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const StackDouble = createASIcon( - "StackDouble", +const StackDoubleIcon = createASIcon( + "StackDoubleIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const StackDouble = createASIcon( "outline", ); -export default StackDouble; +export default StackDoubleIcon; diff --git a/src/icons-test/stack-triple.tsx b/src/Icons/stack-triple-icon.tsx similarity index 85% rename from src/icons-test/stack-triple.tsx rename to src/Icons/stack-triple-icon.tsx index dc0fbb5c..29e4825a 100644 --- a/src/icons-test/stack-triple.tsx +++ b/src/Icons/stack-triple-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const StackTriple = createASIcon( - "StackTriple", +const StackTripleIcon = createASIcon( + "StackTripleIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const StackTriple = createASIcon( "outline", ); -export default StackTriple; +export default StackTripleIcon; diff --git a/src/icons-test/star - 0.tsx b/src/Icons/star - 0-icon.tsx similarity index 96% rename from src/icons-test/star - 0.tsx rename to src/Icons/star - 0-icon.tsx index 3a19c307..ef718f14 100644 --- a/src/icons-test/star - 0.tsx +++ b/src/Icons/star - 0-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star0 = createASIcon( - "Star0", +const Star0Icon = createASIcon( + "Star0Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star0 = createASIcon( "accent", ); -export default Star0; +export default Star0Icon; diff --git a/src/icons-test/star - 1.tsx b/src/Icons/star - 1-icon.tsx similarity index 93% rename from src/icons-test/star - 1.tsx rename to src/Icons/star - 1-icon.tsx index e95adb68..ecd569ac 100644 --- a/src/icons-test/star - 1.tsx +++ b/src/Icons/star - 1-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star1 = createASIcon( - "Star1", +const Star1Icon = createASIcon( + "Star1Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star1 = createASIcon( "accent", ); -export default Star1; +export default Star1Icon; diff --git a/src/icons-test/star - 2.tsx b/src/Icons/star - 2-icon.tsx similarity index 96% rename from src/icons-test/star - 2.tsx rename to src/Icons/star - 2-icon.tsx index 6379c5af..20d20f15 100644 --- a/src/icons-test/star - 2.tsx +++ b/src/Icons/star - 2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star2 = createASIcon( - "Star2", +const Star2Icon = createASIcon( + "Star2Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star2 = createASIcon( "accent", ); -export default Star2; +export default Star2Icon; diff --git a/src/icons-test/star - 3.tsx b/src/Icons/star - 3-icon.tsx similarity index 96% rename from src/icons-test/star - 3.tsx rename to src/Icons/star - 3-icon.tsx index 941ec522..88decb2d 100644 --- a/src/icons-test/star - 3.tsx +++ b/src/Icons/star - 3-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star3 = createASIcon( - "Star3", +const Star3Icon = createASIcon( + "Star3Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star3 = createASIcon( "accent", ); -export default Star3; +export default Star3Icon; diff --git a/src/icons-test/star - 4.tsx b/src/Icons/star - 4-icon.tsx similarity index 94% rename from src/icons-test/star - 4.tsx rename to src/Icons/star - 4-icon.tsx index baa90a2e..e7bd270c 100644 --- a/src/icons-test/star - 4.tsx +++ b/src/Icons/star - 4-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star4 = createASIcon( - "Star4", +const Star4Icon = createASIcon( + "Star4Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star4 = createASIcon( "accent", ); -export default Star4; +export default Star4Icon; diff --git a/src/icons-test/star - 5.tsx b/src/Icons/star - 5-icon.tsx similarity index 95% rename from src/icons-test/star - 5.tsx rename to src/Icons/star - 5-icon.tsx index 8313aa74..c0189425 100644 --- a/src/icons-test/star - 5.tsx +++ b/src/Icons/star - 5-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star5 = createASIcon( - "Star5", +const Star5Icon = createASIcon( + "Star5Icon", { width: "24", height: "24", @@ -34,4 +34,4 @@ const Star5 = createASIcon( "accent", ); -export default Star5; +export default Star5Icon; diff --git a/src/icons-test/star-fill.tsx b/src/Icons/star-fill-icon.tsx similarity index 85% rename from src/icons-test/star-fill.tsx rename to src/Icons/star-fill-icon.tsx index 551f7e45..3d0749b6 100644 --- a/src/icons-test/star-fill.tsx +++ b/src/Icons/star-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const StarFill = createASIcon( - "StarFill", +const StarFillIcon = createASIcon( + "StarFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -21,4 +21,4 @@ const StarFill = createASIcon( "mix", ); -export default StarFill; +export default StarFillIcon; diff --git a/src/icons-test/star-fill-off.tsx b/src/Icons/star-fill-off-icon.tsx similarity index 89% rename from src/icons-test/star-fill-off.tsx rename to src/Icons/star-fill-off-icon.tsx index 8e6a574b..8a7fd2f0 100644 --- a/src/icons-test/star-fill-off.tsx +++ b/src/Icons/star-fill-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const StarFillOff = createASIcon( - "StarFillOff", +const StarFillOffIcon = createASIcon( + "StarFillOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -36,4 +36,4 @@ const StarFillOff = createASIcon( "no-change", ); -export default StarFillOff; +export default StarFillOffIcon; diff --git a/src/icons-test/star.tsx b/src/Icons/star-icon.tsx similarity index 89% rename from src/icons-test/star.tsx rename to src/Icons/star-icon.tsx index e4e83d99..fcf3041e 100644 --- a/src/icons-test/star.tsx +++ b/src/Icons/star-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Star = createASIcon( - "Star", +const StarIcon = createASIcon( + "StarIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const Star = createASIcon( "outline", ); -export default Star; +export default StarIcon; diff --git a/src/icons-test/star-off.tsx b/src/Icons/star-off-icon.tsx similarity index 88% rename from src/icons-test/star-off.tsx rename to src/Icons/star-off-icon.tsx index 3d152da0..bc6e74a7 100644 --- a/src/icons-test/star-off.tsx +++ b/src/Icons/star-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const StarOff = createASIcon( - "StarOff", +const StarOffIcon = createASIcon( + "StarOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const StarOff = createASIcon( "outline", ); -export default StarOff; +export default StarOffIcon; diff --git a/src/icons-test/success-di.tsx b/src/Icons/success-di-icon.tsx similarity index 87% rename from src/icons-test/success-di.tsx rename to src/Icons/success-di-icon.tsx index 71e4b646..3bd53847 100644 --- a/src/icons-test/success-di.tsx +++ b/src/Icons/success-di-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const SuccessDi = createASIcon( - "SuccessDi", +const SuccessDiIcon = createASIcon( + "SuccessDiIcon", { width: "38", height: "38", @@ -28,4 +28,4 @@ const SuccessDi = createASIcon( "accent", ); -export default SuccessDi; +export default SuccessDiIcon; diff --git a/src/icons-test/thumb-down.tsx b/src/Icons/thumb-down-icon.tsx similarity index 88% rename from src/icons-test/thumb-down.tsx rename to src/Icons/thumb-down-icon.tsx index ad563946..12d0302c 100644 --- a/src/icons-test/thumb-down.tsx +++ b/src/Icons/thumb-down-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ThumbDown = createASIcon( - "ThumbDown", +const ThumbDownIcon = createASIcon( + "ThumbDownIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const ThumbDown = createASIcon( "outline", ); -export default ThumbDown; +export default ThumbDownIcon; diff --git a/src/icons-test/thumb-up.tsx b/src/Icons/thumb-up-icon.tsx similarity index 89% rename from src/icons-test/thumb-up.tsx rename to src/Icons/thumb-up-icon.tsx index 00130ccc..063219d4 100644 --- a/src/icons-test/thumb-up.tsx +++ b/src/Icons/thumb-up-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ThumbUp = createASIcon( - "ThumbUp", +const ThumbUpIcon = createASIcon( + "ThumbUpIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const ThumbUp = createASIcon( "outline", ); -export default ThumbUp; +export default ThumbUpIcon; diff --git a/src/icons-test/trash.tsx b/src/Icons/trash-icon.tsx similarity index 90% rename from src/icons-test/trash.tsx rename to src/Icons/trash-icon.tsx index cd7f42d7..dc3b82ae 100644 --- a/src/icons-test/trash.tsx +++ b/src/Icons/trash-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Trash = createASIcon( - "Trash", +const TrashIcon = createASIcon( + "TrashIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const Trash = createASIcon( "outline", ); -export default Trash; +export default TrashIcon; diff --git a/src/icons-test/trash-off.tsx b/src/Icons/trash-off-icon.tsx similarity index 90% rename from src/icons-test/trash-off.tsx rename to src/Icons/trash-off-icon.tsx index 96b6b073..9e1d3055 100644 --- a/src/icons-test/trash-off.tsx +++ b/src/Icons/trash-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const TrashOff = createASIcon( - "TrashOff", +const TrashOffIcon = createASIcon( + "TrashOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -32,4 +32,4 @@ const TrashOff = createASIcon( "outline", ); -export default TrashOff; +export default TrashOffIcon; diff --git a/src/icons-test/unlink.tsx b/src/Icons/unlink-icon.tsx similarity index 90% rename from src/icons-test/unlink.tsx rename to src/Icons/unlink-icon.tsx index 14e8d460..d084784a 100644 --- a/src/icons-test/unlink.tsx +++ b/src/Icons/unlink-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Unlink = createASIcon( - "Unlink", +const UnlinkIcon = createASIcon( + "UnlinkIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -31,4 +31,4 @@ const Unlink = createASIcon( "outline", ); -export default Unlink; +export default UnlinkIcon; diff --git a/src/icons-test/upload-2.tsx b/src/Icons/upload-2-icon.tsx similarity index 86% rename from src/icons-test/upload-2.tsx rename to src/Icons/upload-2-icon.tsx index a1d594f0..096b21a6 100644 --- a/src/icons-test/upload-2.tsx +++ b/src/Icons/upload-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Upload2 = createASIcon( - "Upload2", +const Upload2Icon = createASIcon( + "Upload2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -19,4 +19,4 @@ const Upload2 = createASIcon( "outline", ); -export default Upload2; +export default Upload2Icon; diff --git a/src/icons-test/upload-accent.tsx b/src/Icons/upload-accent-icon.tsx similarity index 90% rename from src/icons-test/upload-accent.tsx rename to src/Icons/upload-accent-icon.tsx index 9e620038..e358d1e4 100644 --- a/src/icons-test/upload-accent.tsx +++ b/src/Icons/upload-accent-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UploadAccent = createASIcon( - "UploadAccent", +const UploadAccentIcon = createASIcon( + "UploadAccentIcon", { width: "48", height: "48", @@ -39,4 +39,4 @@ const UploadAccent = createASIcon( "accent", ); -export default UploadAccent; +export default UploadAccentIcon; diff --git a/src/icons-test/upload-c1-cat.tsx b/src/Icons/upload-c1-cat-icon.tsx similarity index 95% rename from src/icons-test/upload-c1-cat.tsx rename to src/Icons/upload-c1-cat-icon.tsx index 1efa954a..83da6456 100644 --- a/src/icons-test/upload-c1-cat.tsx +++ b/src/Icons/upload-c1-cat-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UploadC1Cat = createASIcon( - "UploadC1Cat", +const UploadC1CatIcon = createASIcon( + "UploadC1CatIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -49,4 +49,4 @@ const UploadC1Cat = createASIcon( "mix", ); -export default UploadC1Cat; +export default UploadC1CatIcon; diff --git a/src/icons-test/upload.tsx b/src/Icons/upload-icon.tsx similarity index 88% rename from src/icons-test/upload.tsx rename to src/Icons/upload-icon.tsx index 7688fcd1..8dede5c9 100644 --- a/src/icons-test/upload.tsx +++ b/src/Icons/upload-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Upload = createASIcon( - "Upload", +const UploadIcon = createASIcon( + "UploadIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const Upload = createASIcon( "outline", ); -export default Upload; +export default UploadIcon; diff --git a/src/icons-test/upload-lr-cat.tsx b/src/Icons/upload-lr-cat-icon.tsx similarity index 94% rename from src/icons-test/upload-lr-cat.tsx rename to src/Icons/upload-lr-cat-icon.tsx index 1d85f484..e25c362e 100644 --- a/src/icons-test/upload-lr-cat.tsx +++ b/src/Icons/upload-lr-cat-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UploadLrCat = createASIcon( - "UploadLrCat", +const UploadLrCatIcon = createASIcon( + "UploadLrCatIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", @@ -49,4 +49,4 @@ const UploadLrCat = createASIcon( "mix", ); -export default UploadLrCat; +export default UploadLrCatIcon; diff --git a/src/icons-test/user-check.tsx b/src/Icons/user-check-icon.tsx similarity index 87% rename from src/icons-test/user-check.tsx rename to src/Icons/user-check-icon.tsx index e3d4d9ff..89017c7f 100644 --- a/src/icons-test/user-check.tsx +++ b/src/Icons/user-check-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserCheck = createASIcon( - "UserCheck", +const UserCheckIcon = createASIcon( + "UserCheckIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const UserCheck = createASIcon( "outline", ); -export default UserCheck; +export default UserCheckIcon; diff --git a/src/icons-test/user-exclamation.tsx b/src/Icons/user-exclamation-icon.tsx similarity index 85% rename from src/icons-test/user-exclamation.tsx rename to src/Icons/user-exclamation-icon.tsx index 0e0ae4ed..9474417e 100644 --- a/src/icons-test/user-exclamation.tsx +++ b/src/Icons/user-exclamation-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserExclamation = createASIcon( - "UserExclamation", +const UserExclamationIcon = createASIcon( + "UserExclamationIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const UserExclamation = createASIcon( "outline", ); -export default UserExclamation; +export default UserExclamationIcon; diff --git a/src/icons-test/user.tsx b/src/Icons/user-icon.tsx similarity index 89% rename from src/icons-test/user.tsx rename to src/Icons/user-icon.tsx index 738d5e9b..72d1e54c 100644 --- a/src/icons-test/user.tsx +++ b/src/Icons/user-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const User = createASIcon( - "User", +const UserIcon = createASIcon( + "UserIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const User = createASIcon( "outline", ); -export default User; +export default UserIcon; diff --git a/src/icons-test/user-minus.tsx b/src/Icons/user-minus-icon.tsx similarity index 87% rename from src/icons-test/user-minus.tsx rename to src/Icons/user-minus-icon.tsx index 23aa0404..8e213107 100644 --- a/src/icons-test/user-minus.tsx +++ b/src/Icons/user-minus-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserMinus = createASIcon( - "UserMinus", +const UserMinusIcon = createASIcon( + "UserMinusIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const UserMinus = createASIcon( "outline", ); -export default UserMinus; +export default UserMinusIcon; diff --git a/src/icons-test/user-off.tsx b/src/Icons/user-off-icon.tsx similarity index 89% rename from src/icons-test/user-off.tsx rename to src/Icons/user-off-icon.tsx index c56a9846..76586251 100644 --- a/src/icons-test/user-off.tsx +++ b/src/Icons/user-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserOff = createASIcon( - "UserOff", +const UserOffIcon = createASIcon( + "UserOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const UserOff = createASIcon( "outline", ); -export default UserOff; +export default UserOffIcon; diff --git a/src/icons-test/user-plus.tsx b/src/Icons/user-plus-icon.tsx similarity index 87% rename from src/icons-test/user-plus.tsx rename to src/Icons/user-plus-icon.tsx index af529239..f403409e 100644 --- a/src/icons-test/user-plus.tsx +++ b/src/Icons/user-plus-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserPlus = createASIcon( - "UserPlus", +const UserPlusIcon = createASIcon( + "UserPlusIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const UserPlus = createASIcon( "outline", ); -export default UserPlus; +export default UserPlusIcon; diff --git a/src/icons-test/user-x.tsx b/src/Icons/user-x-icon.tsx similarity index 89% rename from src/icons-test/user-x.tsx rename to src/Icons/user-x-icon.tsx index 2684097f..57c5acb9 100644 --- a/src/icons-test/user-x.tsx +++ b/src/Icons/user-x-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const UserX = createASIcon( - "UserX", +const UserXIcon = createASIcon( + "UserXIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const UserX = createASIcon( "outline", ); -export default UserX; +export default UserXIcon; diff --git a/src/icons-test/users.tsx b/src/Icons/users-icon.tsx similarity index 90% rename from src/icons-test/users.tsx rename to src/Icons/users-icon.tsx index 482c5615..2bb5cb77 100644 --- a/src/icons-test/users.tsx +++ b/src/Icons/users-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Users = createASIcon( - "Users", +const UsersIcon = createASIcon( + "UsersIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const Users = createASIcon( "outline", ); -export default Users; +export default UsersIcon; diff --git a/src/icons-test/view-all.tsx b/src/Icons/view-all-icon.tsx similarity index 93% rename from src/icons-test/view-all.tsx rename to src/Icons/view-all-icon.tsx index 66bf8b7c..eb1bca17 100644 --- a/src/icons-test/view-all.tsx +++ b/src/Icons/view-all-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ViewAll = createASIcon( - "ViewAll", +const ViewAllIcon = createASIcon( + "ViewAllIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -18,4 +18,4 @@ const ViewAll = createASIcon( "outline", ); -export default ViewAll; +export default ViewAllIcon; diff --git a/src/icons-test/viewfinder.tsx b/src/Icons/viewfinder-icon.tsx similarity index 88% rename from src/icons-test/viewfinder.tsx rename to src/Icons/viewfinder-icon.tsx index 5c423b54..de55ce4b 100644 --- a/src/icons-test/viewfinder.tsx +++ b/src/Icons/viewfinder-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Viewfinder = createASIcon( - "Viewfinder", +const ViewfinderIcon = createASIcon( + "ViewfinderIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -31,4 +31,4 @@ const Viewfinder = createASIcon( "outline", ); -export default Viewfinder; +export default ViewfinderIcon; diff --git a/src/icons-test/wifi-1.tsx b/src/Icons/wifi-1-icon.tsx similarity index 87% rename from src/icons-test/wifi-1.tsx rename to src/Icons/wifi-1-icon.tsx index 2b847a92..0d26b707 100644 --- a/src/icons-test/wifi-1.tsx +++ b/src/Icons/wifi-1-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Wifi1 = createASIcon( - "Wifi1", +const Wifi1Icon = createASIcon( + "Wifi1Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const Wifi1 = createASIcon( "outline", ); -export default Wifi1; +export default Wifi1Icon; diff --git a/src/icons-test/wifi-2.tsx b/src/Icons/wifi-2-icon.tsx similarity index 88% rename from src/icons-test/wifi-2.tsx rename to src/Icons/wifi-2-icon.tsx index 1092983f..13037cdc 100644 --- a/src/icons-test/wifi-2.tsx +++ b/src/Icons/wifi-2-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Wifi2 = createASIcon( - "Wifi2", +const Wifi2Icon = createASIcon( + "Wifi2Icon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const Wifi2 = createASIcon( "outline", ); -export default Wifi2; +export default Wifi2Icon; diff --git a/src/icons-test/wifi.tsx b/src/Icons/wifi-icon.tsx similarity index 90% rename from src/icons-test/wifi.tsx rename to src/Icons/wifi-icon.tsx index 37bba835..f0ca96c5 100644 --- a/src/icons-test/wifi.tsx +++ b/src/Icons/wifi-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Wifi = createASIcon( - "Wifi", +const WifiIcon = createASIcon( + "WifiIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const Wifi = createASIcon( "outline", ); -export default Wifi; +export default WifiIcon; diff --git a/src/icons-test/wifi-off.tsx b/src/Icons/wifi-off-icon.tsx similarity index 92% rename from src/icons-test/wifi-off.tsx rename to src/Icons/wifi-off-icon.tsx index 8aa96deb..1702e6af 100644 --- a/src/icons-test/wifi-off.tsx +++ b/src/Icons/wifi-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const WifiOff = createASIcon( - "WifiOff", +const WifiOffIcon = createASIcon( + "WifiOffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -43,4 +43,4 @@ const WifiOff = createASIcon( "outline", ); -export default WifiOff; +export default WifiOffIcon; diff --git a/src/icons-test/world.tsx b/src/Icons/world-icon.tsx similarity index 90% rename from src/icons-test/world.tsx rename to src/Icons/world-icon.tsx index 8d3103a1..77aa6991 100644 --- a/src/icons-test/world.tsx +++ b/src/Icons/world-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const World = createASIcon( - "World", +const WorldIcon = createASIcon( + "WorldIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -30,4 +30,4 @@ const World = createASIcon( "outline", ); -export default World; +export default WorldIcon; diff --git a/src/icons-test/writing.tsx b/src/Icons/writing-icon.tsx similarity index 85% rename from src/icons-test/writing.tsx rename to src/Icons/writing-icon.tsx index 9853a783..71cb4033 100644 --- a/src/icons-test/writing.tsx +++ b/src/Icons/writing-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Writing = createASIcon( - "Writing", +const WritingIcon = createASIcon( + "WritingIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -19,4 +19,4 @@ const Writing = createASIcon( "outline", ); -export default Writing; +export default WritingIcon; diff --git a/src/icons-test/x.tsx b/src/Icons/x-icon.tsx similarity index 89% rename from src/icons-test/x.tsx rename to src/Icons/x-icon.tsx index b07e3316..b450f111 100644 --- a/src/icons-test/x.tsx +++ b/src/Icons/x-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const X = createASIcon( - "X", +const XIcon = createASIcon( + "XIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -27,4 +27,4 @@ const X = createASIcon( "outline", ); -export default X; +export default XIcon; diff --git a/src/icons-test/zoom-in.tsx b/src/Icons/zoom-in-icon.tsx similarity index 89% rename from src/icons-test/zoom-in.tsx rename to src/Icons/zoom-in-icon.tsx index 9600bbcb..9a7339ad 100644 --- a/src/icons-test/zoom-in.tsx +++ b/src/Icons/zoom-in-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ZoomIn = createASIcon( - "ZoomIn", +const ZoomInIcon = createASIcon( + "ZoomInIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const ZoomIn = createASIcon( "outline", ); -export default ZoomIn; +export default ZoomInIcon; diff --git a/src/icons-test/zoom-out.tsx b/src/Icons/zoom-out-icon.tsx similarity index 88% rename from src/icons-test/zoom-out.tsx rename to src/Icons/zoom-out-icon.tsx index d8b330b5..f4a9f299 100644 --- a/src/icons-test/zoom-out.tsx +++ b/src/Icons/zoom-out-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ZoomOut = createASIcon( - "ZoomOut", +const ZoomOutIcon = createASIcon( + "ZoomOutIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -28,4 +28,4 @@ const ZoomOut = createASIcon( "outline", ); -export default ZoomOut; +export default ZoomOutIcon; diff --git a/src/icons-test/zoom-question.tsx b/src/Icons/zoom-question-icon.tsx similarity index 87% rename from src/icons-test/zoom-question.tsx rename to src/Icons/zoom-question-icon.tsx index 7f2a7ffa..04c123d8 100644 --- a/src/icons-test/zoom-question.tsx +++ b/src/Icons/zoom-question-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const ZoomQuestion = createASIcon( - "ZoomQuestion", +const ZoomQuestionIcon = createASIcon( + "ZoomQuestionIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -29,4 +29,4 @@ const ZoomQuestion = createASIcon( "outline", ); -export default ZoomQuestion; +export default ZoomQuestionIcon; diff --git a/src/icons-omega/Crown Play.tsx b/src/icons-omega/Crown Play.tsx deleted file mode 100644 index 014ec320..00000000 --- a/src/icons-omega/Crown Play.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CrownPlay = createASIcon( - "CrownPlay", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default CrownPlay; diff --git a/src/icons-omega/Import.tsx b/src/icons-omega/Import.tsx deleted file mode 100644 index 930894ed..00000000 --- a/src/icons-omega/Import.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Import = createASIcon( - "Import", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Import; diff --git a/src/icons-omega/adjustments-horizontal.tsx b/src/icons-omega/adjustments-horizontal.tsx deleted file mode 100644 index 550bd0c9..00000000 --- a/src/icons-omega/adjustments-horizontal.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AdjustmentsHorizontal = createASIcon( - "AdjustmentsHorizontal", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - - , -); - -export default AdjustmentsHorizontal; diff --git a/src/icons-omega/adjustments.tsx b/src/icons-omega/adjustments.tsx deleted file mode 100644 index f397b03d..00000000 --- a/src/icons-omega/adjustments.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Adjustments = createASIcon( - "Adjustments", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - - , -); - -export default Adjustments; diff --git a/src/icons-omega/aftershoot-logo.tsx b/src/icons-omega/aftershoot-logo.tsx deleted file mode 100644 index 05e37dbf..00000000 --- a/src/icons-omega/aftershoot-logo.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AftershootLogo = createASIcon( - "AftershootLogo", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , -); - -export default AftershootLogo; diff --git a/src/icons-omega/alarm.tsx b/src/icons-omega/alarm.tsx deleted file mode 100644 index 9f814899..00000000 --- a/src/icons-omega/alarm.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Alarm = createASIcon( - "Alarm", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default Alarm; diff --git a/src/icons-omega/alert-circle-fill.tsx b/src/icons-omega/alert-circle-fill.tsx deleted file mode 100644 index 300eb6dd..00000000 --- a/src/icons-omega/alert-circle-fill.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertCircleFill = createASIcon( - "AlertCircleFill", - { - xmlns: "http://www.w3.org/2000/svg", - viewBox: "0 0 21 20", - fill: "#555555", - }, - - - - - - - - - - - - , -); - -export default AlertCircleFill; diff --git a/src/icons-omega/alert-circle.tsx b/src/icons-omega/alert-circle.tsx deleted file mode 100644 index af966b54..00000000 --- a/src/icons-omega/alert-circle.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertCircle = createASIcon( - "AlertCircle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default AlertCircle; diff --git a/src/icons-omega/alert-octagon.tsx b/src/icons-omega/alert-octagon.tsx deleted file mode 100644 index a758f4a3..00000000 --- a/src/icons-omega/alert-octagon.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertOctagon = createASIcon( - "AlertOctagon", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default AlertOctagon; diff --git a/src/icons-omega/alert-triangle-fill.tsx b/src/icons-omega/alert-triangle-fill.tsx deleted file mode 100644 index e80d1c76..00000000 --- a/src/icons-omega/alert-triangle-fill.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertTriangleFill = createASIcon( - "AlertTriangleFill", - { - xmlns: "http://www.w3.org/2000/svg", - viewBox: "0 0 54 46", - }, - - - - , -); - -export default AlertTriangleFill; diff --git a/src/icons-omega/alert-triangle.tsx b/src/icons-omega/alert-triangle.tsx deleted file mode 100644 index 6e274d74..00000000 --- a/src/icons-omega/alert-triangle.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AlertTriangle = createASIcon( - "AlertTriangle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default AlertTriangle; diff --git a/src/icons-omega/apple-all.tsx b/src/icons-omega/apple-all.tsx deleted file mode 100644 index db1ad933..00000000 --- a/src/icons-omega/apple-all.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const AppleAll = createASIcon( - "AppleAll", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 17 20", - }, - - - , -); - -export default AppleAll; diff --git a/src/icons-omega/arrow-curve-fill.tsx b/src/icons-omega/arrow-curve-fill.tsx deleted file mode 100644 index 0572bd48..00000000 --- a/src/icons-omega/arrow-curve-fill.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowCurveFill = createASIcon( - "ArrowCurveFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 16 11", - }, - - - , -); - -export default ArrowCurveFill; diff --git a/src/icons-omega/arrow-down.tsx b/src/icons-omega/arrow-down.tsx deleted file mode 100644 index c2513781..00000000 --- a/src/icons-omega/arrow-down.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowDown = createASIcon( - "ArrowDown", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowDown; diff --git a/src/icons-omega/arrow-left.tsx b/src/icons-omega/arrow-left.tsx deleted file mode 100644 index 1e716d54..00000000 --- a/src/icons-omega/arrow-left.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowLeft = createASIcon( - "ArrowLeft", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowLeft; diff --git a/src/icons-omega/arrow-narrow-left.tsx b/src/icons-omega/arrow-narrow-left.tsx deleted file mode 100644 index 5c7e8864..00000000 --- a/src/icons-omega/arrow-narrow-left.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowNarrowLeft = createASIcon( - "ArrowNarrowLeft", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowNarrowLeft; diff --git a/src/icons-omega/arrow-narrow-right.tsx b/src/icons-omega/arrow-narrow-right.tsx deleted file mode 100644 index 4483fb0f..00000000 --- a/src/icons-omega/arrow-narrow-right.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowNarrowRight = createASIcon( - "ArrowNarrowRight", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowNarrowRight; diff --git a/src/icons-omega/arrow-right.tsx b/src/icons-omega/arrow-right.tsx deleted file mode 100644 index f8121174..00000000 --- a/src/icons-omega/arrow-right.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowRight = createASIcon( - "ArrowRight", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowRight; diff --git a/src/icons-omega/arrow-sort-2.tsx b/src/icons-omega/arrow-sort-2.tsx deleted file mode 100644 index 1b0ab751..00000000 --- a/src/icons-omega/arrow-sort-2.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowSort2 = createASIcon( - "ArrowSort2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default ArrowSort2; diff --git a/src/icons-omega/arrow-up.tsx b/src/icons-omega/arrow-up.tsx deleted file mode 100644 index 93ddaaca..00000000 --- a/src/icons-omega/arrow-up.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowUp = createASIcon( - "ArrowUp", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ArrowUp; diff --git a/src/icons-omega/arrows-diagonal.tsx b/src/icons-omega/arrows-diagonal.tsx deleted file mode 100644 index 9fafceb6..00000000 --- a/src/icons-omega/arrows-diagonal.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowsDiagonal = createASIcon( - "ArrowsDiagonal", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default ArrowsDiagonal; diff --git a/src/icons-omega/arrows-sort.tsx b/src/icons-omega/arrows-sort.tsx deleted file mode 100644 index 93968a93..00000000 --- a/src/icons-omega/arrows-sort.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ArrowsSort = createASIcon( - "ArrowsSort", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default ArrowsSort; diff --git a/src/icons-omega/atom.tsx b/src/icons-omega/atom.tsx deleted file mode 100644 index 4b6b0698..00000000 --- a/src/icons-omega/atom.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Atom = createASIcon( - "Atom", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Atom; diff --git a/src/icons-omega/ban.tsx b/src/icons-omega/ban.tsx deleted file mode 100644 index 90ccf4e9..00000000 --- a/src/icons-omega/ban.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Ban = createASIcon( - "Ban", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Ban; diff --git a/src/icons-omega/bell-minus.tsx b/src/icons-omega/bell-minus.tsx deleted file mode 100644 index 2f773a70..00000000 --- a/src/icons-omega/bell-minus.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellMinus = createASIcon( - "BellMinus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default BellMinus; diff --git a/src/icons-omega/bell-off.tsx b/src/icons-omega/bell-off.tsx deleted file mode 100644 index 65823aa1..00000000 --- a/src/icons-omega/bell-off.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellOff = createASIcon( - "BellOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default BellOff; diff --git a/src/icons-omega/bell-plus.tsx b/src/icons-omega/bell-plus.tsx deleted file mode 100644 index 5e344863..00000000 --- a/src/icons-omega/bell-plus.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellPlus = createASIcon( - "BellPlus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default BellPlus; diff --git a/src/icons-omega/bell-ringing-2.tsx b/src/icons-omega/bell-ringing-2.tsx deleted file mode 100644 index a5e58ccf..00000000 --- a/src/icons-omega/bell-ringing-2.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellRinging2 = createASIcon( - "BellRinging2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default BellRinging2; diff --git a/src/icons-omega/bell-ringing.tsx b/src/icons-omega/bell-ringing.tsx deleted file mode 100644 index 6baa4943..00000000 --- a/src/icons-omega/bell-ringing.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellRinging = createASIcon( - "BellRinging", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default BellRinging; diff --git a/src/icons-omega/bell-x.tsx b/src/icons-omega/bell-x.tsx deleted file mode 100644 index 94f96237..00000000 --- a/src/icons-omega/bell-x.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BellX = createASIcon( - "BellX", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default BellX; diff --git a/src/icons-omega/bell.tsx b/src/icons-omega/bell.tsx deleted file mode 100644 index 7d4f77ea..00000000 --- a/src/icons-omega/bell.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Bell = createASIcon( - "Bell", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Bell; diff --git a/src/icons-omega/brand-facebook.tsx b/src/icons-omega/brand-facebook.tsx deleted file mode 100644 index 699bd690..00000000 --- a/src/icons-omega/brand-facebook.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandFacebook = createASIcon( - "BrandFacebook", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default BrandFacebook; diff --git a/src/icons-omega/brand-github.tsx b/src/icons-omega/brand-github.tsx deleted file mode 100644 index 07749138..00000000 --- a/src/icons-omega/brand-github.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandGithub = createASIcon( - "BrandGithub", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default BrandGithub; diff --git a/src/icons-omega/brand-instagram.tsx b/src/icons-omega/brand-instagram.tsx deleted file mode 100644 index dc5e4ee4..00000000 --- a/src/icons-omega/brand-instagram.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandInstagram = createASIcon( - "BrandInstagram", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default BrandInstagram; diff --git a/src/icons-omega/brand-twitter.tsx b/src/icons-omega/brand-twitter.tsx deleted file mode 100644 index 91d7d475..00000000 --- a/src/icons-omega/brand-twitter.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandTwitter = createASIcon( - "BrandTwitter", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - , -); - -export default BrandTwitter; diff --git a/src/icons-omega/brand-whatsapp.tsx b/src/icons-omega/brand-whatsapp.tsx deleted file mode 100644 index de124e8c..00000000 --- a/src/icons-omega/brand-whatsapp.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandWhatsapp = createASIcon( - "BrandWhatsapp", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default BrandWhatsapp; diff --git a/src/icons-omega/brand-youtube.tsx b/src/icons-omega/brand-youtube.tsx deleted file mode 100644 index 7d60ea11..00000000 --- a/src/icons-omega/brand-youtube.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BrandYoutube = createASIcon( - "BrandYoutube", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default BrandYoutube; diff --git a/src/icons-omega/bulb-off.tsx b/src/icons-omega/bulb-off.tsx deleted file mode 100644 index 4f94fd59..00000000 --- a/src/icons-omega/bulb-off.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const BulbOff = createASIcon( - "BulbOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default BulbOff; diff --git a/src/icons-omega/bulb.tsx b/src/icons-omega/bulb.tsx deleted file mode 100644 index e2095d7f..00000000 --- a/src/icons-omega/bulb.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Bulb = createASIcon( - "Bulb", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Bulb; diff --git a/src/icons-omega/check.tsx b/src/icons-omega/check.tsx deleted file mode 100644 index 98260935..00000000 --- a/src/icons-omega/check.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Check = createASIcon( - "Check", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Check; diff --git a/src/icons-omega/checkBlue.tsx b/src/icons-omega/checkBlue.tsx deleted file mode 100644 index cb3894d9..00000000 --- a/src/icons-omega/checkBlue.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CheckBlue = createASIcon( - "CheckBlue", - { - xmlns: "http://www.w3.org/2000/svg", - viewBox: "0 0 17 16", - fill: "#555555", - }, - - - - - - - - - - , -); - -export default CheckBlue; diff --git a/src/icons-omega/check_box.tsx b/src/icons-omega/check_box.tsx deleted file mode 100644 index 2b5a0400..00000000 --- a/src/icons-omega/check_box.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CheckBox = createASIcon( - "CheckBox", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - - - , -); - -export default CheckBox; diff --git a/src/icons-omega/check_box_empty.tsx b/src/icons-omega/check_box_empty.tsx deleted file mode 100644 index d1164bb1..00000000 --- a/src/icons-omega/check_box_empty.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CheckBoxEmpty = createASIcon( - "CheckBoxEmpty", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - , -); - -export default CheckBoxEmpty; diff --git a/src/icons-omega/chevron-down.tsx b/src/icons-omega/chevron-down.tsx deleted file mode 100644 index c8f8ad81..00000000 --- a/src/icons-omega/chevron-down.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronDown = createASIcon( - "ChevronDown", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ChevronDown; diff --git a/src/icons-omega/chevron-left.tsx b/src/icons-omega/chevron-left.tsx deleted file mode 100644 index bb50e0b0..00000000 --- a/src/icons-omega/chevron-left.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronLeft = createASIcon( - "ChevronLeft", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ChevronLeft; diff --git a/src/icons-omega/chevron-right.tsx b/src/icons-omega/chevron-right.tsx deleted file mode 100644 index 5e23b559..00000000 --- a/src/icons-omega/chevron-right.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronRight = createASIcon( - "ChevronRight", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ChevronRight; diff --git a/src/icons-omega/chevron-up.tsx b/src/icons-omega/chevron-up.tsx deleted file mode 100644 index 0b23fa7c..00000000 --- a/src/icons-omega/chevron-up.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronUp = createASIcon( - "ChevronUp", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ChevronUp; diff --git a/src/icons-omega/chevrons-left.tsx b/src/icons-omega/chevrons-left.tsx deleted file mode 100644 index b35bcd57..00000000 --- a/src/icons-omega/chevrons-left.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronsLeft = createASIcon( - "ChevronsLeft", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default ChevronsLeft; diff --git a/src/icons-omega/chevrons-right.tsx b/src/icons-omega/chevrons-right.tsx deleted file mode 100644 index c09015d5..00000000 --- a/src/icons-omega/chevrons-right.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ChevronsRight = createASIcon( - "ChevronsRight", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default ChevronsRight; diff --git a/src/icons-omega/circle-check-2.tsx b/src/icons-omega/circle-check-2.tsx deleted file mode 100644 index d7b0cebf..00000000 --- a/src/icons-omega/circle-check-2.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CircleCheck2 = createASIcon( - "CircleCheck2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default CircleCheck2; diff --git a/src/icons-omega/circle-check.tsx b/src/icons-omega/circle-check.tsx deleted file mode 100644 index dcd40089..00000000 --- a/src/icons-omega/circle-check.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CircleCheck = createASIcon( - "CircleCheck", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default CircleCheck; diff --git a/src/icons-omega/circle-fill.tsx b/src/icons-omega/circle-fill.tsx deleted file mode 100644 index 6b11379a..00000000 --- a/src/icons-omega/circle-fill.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CircleFill = createASIcon( - "CircleFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , -); - -export default CircleFill; diff --git a/src/icons-omega/circle.tsx b/src/icons-omega/circle.tsx deleted file mode 100644 index 871bb8a2..00000000 --- a/src/icons-omega/circle.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Circle = createASIcon( - "Circle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Circle; diff --git a/src/icons-omega/clock.tsx b/src/icons-omega/clock.tsx deleted file mode 100644 index 49f19451..00000000 --- a/src/icons-omega/clock.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Clock = createASIcon( - "Clock", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Clock; diff --git a/src/icons-omega/cloud-upload-accent.tsx b/src/icons-omega/cloud-upload-accent.tsx deleted file mode 100644 index 82757b42..00000000 --- a/src/icons-omega/cloud-upload-accent.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CloudUploadAccent = createASIcon( - "CloudUploadAccent", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 48 48", - }, - - - - , -); - -export default CloudUploadAccent; diff --git a/src/icons-omega/cloud-upload.tsx b/src/icons-omega/cloud-upload.tsx deleted file mode 100644 index dbcb8f83..00000000 --- a/src/icons-omega/cloud-upload.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CloudUpload = createASIcon( - "CloudUpload", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default CloudUpload; diff --git a/src/icons-omega/collection.tsx b/src/icons-omega/collection.tsx deleted file mode 100644 index 09c1467f..00000000 --- a/src/icons-omega/collection.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Collection = createASIcon( - "Collection", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 25 24", - }, - - - - - - - - - - - , -); - -export default Collection; diff --git a/src/icons-omega/color-swatch.tsx b/src/icons-omega/color-swatch.tsx deleted file mode 100644 index daed5450..00000000 --- a/src/icons-omega/color-swatch.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ColorSwatch = createASIcon( - "ColorSwatch", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default ColorSwatch; diff --git a/src/icons-omega/confetti.tsx b/src/icons-omega/confetti.tsx deleted file mode 100644 index 744ada2b..00000000 --- a/src/icons-omega/confetti.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Confetti = createASIcon( - "Confetti", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - - - , -); - -export default Confetti; diff --git a/src/icons-omega/copy.tsx b/src/icons-omega/copy.tsx deleted file mode 100644 index dbcf8bcc..00000000 --- a/src/icons-omega/copy.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Copy = createASIcon( - "Copy", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default Copy; diff --git a/src/icons-omega/crown-2-fill.tsx b/src/icons-omega/crown-2-fill.tsx deleted file mode 100644 index b9dbe063..00000000 --- a/src/icons-omega/crown-2-fill.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Crown2Fill = createASIcon( - "Crown2Fill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default Crown2Fill; diff --git a/src/icons-omega/crown.tsx b/src/icons-omega/crown.tsx deleted file mode 100644 index 9e13ea6d..00000000 --- a/src/icons-omega/crown.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Crown = createASIcon( - "Crown", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Crown; diff --git a/src/icons-omega/currency-dollar.tsx b/src/icons-omega/currency-dollar.tsx deleted file mode 100644 index fe83052b..00000000 --- a/src/icons-omega/currency-dollar.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CurrencyDollar = createASIcon( - "CurrencyDollar", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default CurrencyDollar; diff --git a/src/icons-omega/current-location.tsx b/src/icons-omega/current-location.tsx deleted file mode 100644 index 050366cc..00000000 --- a/src/icons-omega/current-location.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const CurrentLocation = createASIcon( - "CurrentLocation", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - - , -); - -export default CurrentLocation; diff --git a/src/icons-omega/device-desktop-analytics.tsx b/src/icons-omega/device-desktop-analytics.tsx deleted file mode 100644 index b084f92d..00000000 --- a/src/icons-omega/device-desktop-analytics.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DeviceDesktopAnalytics = createASIcon( - "DeviceDesktopAnalytics", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - , -); - -export default DeviceDesktopAnalytics; diff --git a/src/icons-omega/device-desktop-off.tsx b/src/icons-omega/device-desktop-off.tsx deleted file mode 100644 index d52f42b1..00000000 --- a/src/icons-omega/device-desktop-off.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DeviceDesktopOff = createASIcon( - "DeviceDesktopOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - , -); - -export default DeviceDesktopOff; diff --git a/src/icons-omega/device-desktop.tsx b/src/icons-omega/device-desktop.tsx deleted file mode 100644 index 9fb02726..00000000 --- a/src/icons-omega/device-desktop.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DeviceDesktop = createASIcon( - "DeviceDesktop", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default DeviceDesktop; diff --git a/src/icons-omega/device-laptop.tsx b/src/icons-omega/device-laptop.tsx deleted file mode 100644 index 19d80c10..00000000 --- a/src/icons-omega/device-laptop.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DeviceLaptop = createASIcon( - "DeviceLaptop", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default DeviceLaptop; diff --git a/src/icons-omega/device-tv.tsx b/src/icons-omega/device-tv.tsx deleted file mode 100644 index 262b949e..00000000 --- a/src/icons-omega/device-tv.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DeviceTv = createASIcon( - "DeviceTv", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default DeviceTv; diff --git a/src/icons-omega/diamond.tsx b/src/icons-omega/diamond.tsx deleted file mode 100644 index 5bb0d5e0..00000000 --- a/src/icons-omega/diamond.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Diamond = createASIcon( - "Diamond", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Diamond; diff --git a/src/icons-omega/discount-2.tsx b/src/icons-omega/discount-2.tsx deleted file mode 100644 index 5b3ef4e9..00000000 --- a/src/icons-omega/discount-2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Discount2 = createASIcon( - "Discount2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default Discount2; diff --git a/src/icons-omega/discount.tsx b/src/icons-omega/discount.tsx deleted file mode 100644 index 2e1297f9..00000000 --- a/src/icons-omega/discount.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Discount = createASIcon( - "Discount", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default Discount; diff --git a/src/icons-omega/disk.tsx b/src/icons-omega/disk.tsx deleted file mode 100644 index 93127069..00000000 --- a/src/icons-omega/disk.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Disk = createASIcon( - "Disk", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 32 32", - }, - - - - - - , -); - -export default Disk; diff --git a/src/icons-omega/dots-vertical.tsx b/src/icons-omega/dots-vertical.tsx deleted file mode 100644 index 09e3196b..00000000 --- a/src/icons-omega/dots-vertical.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DotsVertical = createASIcon( - "DotsVertical", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default DotsVertical; diff --git a/src/icons-omega/download-accent.tsx b/src/icons-omega/download-accent.tsx deleted file mode 100644 index 2ca729b9..00000000 --- a/src/icons-omega/download-accent.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const DownloadAccent = createASIcon( - "DownloadAccent", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default DownloadAccent; diff --git a/src/icons-omega/download.tsx b/src/icons-omega/download.tsx deleted file mode 100644 index 91fd3ed3..00000000 --- a/src/icons-omega/download.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Download = createASIcon( - "Download", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Download; diff --git a/src/icons-omega/edit.tsx b/src/icons-omega/edit.tsx deleted file mode 100644 index 05c28eb5..00000000 --- a/src/icons-omega/edit.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Edit = createASIcon( - "Edit", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Edit; diff --git a/src/icons-omega/external-link.tsx b/src/icons-omega/external-link.tsx deleted file mode 100644 index 0a027839..00000000 --- a/src/icons-omega/external-link.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ExternalLink = createASIcon( - "ExternalLink", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default ExternalLink; diff --git a/src/icons-omega/eye-check.tsx b/src/icons-omega/eye-check.tsx deleted file mode 100644 index c47d1d9b..00000000 --- a/src/icons-omega/eye-check.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const EyeCheck = createASIcon( - "EyeCheck", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default EyeCheck; diff --git a/src/icons-omega/eye-off.tsx b/src/icons-omega/eye-off.tsx deleted file mode 100644 index 6b1bbeb8..00000000 --- a/src/icons-omega/eye-off.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const EyeOff = createASIcon( - "EyeOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default EyeOff; diff --git a/src/icons-omega/eye.tsx b/src/icons-omega/eye.tsx deleted file mode 100644 index f7b5b6bb..00000000 --- a/src/icons-omega/eye.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Eye = createASIcon( - "Eye", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Eye; diff --git a/src/icons-omega/facebook.tsx b/src/icons-omega/facebook.tsx deleted file mode 100644 index b62c4761..00000000 --- a/src/icons-omega/facebook.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Facebook = createASIcon( - "Facebook", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , -); - -export default Facebook; diff --git a/src/icons-omega/file-download.tsx b/src/icons-omega/file-download.tsx deleted file mode 100644 index 3ae0c0f3..00000000 --- a/src/icons-omega/file-download.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FileDownload = createASIcon( - "FileDownload", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default FileDownload; diff --git a/src/icons-omega/file-export.tsx b/src/icons-omega/file-export.tsx deleted file mode 100644 index bfe481b1..00000000 --- a/src/icons-omega/file-export.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FileExport = createASIcon( - "FileExport", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default FileExport; diff --git a/src/icons-omega/file-report.tsx b/src/icons-omega/file-report.tsx deleted file mode 100644 index 5df304c4..00000000 --- a/src/icons-omega/file-report.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FileReport = createASIcon( - "FileReport", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default FileReport; diff --git a/src/icons-omega/file-search.tsx b/src/icons-omega/file-search.tsx deleted file mode 100644 index 7a0e8b41..00000000 --- a/src/icons-omega/file-search.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FileSearch = createASIcon( - "FileSearch", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default FileSearch; diff --git a/src/icons-omega/filter-off.tsx b/src/icons-omega/filter-off.tsx deleted file mode 100644 index a218df62..00000000 --- a/src/icons-omega/filter-off.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FilterOff = createASIcon( - "FilterOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default FilterOff; diff --git a/src/icons-omega/filter.tsx b/src/icons-omega/filter.tsx deleted file mode 100644 index a143b1ab..00000000 --- a/src/icons-omega/filter.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Filter = createASIcon( - "Filter", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Filter; diff --git a/src/icons-omega/flag-fill.tsx b/src/icons-omega/flag-fill.tsx deleted file mode 100644 index a67178ce..00000000 --- a/src/icons-omega/flag-fill.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FlagFill = createASIcon( - "FlagFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 20 20", - }, - - - - - - - - - - - , -); - -export default FlagFill; diff --git a/src/icons-omega/flag-off.tsx b/src/icons-omega/flag-off.tsx deleted file mode 100644 index 2a29e427..00000000 --- a/src/icons-omega/flag-off.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FlagOff = createASIcon( - "FlagOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default FlagOff; diff --git a/src/icons-omega/flag.tsx b/src/icons-omega/flag.tsx deleted file mode 100644 index 44bc6403..00000000 --- a/src/icons-omega/flag.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Flag = createASIcon( - "Flag", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - , -); - -export default Flag; diff --git a/src/icons-omega/folder-download.tsx b/src/icons-omega/folder-download.tsx deleted file mode 100644 index 120b38ef..00000000 --- a/src/icons-omega/folder-download.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderDownload = createASIcon( - "FolderDownload", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default FolderDownload; diff --git a/src/icons-omega/folder-eye.tsx b/src/icons-omega/folder-eye.tsx deleted file mode 100644 index 6c501951..00000000 --- a/src/icons-omega/folder-eye.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderEye = createASIcon( - "FolderEye", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default FolderEye; diff --git a/src/icons-omega/folder-fill.tsx b/src/icons-omega/folder-fill.tsx deleted file mode 100644 index c6ac4915..00000000 --- a/src/icons-omega/folder-fill.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderFill = createASIcon( - "FolderFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - , -); - -export default FolderFill; diff --git a/src/icons-omega/folder-minus.tsx b/src/icons-omega/folder-minus.tsx deleted file mode 100644 index 4a19f8c6..00000000 --- a/src/icons-omega/folder-minus.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderMinus = createASIcon( - "FolderMinus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default FolderMinus; diff --git a/src/icons-omega/folder-off.tsx b/src/icons-omega/folder-off.tsx deleted file mode 100644 index 7c584392..00000000 --- a/src/icons-omega/folder-off.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderOff = createASIcon( - "FolderOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default FolderOff; diff --git a/src/icons-omega/folder-plus.tsx b/src/icons-omega/folder-plus.tsx deleted file mode 100644 index 741a213e..00000000 --- a/src/icons-omega/folder-plus.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderPlus = createASIcon( - "FolderPlus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default FolderPlus; diff --git a/src/icons-omega/folder-upload.tsx b/src/icons-omega/folder-upload.tsx deleted file mode 100644 index 82571043..00000000 --- a/src/icons-omega/folder-upload.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderUpload = createASIcon( - "FolderUpload", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default FolderUpload; diff --git a/src/icons-omega/folder-x.tsx b/src/icons-omega/folder-x.tsx deleted file mode 100644 index 881b39b4..00000000 --- a/src/icons-omega/folder-x.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const FolderX = createASIcon( - "FolderX", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default FolderX; diff --git a/src/icons-omega/folder.tsx b/src/icons-omega/folder.tsx deleted file mode 100644 index 1c4be506..00000000 --- a/src/icons-omega/folder.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Folder = createASIcon( - "Folder", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - , -); - -export default Folder; diff --git a/src/icons-omega/folders.tsx b/src/icons-omega/folders.tsx deleted file mode 100644 index 2b565d8b..00000000 --- a/src/icons-omega/folders.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Folders = createASIcon( - "Folders", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default Folders; diff --git a/src/icons-omega/grid-dots.tsx b/src/icons-omega/grid-dots.tsx deleted file mode 100644 index ced9cc11..00000000 --- a/src/icons-omega/grid-dots.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const GridDots = createASIcon( - "GridDots", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - - , -); - -export default GridDots; diff --git a/src/icons-omega/grid-view-1.tsx b/src/icons-omega/grid-view-1.tsx deleted file mode 100644 index 72e5f10a..00000000 --- a/src/icons-omega/grid-view-1.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const GridView1 = createASIcon( - "GridView1", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - , -); - -export default GridView1; diff --git a/src/icons-omega/grid-view-2.tsx b/src/icons-omega/grid-view-2.tsx deleted file mode 100644 index 752e2184..00000000 --- a/src/icons-omega/grid-view-2.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const GridView2 = createASIcon( - "GridView2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - , -); - -export default GridView2; diff --git a/src/icons-omega/home-2.tsx b/src/icons-omega/home-2.tsx deleted file mode 100644 index b735269e..00000000 --- a/src/icons-omega/home-2.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Home2 = createASIcon( - "Home2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - - - , -); - -export default Home2; diff --git a/src/icons-omega/home-mix.tsx b/src/icons-omega/home-mix.tsx deleted file mode 100644 index 78bd8ee4..00000000 --- a/src/icons-omega/home-mix.tsx +++ /dev/null @@ -1,54 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const HomeMix = createASIcon( - "HomeMix", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 21 20", - }, - - - - - - - - - - - - - - , -); - -export default HomeMix; diff --git a/src/icons-omega/image-border.tsx b/src/icons-omega/image-border.tsx deleted file mode 100644 index a7bb7823..00000000 --- a/src/icons-omega/image-border.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ImageBorder = createASIcon( - "ImageBorder", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default ImageBorder; diff --git a/src/icons-omega/index.ts b/src/icons-omega/index.ts deleted file mode 100644 index f47a3471..00000000 --- a/src/icons-omega/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -export { default as AftershootLogo } from './aftershoot-logo'; -export { default as AppleAll } from './apple-all'; -export { default as ArrowCurveFill } from './arrow-curve-fill'; -export { default as CircleFill } from './circle-fill'; -export { default as Crown2Fill } from './crown-2-fill'; -export { default as Facebook } from './facebook'; -export { default as GridView1 } from './grid-view-1'; -export { default as GridView2 } from './grid-view-2'; -export { default as KeyDuplicateFill } from './key-duplicate-fill'; -export { default as ListFill } from './list-fill'; -export { default as Loop } from './loop'; -export { default as LoupeFill } from './loupe-fill'; -export { default as PaletteFill } from './palette-fill'; -export { default as PauseFill } from './pause-fill'; -export { default as PlayFill } from './play-fill'; -export { default as ScissorsFill } from './scissors-fill'; - diff --git a/src/icons-omega/info-circle.tsx b/src/icons-omega/info-circle.tsx deleted file mode 100644 index e312d934..00000000 --- a/src/icons-omega/info-circle.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const InfoCircle = createASIcon( - "InfoCircle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default InfoCircle; diff --git a/src/icons-omega/info-cirlce-2.tsx b/src/icons-omega/info-cirlce-2.tsx deleted file mode 100644 index 01ee486f..00000000 --- a/src/icons-omega/info-cirlce-2.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const InfoCirlce2 = createASIcon( - "InfoCirlce2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 25 25", - }, - - - - - , -); - -export default InfoCirlce2; diff --git a/src/icons-omega/info-square.tsx b/src/icons-omega/info-square.tsx deleted file mode 100644 index ed65f48b..00000000 --- a/src/icons-omega/info-square.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const InfoSquare = createASIcon( - "InfoSquare", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default InfoSquare; diff --git a/src/icons-omega/info.tsx b/src/icons-omega/info.tsx deleted file mode 100644 index 4f001ec4..00000000 --- a/src/icons-omega/info.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Info = createASIcon( - "Info", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 18 18", - }, - - - - , -); - -export default Info; diff --git a/src/icons-omega/key-2.tsx b/src/icons-omega/key-2.tsx deleted file mode 100644 index 9d02f628..00000000 --- a/src/icons-omega/key-2.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Key2 = createASIcon( - "Key2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default Key2; diff --git a/src/icons-omega/key-duplicate-fill.tsx b/src/icons-omega/key-duplicate-fill.tsx deleted file mode 100644 index 5f68bdc9..00000000 --- a/src/icons-omega/key-duplicate-fill.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const KeyDuplicateFill = createASIcon( - "KeyDuplicateFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default KeyDuplicateFill; diff --git a/src/icons-omega/key-duplicate.tsx b/src/icons-omega/key-duplicate.tsx deleted file mode 100644 index b7f83063..00000000 --- a/src/icons-omega/key-duplicate.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const KeyDuplicate = createASIcon( - "KeyDuplicate", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default KeyDuplicate; diff --git a/src/icons-omega/key.tsx b/src/icons-omega/key.tsx deleted file mode 100644 index 1496b898..00000000 --- a/src/icons-omega/key.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Key = createASIcon( - "Key", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default Key; diff --git a/src/icons-omega/layout-sidebar-right-mix.tsx b/src/icons-omega/layout-sidebar-right-mix.tsx deleted file mode 100644 index a65ccc2c..00000000 --- a/src/icons-omega/layout-sidebar-right-mix.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LayoutSidebarRightMix = createASIcon( - "LayoutSidebarRightMix", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - , -); - -export default LayoutSidebarRightMix; diff --git a/src/icons-omega/link.tsx b/src/icons-omega/link.tsx deleted file mode 100644 index 9590959b..00000000 --- a/src/icons-omega/link.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Link = createASIcon( - "Link", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default Link; diff --git a/src/icons-omega/list-fill.tsx b/src/icons-omega/list-fill.tsx deleted file mode 100644 index b86856a0..00000000 --- a/src/icons-omega/list-fill.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ListFill = createASIcon( - "ListFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default ListFill; diff --git a/src/icons-omega/loader.tsx b/src/icons-omega/loader.tsx deleted file mode 100644 index f79f48cd..00000000 --- a/src/icons-omega/loader.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Loader = createASIcon( - "Loader", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - - , -); - -export default Loader; diff --git a/src/icons-omega/lock-2.tsx b/src/icons-omega/lock-2.tsx deleted file mode 100644 index 93ed731b..00000000 --- a/src/icons-omega/lock-2.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Lock2 = createASIcon( - "Lock2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Lock2; diff --git a/src/icons-omega/lock-off.tsx b/src/icons-omega/lock-off.tsx deleted file mode 100644 index f1367990..00000000 --- a/src/icons-omega/lock-off.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LockOff = createASIcon( - "LockOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default LockOff; diff --git a/src/icons-omega/lock-open.tsx b/src/icons-omega/lock-open.tsx deleted file mode 100644 index 274b3e7b..00000000 --- a/src/icons-omega/lock-open.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LockOpen = createASIcon( - "LockOpen", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default LockOpen; diff --git a/src/icons-omega/lock.tsx b/src/icons-omega/lock.tsx deleted file mode 100644 index b4bd13eb..00000000 --- a/src/icons-omega/lock.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Lock = createASIcon( - "Lock", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Lock; diff --git a/src/icons-omega/loop.tsx b/src/icons-omega/loop.tsx deleted file mode 100644 index d5b562ce..00000000 --- a/src/icons-omega/loop.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Loop = createASIcon( - "Loop", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 35 35", - }, - - - - - - , -); - -export default Loop; diff --git a/src/icons-omega/loupe-fill.tsx b/src/icons-omega/loupe-fill.tsx deleted file mode 100644 index 5c8bfc39..00000000 --- a/src/icons-omega/loupe-fill.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const LoupeFill = createASIcon( - "LoupeFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default LoupeFill; diff --git a/src/icons-omega/mail.tsx b/src/icons-omega/mail.tsx deleted file mode 100644 index 2abc389a..00000000 --- a/src/icons-omega/mail.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Mail = createASIcon( - "Mail", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Mail; diff --git a/src/icons-omega/map-2.tsx b/src/icons-omega/map-2.tsx deleted file mode 100644 index f38c0530..00000000 --- a/src/icons-omega/map-2.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Map2 = createASIcon( - "Map2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default Map2; diff --git a/src/icons-omega/map-pin-off.tsx b/src/icons-omega/map-pin-off.tsx deleted file mode 100644 index 30b1a1dd..00000000 --- a/src/icons-omega/map-pin-off.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MapPinOff = createASIcon( - "MapPinOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default MapPinOff; diff --git a/src/icons-omega/map-pin.tsx b/src/icons-omega/map-pin.tsx deleted file mode 100644 index 104fd023..00000000 --- a/src/icons-omega/map-pin.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MapPin = createASIcon( - "MapPin", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default MapPin; diff --git a/src/icons-omega/minus.tsx b/src/icons-omega/minus.tsx deleted file mode 100644 index 6fd42962..00000000 --- a/src/icons-omega/minus.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Minus = createASIcon( - "Minus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default Minus; diff --git a/src/icons-omega/mood-crazy-happy.tsx b/src/icons-omega/mood-crazy-happy.tsx deleted file mode 100644 index ef0f574c..00000000 --- a/src/icons-omega/mood-crazy-happy.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MoodCrazyHappy = createASIcon( - "MoodCrazyHappy", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - - , -); - -export default MoodCrazyHappy; diff --git a/src/icons-omega/mood-empty.tsx b/src/icons-omega/mood-empty.tsx deleted file mode 100644 index 4eeef6f7..00000000 --- a/src/icons-omega/mood-empty.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MoodEmpty = createASIcon( - "MoodEmpty", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default MoodEmpty; diff --git a/src/icons-omega/mood-sad.tsx b/src/icons-omega/mood-sad.tsx deleted file mode 100644 index 59ea30f0..00000000 --- a/src/icons-omega/mood-sad.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MoodSad = createASIcon( - "MoodSad", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default MoodSad; diff --git a/src/icons-omega/mood-smile.tsx b/src/icons-omega/mood-smile.tsx deleted file mode 100644 index 881a01ea..00000000 --- a/src/icons-omega/mood-smile.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MoodSmile = createASIcon( - "MoodSmile", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default MoodSmile; diff --git a/src/icons-omega/mood.tsx b/src/icons-omega/mood.tsx deleted file mode 100644 index e4bd5743..00000000 --- a/src/icons-omega/mood.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Mood = createASIcon( - "Mood", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 31 33", - }, - - - - - - - - - - - - - - , -); - -export default Mood; diff --git a/src/icons-omega/mood_gray.tsx b/src/icons-omega/mood_gray.tsx deleted file mode 100644 index bc7953b8..00000000 --- a/src/icons-omega/mood_gray.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MoodGray = createASIcon( - "MoodGray", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 31 33", - }, - - - - - - - - - - - - - - , -); - -export default MoodGray; diff --git a/src/icons-omega/mouse-left-2.tsx b/src/icons-omega/mouse-left-2.tsx deleted file mode 100644 index d0acf08a..00000000 --- a/src/icons-omega/mouse-left-2.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MouseLeft2 = createASIcon( - "MouseLeft2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 48 48", - }, - - - - - - - - - , -); - -export default MouseLeft2; diff --git a/src/icons-omega/mouse-left.tsx b/src/icons-omega/mouse-left.tsx deleted file mode 100644 index 58ecebc5..00000000 --- a/src/icons-omega/mouse-left.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MouseLeft = createASIcon( - "MouseLeft", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default MouseLeft; diff --git a/src/icons-omega/mouse-right.tsx b/src/icons-omega/mouse-right.tsx deleted file mode 100644 index c1ea1058..00000000 --- a/src/icons-omega/mouse-right.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const MouseRight = createASIcon( - "MouseRight", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default MouseRight; diff --git a/src/icons-omega/no-duplicate.tsx b/src/icons-omega/no-duplicate.tsx deleted file mode 100644 index 266775d5..00000000 --- a/src/icons-omega/no-duplicate.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const NoDuplicate = createASIcon( - "NoDuplicate", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 32 32", - }, - - - - - - , -); - -export default NoDuplicate; diff --git a/src/icons-omega/none-selected.tsx b/src/icons-omega/none-selected.tsx deleted file mode 100644 index 5e7e7988..00000000 --- a/src/icons-omega/none-selected.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const NoneSelected = createASIcon( - "NoneSelected", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default NoneSelected; diff --git a/src/icons-omega/palette-fill.tsx b/src/icons-omega/palette-fill.tsx deleted file mode 100644 index fb872be3..00000000 --- a/src/icons-omega/palette-fill.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PaletteFill = createASIcon( - "PaletteFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , -); - -export default PaletteFill; diff --git a/src/icons-omega/palette.tsx b/src/icons-omega/palette.tsx deleted file mode 100644 index af63eb3b..00000000 --- a/src/icons-omega/palette.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Palette = createASIcon( - "Palette", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default Palette; diff --git a/src/icons-omega/partially_checked.tsx b/src/icons-omega/partially_checked.tsx deleted file mode 100644 index cc9d02c1..00000000 --- a/src/icons-omega/partially_checked.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PartiallyChecked = createASIcon( - "PartiallyChecked", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 16 16", - }, - - - - - - , -); - -export default PartiallyChecked; diff --git a/src/icons-omega/pause-fill.tsx b/src/icons-omega/pause-fill.tsx deleted file mode 100644 index 7623a45a..00000000 --- a/src/icons-omega/pause-fill.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PauseFill = createASIcon( - "PauseFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default PauseFill; diff --git a/src/icons-omega/photo-off-2.tsx b/src/icons-omega/photo-off-2.tsx deleted file mode 100644 index ced8bd4f..00000000 --- a/src/icons-omega/photo-off-2.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PhotoOff2 = createASIcon( - "PhotoOff2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - , -); - -export default PhotoOff2; diff --git a/src/icons-omega/photo-off.tsx b/src/icons-omega/photo-off.tsx deleted file mode 100644 index e907d0e8..00000000 --- a/src/icons-omega/photo-off.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PhotoOff = createASIcon( - "PhotoOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default PhotoOff; diff --git a/src/icons-omega/photo-stack.tsx b/src/icons-omega/photo-stack.tsx deleted file mode 100644 index 904e64ba..00000000 --- a/src/icons-omega/photo-stack.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PhotoStack = createASIcon( - "PhotoStack", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default PhotoStack; diff --git a/src/icons-omega/photo.tsx b/src/icons-omega/photo.tsx deleted file mode 100644 index 0f1636a7..00000000 --- a/src/icons-omega/photo.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Photo = createASIcon( - "Photo", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default Photo; diff --git a/src/icons-omega/pinned.tsx b/src/icons-omega/pinned.tsx deleted file mode 100644 index 6add13c9..00000000 --- a/src/icons-omega/pinned.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Pinned = createASIcon( - "Pinned", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default Pinned; diff --git a/src/icons-omega/play-fill.tsx b/src/icons-omega/play-fill.tsx deleted file mode 100644 index 6b110c93..00000000 --- a/src/icons-omega/play-fill.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const PlayFill = createASIcon( - "PlayFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - , -); - -export default PlayFill; diff --git a/src/icons-omega/plus.tsx b/src/icons-omega/plus.tsx deleted file mode 100644 index 0ee983ae..00000000 --- a/src/icons-omega/plus.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Plus = createASIcon( - "Plus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - , -); - -export default Plus; diff --git a/src/icons-omega/question-mark.tsx b/src/icons-omega/question-mark.tsx deleted file mode 100644 index 1a43cf11..00000000 --- a/src/icons-omega/question-mark.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const QuestionMark = createASIcon( - "QuestionMark", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default QuestionMark; diff --git a/src/icons-omega/recull.tsx b/src/icons-omega/recull.tsx deleted file mode 100644 index 9ab9e909..00000000 --- a/src/icons-omega/recull.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Recull = createASIcon( - "Recull", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 46 46", - }, - - - - - - - - - , -); - -export default Recull; diff --git a/src/icons-omega/redeem.tsx b/src/icons-omega/redeem.tsx deleted file mode 100644 index fa2e77a1..00000000 --- a/src/icons-omega/redeem.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Redeem = createASIcon( - "Redeem", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - , -); - -export default Redeem; diff --git a/src/icons-omega/refresh-2.tsx b/src/icons-omega/refresh-2.tsx deleted file mode 100644 index 1e515102..00000000 --- a/src/icons-omega/refresh-2.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Refresh2 = createASIcon( - "Refresh2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - , -); - -export default Refresh2; diff --git a/src/icons-omega/refresh-alert.tsx b/src/icons-omega/refresh-alert.tsx deleted file mode 100644 index ea0e84e1..00000000 --- a/src/icons-omega/refresh-alert.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const RefreshAlert = createASIcon( - "RefreshAlert", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default RefreshAlert; diff --git a/src/icons-omega/refresh.tsx b/src/icons-omega/refresh.tsx deleted file mode 100644 index c0e8b740..00000000 --- a/src/icons-omega/refresh.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Refresh = createASIcon( - "Refresh", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Refresh; diff --git a/src/icons-omega/reload-alert.tsx b/src/icons-omega/reload-alert.tsx deleted file mode 100644 index 983069aa..00000000 --- a/src/icons-omega/reload-alert.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ReloadAlert = createASIcon( - "ReloadAlert", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 32 32", - }, - - - , -); - -export default ReloadAlert; diff --git a/src/icons-omega/rotate-90.tsx b/src/icons-omega/rotate-90.tsx deleted file mode 100644 index e2ed4497..00000000 --- a/src/icons-omega/rotate-90.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Rotate90 = createASIcon( - "Rotate90", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Rotate90; diff --git a/src/icons-omega/rotate-clockwise.tsx b/src/icons-omega/rotate-clockwise.tsx deleted file mode 100644 index 2a8eb12f..00000000 --- a/src/icons-omega/rotate-clockwise.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const RotateClockwise = createASIcon( - "RotateClockwise", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default RotateClockwise; diff --git a/src/icons-omega/rotate.tsx b/src/icons-omega/rotate.tsx deleted file mode 100644 index c67b2c31..00000000 --- a/src/icons-omega/rotate.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Rotate = createASIcon( - "Rotate", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Rotate; diff --git a/src/icons-omega/scissors-fill.tsx b/src/icons-omega/scissors-fill.tsx deleted file mode 100644 index b241e5c9..00000000 --- a/src/icons-omega/scissors-fill.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ScissorsFill = createASIcon( - "ScissorsFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", - viewBox: "0 0 24 24", - }, - - - - - - - - , -); - -export default ScissorsFill; diff --git a/src/icons-omega/search.tsx b/src/icons-omega/search.tsx deleted file mode 100644 index adc59b4d..00000000 --- a/src/icons-omega/search.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Search = createASIcon( - "Search", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Search; diff --git a/src/icons-omega/share.tsx b/src/icons-omega/share.tsx deleted file mode 100644 index 5d57d4f1..00000000 --- a/src/icons-omega/share.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Share = createASIcon( - "Share", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - , -); - -export default Share; diff --git a/src/icons-omega/shopping-cart-discount.tsx b/src/icons-omega/shopping-cart-discount.tsx deleted file mode 100644 index 7687e07c..00000000 --- a/src/icons-omega/shopping-cart-discount.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ShoppingCartDiscount = createASIcon( - "ShoppingCartDiscount", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - - - , -); - -export default ShoppingCartDiscount; diff --git a/src/icons-omega/shopping-cart.tsx b/src/icons-omega/shopping-cart.tsx deleted file mode 100644 index 87c6c270..00000000 --- a/src/icons-omega/shopping-cart.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ShoppingCart = createASIcon( - "ShoppingCart", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default ShoppingCart; diff --git a/src/icons-omega/sort-ascending-2.tsx b/src/icons-omega/sort-ascending-2.tsx deleted file mode 100644 index df53097b..00000000 --- a/src/icons-omega/sort-ascending-2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortAscending2 = createASIcon( - "SortAscending2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default SortAscending2; diff --git a/src/icons-omega/sort-ascending-letters.tsx b/src/icons-omega/sort-ascending-letters.tsx deleted file mode 100644 index 499dfdb5..00000000 --- a/src/icons-omega/sort-ascending-letters.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortAscendingLetters = createASIcon( - "SortAscendingLetters", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default SortAscendingLetters; diff --git a/src/icons-omega/sort-ascending-numbers.tsx b/src/icons-omega/sort-ascending-numbers.tsx deleted file mode 100644 index 43c4f20a..00000000 --- a/src/icons-omega/sort-ascending-numbers.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortAscendingNumbers = createASIcon( - "SortAscendingNumbers", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default SortAscendingNumbers; diff --git a/src/icons-omega/sort-ascending.tsx b/src/icons-omega/sort-ascending.tsx deleted file mode 100644 index b90dce95..00000000 --- a/src/icons-omega/sort-ascending.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortAscending = createASIcon( - "SortAscending", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default SortAscending; diff --git a/src/icons-omega/sort-descending-2.tsx b/src/icons-omega/sort-descending-2.tsx deleted file mode 100644 index f8cf0018..00000000 --- a/src/icons-omega/sort-descending-2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortDescending2 = createASIcon( - "SortDescending2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default SortDescending2; diff --git a/src/icons-omega/sort-descending-letters.tsx b/src/icons-omega/sort-descending-letters.tsx deleted file mode 100644 index 2cdccaa1..00000000 --- a/src/icons-omega/sort-descending-letters.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortDescendingLetters = createASIcon( - "SortDescendingLetters", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default SortDescendingLetters; diff --git a/src/icons-omega/sort-descending-numbers.tsx b/src/icons-omega/sort-descending-numbers.tsx deleted file mode 100644 index 1f8175c2..00000000 --- a/src/icons-omega/sort-descending-numbers.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortDescendingNumbers = createASIcon( - "SortDescendingNumbers", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default SortDescendingNumbers; diff --git a/src/icons-omega/sort-descending.tsx b/src/icons-omega/sort-descending.tsx deleted file mode 100644 index 062c582a..00000000 --- a/src/icons-omega/sort-descending.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const SortDescending = createASIcon( - "SortDescending", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default SortDescending; diff --git a/src/icons-omega/sparkle.tsx b/src/icons-omega/sparkle.tsx deleted file mode 100644 index 2856ed35..00000000 --- a/src/icons-omega/sparkle.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Sparkle = createASIcon( - "Sparkle", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default Sparkle; diff --git a/src/icons-omega/spray.tsx b/src/icons-omega/spray.tsx deleted file mode 100644 index 65ce7739..00000000 --- a/src/icons-omega/spray.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Spray = createASIcon( - "Spray", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 16 21", - }, - - - - , -); - -export default Spray; diff --git a/src/icons-omega/spray_2.tsx b/src/icons-omega/spray_2.tsx deleted file mode 100644 index 4cf742e8..00000000 --- a/src/icons-omega/spray_2.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Spray2 = createASIcon( - "Spray2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - , -); - -export default Spray2; diff --git a/src/icons-omega/stack-2.tsx b/src/icons-omega/stack-2.tsx deleted file mode 100644 index 19af835c..00000000 --- a/src/icons-omega/stack-2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Stack2 = createASIcon( - "Stack2", - { - xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Stack2; diff --git a/src/icons-omega/stack-double.tsx b/src/icons-omega/stack-double.tsx deleted file mode 100644 index 73edb4fd..00000000 --- a/src/icons-omega/stack-double.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StackDouble = createASIcon( - "StackDouble", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default StackDouble; diff --git a/src/icons-omega/stack-triple.tsx b/src/icons-omega/stack-triple.tsx deleted file mode 100644 index 352123b8..00000000 --- a/src/icons-omega/stack-triple.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StackTriple = createASIcon( - "StackTriple", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default StackTriple; diff --git a/src/icons-omega/stack.tsx b/src/icons-omega/stack.tsx deleted file mode 100644 index 692f2503..00000000 --- a/src/icons-omega/stack.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Stack = createASIcon( - "Stack", - { - xmlns: "http://www.w3.org/2000/svg", - width: "24", - height: "24", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Stack; diff --git a/src/icons-omega/star - 0.tsx b/src/icons-omega/star - 0.tsx deleted file mode 100644 index 621949a7..00000000 --- a/src/icons-omega/star - 0.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star0 = createASIcon( - "Star0", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star0; diff --git a/src/icons-omega/star - 1.tsx b/src/icons-omega/star - 1.tsx deleted file mode 100644 index b6ae4464..00000000 --- a/src/icons-omega/star - 1.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star1 = createASIcon( - "Star1", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star1; diff --git a/src/icons-omega/star - 2.tsx b/src/icons-omega/star - 2.tsx deleted file mode 100644 index cb7e46eb..00000000 --- a/src/icons-omega/star - 2.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star2 = createASIcon( - "Star2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star2; diff --git a/src/icons-omega/star - 3.tsx b/src/icons-omega/star - 3.tsx deleted file mode 100644 index c8b18905..00000000 --- a/src/icons-omega/star - 3.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star3 = createASIcon( - "Star3", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star3; diff --git a/src/icons-omega/star - 4.tsx b/src/icons-omega/star - 4.tsx deleted file mode 100644 index f8b88224..00000000 --- a/src/icons-omega/star - 4.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star4 = createASIcon( - "Star4", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star4; diff --git a/src/icons-omega/star - 5.tsx b/src/icons-omega/star - 5.tsx deleted file mode 100644 index c395f179..00000000 --- a/src/icons-omega/star - 5.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star5 = createASIcon( - "Star5", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Star5; diff --git a/src/icons-omega/star-fill.tsx b/src/icons-omega/star-fill.tsx deleted file mode 100644 index dafa6c51..00000000 --- a/src/icons-omega/star-fill.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StarFill = createASIcon( - "StarFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default StarFill; diff --git a/src/icons-omega/star-off-fill.tsx b/src/icons-omega/star-off-fill.tsx deleted file mode 100644 index 1f849c49..00000000 --- a/src/icons-omega/star-off-fill.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StarOffFill = createASIcon( - "StarOffFill", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - , -); - -export default StarOffFill; diff --git a/src/icons-omega/star-off.tsx b/src/icons-omega/star-off.tsx deleted file mode 100644 index 3f9e9a76..00000000 --- a/src/icons-omega/star-off.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const StarOff = createASIcon( - "StarOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default StarOff; diff --git a/src/icons-omega/star.tsx b/src/icons-omega/star.tsx deleted file mode 100644 index 12351d74..00000000 --- a/src/icons-omega/star.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Star = createASIcon( - "Star", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default Star; diff --git a/src/icons-omega/thumb-down.tsx b/src/icons-omega/thumb-down.tsx deleted file mode 100644 index c80808ea..00000000 --- a/src/icons-omega/thumb-down.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ThumbDown = createASIcon( - "ThumbDown", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ThumbDown; diff --git a/src/icons-omega/thumb-up.tsx b/src/icons-omega/thumb-up.tsx deleted file mode 100644 index fbfc709a..00000000 --- a/src/icons-omega/thumb-up.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ThumbUp = createASIcon( - "ThumbUp", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - , -); - -export default ThumbUp; diff --git a/src/icons-omega/trash-off.tsx b/src/icons-omega/trash-off.tsx deleted file mode 100644 index 9f20a9d8..00000000 --- a/src/icons-omega/trash-off.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const TrashOff = createASIcon( - "TrashOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - - - , -); - -export default TrashOff; diff --git a/src/icons-omega/trash.tsx b/src/icons-omega/trash.tsx deleted file mode 100644 index fa0357c1..00000000 --- a/src/icons-omega/trash.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Trash = createASIcon( - "Trash", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - - , -); - -export default Trash; diff --git a/src/icons-omega/unlink.tsx b/src/icons-omega/unlink.tsx deleted file mode 100644 index 6f158008..00000000 --- a/src/icons-omega/unlink.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Unlink = createASIcon( - "Unlink", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - - , -); - -export default Unlink; diff --git a/src/icons-omega/upload-2.tsx b/src/icons-omega/upload-2.tsx deleted file mode 100644 index 58653e13..00000000 --- a/src/icons-omega/upload-2.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Upload2 = createASIcon( - "Upload2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default Upload2; diff --git a/src/icons-omega/upload-accent.tsx b/src/icons-omega/upload-accent.tsx deleted file mode 100644 index ec493f81..00000000 --- a/src/icons-omega/upload-accent.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UploadAccent = createASIcon( - "UploadAccent", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 48 48", - }, - - - - - , -); - -export default UploadAccent; diff --git a/src/icons-omega/upload-c1-cat.tsx b/src/icons-omega/upload-c1-cat.tsx deleted file mode 100644 index d6dc6841..00000000 --- a/src/icons-omega/upload-c1-cat.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UploadC1Cat = createASIcon( - "UploadC1Cat", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - - - - - - , -); - -export default UploadC1Cat; diff --git a/src/icons-omega/upload-lr-cat.tsx b/src/icons-omega/upload-lr-cat.tsx deleted file mode 100644 index e2505ca3..00000000 --- a/src/icons-omega/upload-lr-cat.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UploadLrCat = createASIcon( - "UploadLrCat", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 36 36", - }, - - - - - - - - - - - - - - - - - - , -); - -export default UploadLrCat; diff --git a/src/icons-omega/upload.tsx b/src/icons-omega/upload.tsx deleted file mode 100644 index 7f5b9e1f..00000000 --- a/src/icons-omega/upload.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Upload = createASIcon( - "Upload", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Upload; diff --git a/src/icons-omega/user-check.tsx b/src/icons-omega/user-check.tsx deleted file mode 100644 index 664466aa..00000000 --- a/src/icons-omega/user-check.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserCheck = createASIcon( - "UserCheck", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default UserCheck; diff --git a/src/icons-omega/user-exclamation.tsx b/src/icons-omega/user-exclamation.tsx deleted file mode 100644 index fe1ab97d..00000000 --- a/src/icons-omega/user-exclamation.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserExclamation = createASIcon( - "UserExclamation", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default UserExclamation; diff --git a/src/icons-omega/user-minus.tsx b/src/icons-omega/user-minus.tsx deleted file mode 100644 index a094b90a..00000000 --- a/src/icons-omega/user-minus.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserMinus = createASIcon( - "UserMinus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default UserMinus; diff --git a/src/icons-omega/user-off.tsx b/src/icons-omega/user-off.tsx deleted file mode 100644 index 2ae3a14c..00000000 --- a/src/icons-omega/user-off.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserOff = createASIcon( - "UserOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default UserOff; diff --git a/src/icons-omega/user-plus.tsx b/src/icons-omega/user-plus.tsx deleted file mode 100644 index 9f46eb3d..00000000 --- a/src/icons-omega/user-plus.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserPlus = createASIcon( - "UserPlus", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default UserPlus; diff --git a/src/icons-omega/user-x.tsx b/src/icons-omega/user-x.tsx deleted file mode 100644 index 64a9376e..00000000 --- a/src/icons-omega/user-x.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const UserX = createASIcon( - "UserX", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default UserX; diff --git a/src/icons-omega/user.tsx b/src/icons-omega/user.tsx deleted file mode 100644 index 05bab755..00000000 --- a/src/icons-omega/user.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const User = createASIcon( - "User", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default User; diff --git a/src/icons-omega/users.tsx b/src/icons-omega/users.tsx deleted file mode 100644 index e4628985..00000000 --- a/src/icons-omega/users.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Users = createASIcon( - "Users", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default Users; diff --git a/src/icons-omega/view-all.tsx b/src/icons-omega/view-all.tsx deleted file mode 100644 index 70afea32..00000000 --- a/src/icons-omega/view-all.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ViewAll = createASIcon( - "ViewAll", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default ViewAll; diff --git a/src/icons-omega/viewfinder.tsx b/src/icons-omega/viewfinder.tsx deleted file mode 100644 index 8a2b62fc..00000000 --- a/src/icons-omega/viewfinder.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Viewfinder = createASIcon( - "Viewfinder", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - - , -); - -export default Viewfinder; diff --git a/src/icons-omega/wifi-1.tsx b/src/icons-omega/wifi-1.tsx deleted file mode 100644 index 27a39fe1..00000000 --- a/src/icons-omega/wifi-1.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Wifi1 = createASIcon( - "Wifi1", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default Wifi1; diff --git a/src/icons-omega/wifi-2.tsx b/src/icons-omega/wifi-2.tsx deleted file mode 100644 index 9be1a06c..00000000 --- a/src/icons-omega/wifi-2.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Wifi2 = createASIcon( - "Wifi2", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - , -); - -export default Wifi2; diff --git a/src/icons-omega/wifi-off.tsx b/src/icons-omega/wifi-off.tsx deleted file mode 100644 index 9d26c194..00000000 --- a/src/icons-omega/wifi-off.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const WifiOff = createASIcon( - "WifiOff", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - , -); - -export default WifiOff; diff --git a/src/icons-omega/wifi.tsx b/src/icons-omega/wifi.tsx deleted file mode 100644 index f6838928..00000000 --- a/src/icons-omega/wifi.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Wifi = createASIcon( - "Wifi", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - - - , -); - -export default Wifi; diff --git a/src/icons-omega/world.tsx b/src/icons-omega/world.tsx deleted file mode 100644 index 70694e87..00000000 --- a/src/icons-omega/world.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const World = createASIcon( - "World", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - - , -); - -export default World; diff --git a/src/icons-omega/writing.tsx b/src/icons-omega/writing.tsx deleted file mode 100644 index b68ef9cd..00000000 --- a/src/icons-omega/writing.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const Writing = createASIcon( - "Writing", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - , -); - -export default Writing; diff --git a/src/icons-omega/x.tsx b/src/icons-omega/x.tsx deleted file mode 100644 index 235de615..00000000 --- a/src/icons-omega/x.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const X = createASIcon( - "X", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 24", - }, - - - - - - - - - - - , -); - -export default X; diff --git a/src/icons-omega/zoom-in.tsx b/src/icons-omega/zoom-in.tsx deleted file mode 100644 index da2ef014..00000000 --- a/src/icons-omega/zoom-in.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ZoomIn = createASIcon( - "ZoomIn", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default ZoomIn; diff --git a/src/icons-omega/zoom-out.tsx b/src/icons-omega/zoom-out.tsx deleted file mode 100644 index 0d664ecf..00000000 --- a/src/icons-omega/zoom-out.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ZoomOut = createASIcon( - "ZoomOut", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - , -); - -export default ZoomOut; diff --git a/src/icons-omega/zoom-question.tsx b/src/icons-omega/zoom-question.tsx deleted file mode 100644 index b03593d8..00000000 --- a/src/icons-omega/zoom-question.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import createASIcon from "../createASIcon"; -import React from "react"; - -const ZoomQuestion = createASIcon( - "ZoomQuestion", - { - xmlns: "http://www.w3.org/2000/svg", - fill: "none", - viewBox: "0 0 24 25", - }, - - - - - - - - - - - - - , -); - -export default ZoomQuestion; diff --git a/src/icons-test/index.ts b/src/icons-test/index.ts deleted file mode 100644 index d4f2a699..00000000 --- a/src/icons-test/index.ts +++ /dev/null @@ -1,227 +0,0 @@ -export { default as Import } from './Import'; -export { default as AdjustmentsHorizontal } from './adjustments-horizontal'; -export { default as Adjustments } from './adjustments'; -export { default as AftershootCredit } from './aftershoot-credit'; -export { default as AftershootLogo } from './aftershoot-logo'; -export { default as Alarm } from './alarm'; -export { default as AlertCircleAccent } from './alert-circle-accent'; -export { default as AlertCircle } from './alert-circle'; -export { default as AlertOctagon } from './alert-octagon'; -export { default as AlertTriangleAccent } from './alert-triangle-accent'; -export { default as AlertTriangle } from './alert-triangle'; -export { default as Apple } from './apple'; -export { default as ArrowCurveFill } from './arrow-curve-fill'; -export { default as ArrowDown } from './arrow-down'; -export { default as ArrowLeft } from './arrow-left'; -export { default as ArrowNarrowLeft } from './arrow-narrow-left'; -export { default as ArrowNarrowRight } from './arrow-narrow-right'; -export { default as ArrowRight } from './arrow-right'; -export { default as ArrowSort2 } from './arrow-sort-2'; -export { default as ArrowUp } from './arrow-up'; -export { default as ArrowsDiagonal } from './arrows-diagonal'; -export { default as ArrowsSort } from './arrows-sort'; -export { default as AtomAccent } from './atom-accent'; -export { default as Atom } from './atom'; -export { default as Ban } from './ban'; -export { default as BellMinus } from './bell-minus'; -export { default as BellOff } from './bell-off'; -export { default as BellPlus } from './bell-plus'; -export { default as BellRinging2 } from './bell-ringing-2'; -export { default as BellRinging } from './bell-ringing'; -export { default as BellX } from './bell-x'; -export { default as Bell } from './bell'; -export { default as BrandFacebook } from './brand-facebook'; -export { default as BrandGithub } from './brand-github'; -export { default as BrandInstagram } from './brand-instagram'; -export { default as BrandTwitter } from './brand-twitter'; -export { default as BrandWhatsapp } from './brand-whatsapp'; -export { default as BrandYoutube } from './brand-youtube'; -export { default as BulbOff } from './bulb-off'; -export { default as Bulb } from './bulb'; -export { default as CheckBoxEmpty } from './check-box-empty'; -export { default as Check } from './check'; -export { default as CheckboxBlueAccent } from './checkbox-blue-accent'; -export { default as CheckboxGreenAccent } from './checkbox-green-accent'; -export { default as CheckboxPartialBlueAccent } from './checkbox-partial-blue-accent'; -export { default as ChevronDown } from './chevron-down'; -export { default as ChevronLeft } from './chevron-left'; -export { default as ChevronRight } from './chevron-right'; -export { default as ChevronUp } from './chevron-up'; -export { default as ChevronsLeft } from './chevrons-left'; -export { default as ChevronsRight } from './chevrons-right'; -export { default as CircleCheck2 } from './circle-check-2'; -export { default as CircleCheck } from './circle-check'; -export { default as CircleCrossAccent } from './circle-cross-accent'; -export { default as CircleFill } from './circle-fill'; -export { default as Circle } from './circle'; -export { default as Clock } from './clock'; -export { default as CloudUploadAccent } from './cloud-upload-accent'; -export { default as CloudUpload } from './cloud-upload'; -export { default as Collection } from './collection'; -export { default as ColorSwatch } from './color-swatch'; -export { default as Confetti } from './confetti'; -export { default as Copy } from './copy'; -export { default as Crown2Fill } from './crown-2-fill'; -export { default as Crown } from './crown'; -export { default as CurrencyDollar } from './currency-dollar'; -export { default as CurrentLocation } from './current-location'; -export { default as DeviceDesktopAnalytics } from './device-desktop-analytics'; -export { default as DeviceDesktopOff } from './device-desktop-off'; -export { default as DeviceDesktop } from './device-desktop'; -export { default as DeviceLaptop } from './device-laptop'; -export { default as DeviceTv } from './device-tv'; -export { default as Diamond } from './diamond'; -export { default as Discount2 } from './discount-2'; -export { default as Discount } from './discount'; -export { default as Disk } from './disk'; -export { default as DotsVertical } from './dots-vertical'; -export { default as DownloadAccent } from './download-accent'; -export { default as Download } from './download'; -export { default as EditIcon } from './edit-icon'; -export { default as Edit } from './edit'; -export { default as ExternalLink } from './external-link'; -export { default as EyeCheck } from './eye-check'; -export { default as EyeOff } from './eye-off'; -export { default as Eye } from './eye'; -export { default as Facebook } from './facebook'; -export { default as FileDownload } from './file-download'; -export { default as FileExport } from './file-export'; -export { default as FileReport } from './file-report'; -export { default as FileSearch } from './file-search'; -export { default as FilterOff } from './filter-off'; -export { default as Filter } from './filter'; -export { default as FlagFill } from './flag-fill'; -export { default as FlagOff } from './flag-off'; -export { default as Flag } from './flag'; -export { default as FolderDownload } from './folder-download'; -export { default as FolderEye } from './folder-eye'; -export { default as FolderFill } from './folder-fill'; -export { default as FolderMinus } from './folder-minus'; -export { default as FolderOff } from './folder-off'; -export { default as FolderPlus } from './folder-plus'; -export { default as FolderUpload } from './folder-upload'; -export { default as FolderX } from './folder-x'; -export { default as Folder } from './folder'; -export { default as Folders } from './folders'; -export { default as GoogleColor } from './google-color'; -export { default as GrabHand } from './grab-hand'; -export { default as GridDots } from './grid-dots'; -export { default as GridView1 } from './grid-view-1'; -export { default as GridView2 } from './grid-view-2'; -export { default as Home2 } from './home-2'; -export { default as HomeMix } from './home-mix'; -export { default as ImageBorder } from './image-border'; -export { default as InfoCircle } from './info-circle'; -export { default as InfoCirlce2 } from './info-cirlce-2'; -export { default as InfoSquare } from './info-square'; -export { default as Info } from './info'; -export { default as Key2 } from './key-2'; -export { default as KeyDuplicate } from './key-duplicate'; -export { default as Key } from './key'; -export { default as LayoutSidebarRightMix } from './layout-sidebar-right-mix'; -export { default as Link } from './link'; -export { default as ListFill } from './list-fill'; -export { default as Loader } from './loader'; -export { default as Lock2 } from './lock-2'; -export { default as LockOff } from './lock-off'; -export { default as LockOpen } from './lock-open'; -export { default as Lock } from './lock'; -export { default as Loop } from './loop'; -export { default as LoupeFill } from './loupe-fill'; -export { default as Mail } from './mail'; -export { default as Map2 } from './map-2'; -export { default as MapPinOff } from './map-pin-off'; -export { default as MapPin } from './map-pin'; -export { default as Minus } from './minus'; -export { default as MoodCrazyHappy } from './mood-crazy-happy'; -export { default as MoodEmpty } from './mood-empty'; -export { default as MoodGray } from './mood-gray'; -export { default as MoodSad } from './mood-sad'; -export { default as MoodSmile } from './mood-smile'; -export { default as Mood } from './mood'; -export { default as MouseLeft2 } from './mouse-left-2'; -export { default as MouseLeft } from './mouse-left'; -export { default as MouseRight } from './mouse-right'; -export { default as NoDuplicate } from './no-duplicate'; -export { default as NoneSelected } from './none-selected'; -export { default as PaletteFill } from './palette-fill'; -export { default as Palette } from './palette'; -export { default as PauseFill } from './pause-fill'; -export { default as PhotoOff2 } from './photo-off-2'; -export { default as PhotoOff } from './photo-off'; -export { default as PhotoStack } from './photo-stack'; -export { default as Photo } from './photo'; -export { default as Pinned } from './pinned'; -export { default as PlayFill } from './play-fill'; -export { default as Play } from './play'; -export { default as Player } from './player'; -export { default as Plus } from './plus'; -export { default as QuestionMark } from './question-mark'; -export { default as Recull } from './recull'; -export { default as Redeem } from './redeem'; -export { default as Refresh2 } from './refresh-2'; -export { default as RefreshAlert } from './refresh-alert'; -export { default as Refresh } from './refresh'; -export { default as ReloadAlert } from './reload-alert'; -export { default as RotateClockwise } from './rotate-clockwise'; -export { default as Rotate } from './rotate'; -export { default as Scissors } from './scissors'; -export { default as Search } from './search'; -export { default as Share } from './share'; -export { default as ShoppingCartDiscount } from './shopping-cart-discount'; -export { default as ShoppingCart } from './shopping-cart'; -export { default as SortAscending2 } from './sort-ascending-2'; -export { default as SortAscendingLetters } from './sort-ascending-letters'; -export { default as SortAscendingNumbers } from './sort-ascending-numbers'; -export { default as SortAscending } from './sort-ascending'; -export { default as SortDescending2 } from './sort-descending-2'; -export { default as SortDescendingLetters } from './sort-descending-letters'; -export { default as SortDescendingNumbers } from './sort-descending-numbers'; -export { default as SortDescending } from './sort-descending'; -export { default as Sparkle } from './sparkle'; -export { default as Spray } from './spray'; -export { default as Spray2 } from './spray_2'; -export { default as StackDouble } from './stack-double'; -export { default as StackTriple } from './stack-triple'; -export { default as Star0 } from './star - 0'; -export { default as Star1 } from './star - 1'; -export { default as Star2 } from './star - 2'; -export { default as Star3 } from './star - 3'; -export { default as Star4 } from './star - 4'; -export { default as Star5 } from './star - 5'; -export { default as StarFillOff } from './star-fill-off'; -export { default as StarFill } from './star-fill'; -export { default as StarOff } from './star-off'; -export { default as Star } from './star'; -export { default as SuccessDi } from './success-di'; -export { default as ThumbDown } from './thumb-down'; -export { default as ThumbUp } from './thumb-up'; -export { default as TrashOff } from './trash-off'; -export { default as Trash } from './trash'; -export { default as Unlink } from './unlink'; -export { default as Upload2 } from './upload-2'; -export { default as UploadAccent } from './upload-accent'; -export { default as UploadC1Cat } from './upload-c1-cat'; -export { default as UploadLrCat } from './upload-lr-cat'; -export { default as Upload } from './upload'; -export { default as UserCheck } from './user-check'; -export { default as UserExclamation } from './user-exclamation'; -export { default as UserMinus } from './user-minus'; -export { default as UserOff } from './user-off'; -export { default as UserPlus } from './user-plus'; -export { default as UserX } from './user-x'; -export { default as User } from './user'; -export { default as Users } from './users'; -export { default as ViewAll } from './view-all'; -export { default as Viewfinder } from './viewfinder'; -export { default as Wifi1 } from './wifi-1'; -export { default as Wifi2 } from './wifi-2'; -export { default as WifiOff } from './wifi-off'; -export { default as Wifi } from './wifi'; -export { default as World } from './world'; -export { default as Writing } from './writing'; -export { default as X } from './x'; -export { default as ZoomIn } from './zoom-in'; -export { default as ZoomOut } from './zoom-out'; -export { default as ZoomQuestion } from './zoom-question'; - diff --git a/src/index.ts b/src/index.ts index 6c3f5005..a0c00d87 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,3 @@ export * from './icons' +// export * from './icons-legacy' // export * from './img' diff --git a/src/stories/AdjustmentsHorizontalIcon.stories.tsx b/src/stories/AdjustmentsHorizontalIcon.stories.tsx new file mode 100644 index 00000000..7d5a2d73 --- /dev/null +++ b/src/stories/AdjustmentsHorizontalIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AdjustmentsHorizontalIcon from '../icons/adjustments-horizontal-icon' + + const meta: Meta = { + component: AdjustmentsHorizontalIcon, + title: 'outline/AdjustmentsHorizontalIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AdjustmentsIcon.stories.tsx b/src/stories/AdjustmentsIcon.stories.tsx new file mode 100644 index 00000000..d298f38e --- /dev/null +++ b/src/stories/AdjustmentsIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AdjustmentsIcon from '../icons/adjustments-icon' + + const meta: Meta = { + component: AdjustmentsIcon, + title: 'outline/AdjustmentsIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxBlueAccent.stories.tsx b/src/stories/AftershootCreditIcon.stories.tsx similarity index 86% rename from src/stories/CheckboxBlueAccent.stories.tsx rename to src/stories/AftershootCreditIcon.stories.tsx index 8c5d0587..f06b1a17 100644 --- a/src/stories/CheckboxBlueAccent.stories.tsx +++ b/src/stories/AftershootCreditIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CheckboxBlueAccent from '../icons-test/checkbox-blue-accent' + import AftershootCreditIcon from '../icons/aftershoot-credit-icon' - const meta: Meta = { - component: CheckboxBlueAccent, - title: 'accent/CheckboxBlueAccent', + const meta: Meta = { + component: AftershootCreditIcon, + title: 'logo/AftershootCreditIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ArrowCurveFill.stories.tsx b/src/stories/AftershootLogoIcon.stories.tsx similarity index 87% rename from src/stories/ArrowCurveFill.stories.tsx rename to src/stories/AftershootLogoIcon.stories.tsx index 986f62fd..8bf6e0ae 100644 --- a/src/stories/ArrowCurveFill.stories.tsx +++ b/src/stories/AftershootLogoIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowCurveFill from '../icons-test/arrow-curve-fill' + import AftershootLogoIcon from '../icons/aftershoot-logo-icon' - const meta: Meta = { - component: ArrowCurveFill, - title: 'fill/ArrowCurveFill', + const meta: Meta = { + component: AftershootLogoIcon, + title: 'fill/AftershootLogoIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/AlarmIcon.stories.tsx b/src/stories/AlarmIcon.stories.tsx new file mode 100644 index 00000000..7f498574 --- /dev/null +++ b/src/stories/AlarmIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlarmIcon from '../icons/alarm-icon' + + const meta: Meta = { + component: AlarmIcon, + title: 'outline/AlarmIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangleAccent.stories.tsx b/src/stories/AlertCircleAccentIcon.stories.tsx similarity index 85% rename from src/stories/AlertTriangleAccent.stories.tsx rename to src/stories/AlertCircleAccentIcon.stories.tsx index bef6f3a9..04ab77a1 100644 --- a/src/stories/AlertTriangleAccent.stories.tsx +++ b/src/stories/AlertCircleAccentIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertTriangleAccent from '../icons-test/alert-triangle-accent' + import AlertCircleAccentIcon from '../icons/alert-circle-accent-icon' - const meta: Meta = { - component: AlertTriangleAccent, - title: 'accent/AlertTriangleAccent', + const meta: Meta = { + component: AlertCircleAccentIcon, + title: 'accent/AlertCircleAccentIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/AlertCircleIcon.stories.tsx b/src/stories/AlertCircleIcon.stories.tsx new file mode 100644 index 00000000..d32d2b0d --- /dev/null +++ b/src/stories/AlertCircleIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertCircleIcon from '../icons/alert-circle-icon' + + const meta: Meta = { + component: AlertCircleIcon, + title: 'outline/AlertCircleIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertOctagonIcon.stories.tsx b/src/stories/AlertOctagonIcon.stories.tsx new file mode 100644 index 00000000..31fe6e41 --- /dev/null +++ b/src/stories/AlertOctagonIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertOctagonIcon from '../icons/alert-octagon-icon' + + const meta: Meta = { + component: AlertOctagonIcon, + title: 'outline/AlertOctagonIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertTriangle.stories.tsx b/src/stories/AlertTriangle.stories.tsx deleted file mode 100644 index 8bad11cd..00000000 --- a/src/stories/AlertTriangle.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import AlertTriangle from '../icons-test/alert-triangle' - - const meta: Meta = { - component: AlertTriangle, - title: 'outline/AlertTriangle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AlertTriangleAccentIcon.stories.tsx b/src/stories/AlertTriangleAccentIcon.stories.tsx new file mode 100644 index 00000000..29ab80fc --- /dev/null +++ b/src/stories/AlertTriangleAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AlertTriangleAccentIcon from '../icons/alert-triangle-accent-icon' + + const meta: Meta = { + component: AlertTriangleAccentIcon, + title: 'accent/AlertTriangleAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CurrentLocation.stories.tsx b/src/stories/AlertTriangleIcon.stories.tsx similarity index 86% rename from src/stories/CurrentLocation.stories.tsx rename to src/stories/AlertTriangleIcon.stories.tsx index 169e3e95..66a05fc7 100644 --- a/src/stories/CurrentLocation.stories.tsx +++ b/src/stories/AlertTriangleIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CurrentLocation from '../icons-test/current-location' + import AlertTriangleIcon from '../icons/alert-triangle-icon' - const meta: Meta = { - component: CurrentLocation, - title: 'outline/CurrentLocation', + const meta: Meta = { + component: AlertTriangleIcon, + title: 'outline/AlertTriangleIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Apple.stories.tsx b/src/stories/AppleIcon.stories.tsx similarity index 90% rename from src/stories/Apple.stories.tsx rename to src/stories/AppleIcon.stories.tsx index d0034b27..6059836d 100644 --- a/src/stories/Apple.stories.tsx +++ b/src/stories/AppleIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Apple from '../icons-test/apple' + import AppleIcon from '../icons/apple-icon' - const meta: Meta = { - component: Apple, - title: 'fill/Apple', + const meta: Meta = { + component: AppleIcon, + title: 'fill/AppleIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ArrowCurveFillIcon.stories.tsx b/src/stories/ArrowCurveFillIcon.stories.tsx new file mode 100644 index 00000000..ab53255f --- /dev/null +++ b/src/stories/ArrowCurveFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowCurveFillIcon from '../icons/arrow-curve-fill-icon' + + const meta: Meta = { + component: ArrowCurveFillIcon, + title: 'fill/ArrowCurveFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertOctagon.stories.tsx b/src/stories/ArrowDownIcon.stories.tsx similarity index 87% rename from src/stories/AlertOctagon.stories.tsx rename to src/stories/ArrowDownIcon.stories.tsx index 6f05867f..c3c0b2b4 100644 --- a/src/stories/AlertOctagon.stories.tsx +++ b/src/stories/ArrowDownIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertOctagon from '../icons-test/alert-octagon' + import ArrowDownIcon from '../icons/arrow-down-icon' - const meta: Meta = { - component: AlertOctagon, - title: 'outline/AlertOctagon', + const meta: Meta = { + component: ArrowDownIcon, + title: 'outline/ArrowDownIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ArrowLeftIcon.stories.tsx b/src/stories/ArrowLeftIcon.stories.tsx new file mode 100644 index 00000000..b6ba6183 --- /dev/null +++ b/src/stories/ArrowLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowLeftIcon from '../icons/arrow-left-icon' + + const meta: Meta = { + component: ArrowLeftIcon, + title: 'outline/ArrowLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowNarrowLeft.stories.tsx b/src/stories/ArrowNarrowLeft.stories.tsx deleted file mode 100644 index 6eace54e..00000000 --- a/src/stories/ArrowNarrowLeft.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowNarrowLeft from '../icons-test/arrow-narrow-left' - - const meta: Meta = { - component: ArrowNarrowLeft, - title: 'outline/ArrowNarrowLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowNarrowLeftIcon.stories.tsx b/src/stories/ArrowNarrowLeftIcon.stories.tsx new file mode 100644 index 00000000..9ed3ff51 --- /dev/null +++ b/src/stories/ArrowNarrowLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowLeftIcon from '../icons/arrow-narrow-left-icon' + + const meta: Meta = { + component: ArrowNarrowLeftIcon, + title: 'outline/ArrowNarrowLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowNarrowRightIcon.stories.tsx b/src/stories/ArrowNarrowRightIcon.stories.tsx new file mode 100644 index 00000000..e6fe3f22 --- /dev/null +++ b/src/stories/ArrowNarrowRightIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowNarrowRightIcon from '../icons/arrow-narrow-right-icon' + + const meta: Meta = { + component: ArrowNarrowRightIcon, + title: 'outline/ArrowNarrowRightIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown.stories.tsx b/src/stories/ArrowRightIcon.stories.tsx similarity index 88% rename from src/stories/Crown.stories.tsx rename to src/stories/ArrowRightIcon.stories.tsx index ba97a38a..548d2193 100644 --- a/src/stories/Crown.stories.tsx +++ b/src/stories/ArrowRightIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Crown from '../icons-test/crown' + import ArrowRightIcon from '../icons/arrow-right-icon' - const meta: Meta = { - component: Crown, - title: 'outline/Crown', + const meta: Meta = { + component: ArrowRightIcon, + title: 'outline/ArrowRightIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ArrowSort2.stories.tsx b/src/stories/ArrowSort2.stories.tsx deleted file mode 100644 index bf7ff2c4..00000000 --- a/src/stories/ArrowSort2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowSort2 from '../icons-test/arrow-sort-2' - - const meta: Meta = { - component: ArrowSort2, - title: 'outline/ArrowSort2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowSort2Icon.stories.tsx b/src/stories/ArrowSort2Icon.stories.tsx new file mode 100644 index 00000000..fbe9420f --- /dev/null +++ b/src/stories/ArrowSort2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowSort2Icon from '../icons/arrow-sort-2-icon' + + const meta: Meta = { + component: ArrowSort2Icon, + title: 'outline/ArrowSort2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowUpIcon.stories.tsx b/src/stories/ArrowUpIcon.stories.tsx new file mode 100644 index 00000000..d74fa77f --- /dev/null +++ b/src/stories/ArrowUpIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowUpIcon from '../icons/arrow-up-icon' + + const meta: Meta = { + component: ArrowUpIcon, + title: 'outline/ArrowUpIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsDiagonal.stories.tsx b/src/stories/ArrowsDiagonal.stories.tsx deleted file mode 100644 index 3bf21a2d..00000000 --- a/src/stories/ArrowsDiagonal.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowsDiagonal from '../icons-test/arrows-diagonal' - - const meta: Meta = { - component: ArrowsDiagonal, - title: 'outline/ArrowsDiagonal', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowsDiagonalIcon.stories.tsx b/src/stories/ArrowsDiagonalIcon.stories.tsx new file mode 100644 index 00000000..9b7241e6 --- /dev/null +++ b/src/stories/ArrowsDiagonalIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsDiagonalIcon from '../icons/arrows-diagonal-icon' + + const meta: Meta = { + component: ArrowsDiagonalIcon, + title: 'outline/ArrowsDiagonalIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsSort.stories.tsx b/src/stories/ArrowsSort.stories.tsx deleted file mode 100644 index 527a70cd..00000000 --- a/src/stories/ArrowsSort.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ArrowsSort from '../icons-test/arrows-sort' - - const meta: Meta = { - component: ArrowsSort, - title: 'outline/ArrowsSort', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowsSortIcon.stories.tsx b/src/stories/ArrowsSortIcon.stories.tsx new file mode 100644 index 00000000..601995c0 --- /dev/null +++ b/src/stories/ArrowsSortIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsSortIcon from '../icons/arrows-sort-icon' + + const meta: Meta = { + component: ArrowsSortIcon, + title: 'outline/ArrowsSortIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AtomAccentIcon.stories.tsx b/src/stories/AtomAccentIcon.stories.tsx new file mode 100644 index 00000000..6ec8be32 --- /dev/null +++ b/src/stories/AtomAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import AtomAccentIcon from '../icons/atom-accent-icon' + + const meta: Meta = { + component: AtomAccentIcon, + title: 'accent/AtomAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowUp.stories.tsx b/src/stories/AtomIcon.stories.tsx similarity index 89% rename from src/stories/ArrowUp.stories.tsx rename to src/stories/AtomIcon.stories.tsx index 91e84b3d..ca8cd0c8 100644 --- a/src/stories/ArrowUp.stories.tsx +++ b/src/stories/AtomIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowUp from '../icons-test/arrow-up' + import AtomIcon from '../icons/atom-icon' - const meta: Meta = { - component: ArrowUp, - title: 'outline/ArrowUp', + const meta: Meta = { + component: AtomIcon, + title: 'outline/AtomIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Atom.stories.tsx b/src/stories/BanIcon.stories.tsx similarity index 89% rename from src/stories/Atom.stories.tsx rename to src/stories/BanIcon.stories.tsx index 2d56dec7..298b9ee6 100644 --- a/src/stories/Atom.stories.tsx +++ b/src/stories/BanIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Atom from '../icons-test/atom' + import BanIcon from '../icons/ban-icon' - const meta: Meta = { - component: Atom, - title: 'outline/Atom', + const meta: Meta = { + component: BanIcon, + title: 'outline/BanIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/BellIcon.stories.tsx b/src/stories/BellIcon.stories.tsx new file mode 100644 index 00000000..c2e389bb --- /dev/null +++ b/src/stories/BellIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellIcon from '../icons/bell-icon' + + const meta: Meta = { + component: BellIcon, + title: 'outline/BellIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellMinus.stories.tsx b/src/stories/BellMinus.stories.tsx deleted file mode 100644 index 14e20d1e..00000000 --- a/src/stories/BellMinus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellMinus from '../icons-test/bell-minus' - - const meta: Meta = { - component: BellMinus, - title: 'outline/BellMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellMinusIcon.stories.tsx b/src/stories/BellMinusIcon.stories.tsx new file mode 100644 index 00000000..55b17825 --- /dev/null +++ b/src/stories/BellMinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellMinusIcon from '../icons/bell-minus-icon' + + const meta: Meta = { + component: BellMinusIcon, + title: 'outline/BellMinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellOff.stories.tsx b/src/stories/BellOff.stories.tsx deleted file mode 100644 index 8e036ca8..00000000 --- a/src/stories/BellOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellOff from '../icons-test/bell-off' - - const meta: Meta = { - component: BellOff, - title: 'outline/BellOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellOffIcon.stories.tsx b/src/stories/BellOffIcon.stories.tsx new file mode 100644 index 00000000..da2e41f1 --- /dev/null +++ b/src/stories/BellOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellOffIcon from '../icons/bell-off-icon' + + const meta: Meta = { + component: BellOffIcon, + title: 'outline/BellOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellPlus.stories.tsx b/src/stories/BellPlus.stories.tsx deleted file mode 100644 index 0bf6abdc..00000000 --- a/src/stories/BellPlus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellPlus from '../icons-test/bell-plus' - - const meta: Meta = { - component: BellPlus, - title: 'outline/BellPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellPlusIcon.stories.tsx b/src/stories/BellPlusIcon.stories.tsx new file mode 100644 index 00000000..6def6776 --- /dev/null +++ b/src/stories/BellPlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellPlusIcon from '../icons/bell-plus-icon' + + const meta: Meta = { + component: BellPlusIcon, + title: 'outline/BellPlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellRinging.stories.tsx b/src/stories/BellRinging.stories.tsx deleted file mode 100644 index 13f6cc87..00000000 --- a/src/stories/BellRinging.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellRinging from '../icons-test/bell-ringing' - - const meta: Meta = { - component: BellRinging, - title: 'outline/BellRinging', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellRinging2.stories.tsx b/src/stories/BellRinging2.stories.tsx deleted file mode 100644 index 5a45d866..00000000 --- a/src/stories/BellRinging2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellRinging2 from '../icons-test/bell-ringing-2' - - const meta: Meta = { - component: BellRinging2, - title: 'outline/BellRinging2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellRinging2Icon.stories.tsx b/src/stories/BellRinging2Icon.stories.tsx new file mode 100644 index 00000000..ea584ba4 --- /dev/null +++ b/src/stories/BellRinging2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRinging2Icon from '../icons/bell-ringing-2-icon' + + const meta: Meta = { + component: BellRinging2Icon, + title: 'outline/BellRinging2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellRingingIcon.stories.tsx b/src/stories/BellRingingIcon.stories.tsx new file mode 100644 index 00000000..7caabdf5 --- /dev/null +++ b/src/stories/BellRingingIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellRingingIcon from '../icons/bell-ringing-icon' + + const meta: Meta = { + component: BellRingingIcon, + title: 'outline/BellRingingIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BellX.stories.tsx b/src/stories/BellX.stories.tsx deleted file mode 100644 index 7c2d7edf..00000000 --- a/src/stories/BellX.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BellX from '../icons-test/bell-x' - - const meta: Meta = { - component: BellX, - title: 'outline/BellX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BellXIcon.stories.tsx b/src/stories/BellXIcon.stories.tsx new file mode 100644 index 00000000..c43fca0e --- /dev/null +++ b/src/stories/BellXIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BellXIcon from '../icons/bell-x-icon' + + const meta: Meta = { + component: BellXIcon, + title: 'outline/BellXIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandFacebook.stories.tsx b/src/stories/BrandFacebook.stories.tsx deleted file mode 100644 index bc156e20..00000000 --- a/src/stories/BrandFacebook.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandFacebook from '../icons-test/brand-facebook' - - const meta: Meta = { - component: BrandFacebook, - title: 'outline/BrandFacebook', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/RotateClockwise.stories.tsx b/src/stories/BrandFacebookIcon.stories.tsx similarity index 86% rename from src/stories/RotateClockwise.stories.tsx rename to src/stories/BrandFacebookIcon.stories.tsx index bf7f0c38..dd572152 100644 --- a/src/stories/RotateClockwise.stories.tsx +++ b/src/stories/BrandFacebookIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import RotateClockwise from '../icons-test/rotate-clockwise' + import BrandFacebookIcon from '../icons/brand-facebook-icon' - const meta: Meta = { - component: RotateClockwise, - title: 'outline/RotateClockwise', + const meta: Meta = { + component: BrandFacebookIcon, + title: 'outline/BrandFacebookIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/BrandGithub.stories.tsx b/src/stories/BrandGithub.stories.tsx deleted file mode 100644 index 313e987e..00000000 --- a/src/stories/BrandGithub.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandGithub from '../icons-test/brand-github' - - const meta: Meta = { - component: BrandGithub, - title: 'outline/BrandGithub', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BrandGithubIcon.stories.tsx b/src/stories/BrandGithubIcon.stories.tsx new file mode 100644 index 00000000..49bfd45f --- /dev/null +++ b/src/stories/BrandGithubIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandGithubIcon from '../icons/brand-github-icon' + + const meta: Meta = { + component: BrandGithubIcon, + title: 'outline/BrandGithubIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandInstagram.stories.tsx b/src/stories/BrandInstagram.stories.tsx deleted file mode 100644 index 8fe6142a..00000000 --- a/src/stories/BrandInstagram.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandInstagram from '../icons-test/brand-instagram' - - const meta: Meta = { - component: BrandInstagram, - title: 'outline/BrandInstagram', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BrandInstagramIcon.stories.tsx b/src/stories/BrandInstagramIcon.stories.tsx new file mode 100644 index 00000000..e5a14d97 --- /dev/null +++ b/src/stories/BrandInstagramIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandInstagramIcon from '../icons/brand-instagram-icon' + + const meta: Meta = { + component: BrandInstagramIcon, + title: 'outline/BrandInstagramIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandTwitter.stories.tsx b/src/stories/BrandTwitter.stories.tsx deleted file mode 100644 index 3e47106d..00000000 --- a/src/stories/BrandTwitter.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandTwitter from '../icons-test/brand-twitter' - - const meta: Meta = { - component: BrandTwitter, - title: 'outline/BrandTwitter', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BrandTwitterIcon.stories.tsx b/src/stories/BrandTwitterIcon.stories.tsx new file mode 100644 index 00000000..ca98efda --- /dev/null +++ b/src/stories/BrandTwitterIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandTwitterIcon from '../icons/brand-twitter-icon' + + const meta: Meta = { + component: BrandTwitterIcon, + title: 'outline/BrandTwitterIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BrandWhatsapp.stories.tsx b/src/stories/BrandWhatsapp.stories.tsx deleted file mode 100644 index 33452d46..00000000 --- a/src/stories/BrandWhatsapp.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandWhatsapp from '../icons-test/brand-whatsapp' - - const meta: Meta = { - component: BrandWhatsapp, - title: 'outline/BrandWhatsapp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserExclamation.stories.tsx b/src/stories/BrandWhatsappIcon.stories.tsx similarity index 86% rename from src/stories/UserExclamation.stories.tsx rename to src/stories/BrandWhatsappIcon.stories.tsx index 5f73b80a..60fad381 100644 --- a/src/stories/UserExclamation.stories.tsx +++ b/src/stories/BrandWhatsappIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import UserExclamation from '../icons-test/user-exclamation' + import BrandWhatsappIcon from '../icons/brand-whatsapp-icon' - const meta: Meta = { - component: UserExclamation, - title: 'outline/UserExclamation', + const meta: Meta = { + component: BrandWhatsappIcon, + title: 'outline/BrandWhatsappIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/BrandYoutube.stories.tsx b/src/stories/BrandYoutube.stories.tsx deleted file mode 100644 index 859d6693..00000000 --- a/src/stories/BrandYoutube.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BrandYoutube from '../icons-test/brand-youtube' - - const meta: Meta = { - component: BrandYoutube, - title: 'outline/BrandYoutube', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BrandYoutubeIcon.stories.tsx b/src/stories/BrandYoutubeIcon.stories.tsx new file mode 100644 index 00000000..7afd96d5 --- /dev/null +++ b/src/stories/BrandYoutubeIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BrandYoutubeIcon from '../icons/brand-youtube-icon' + + const meta: Meta = { + component: BrandYoutubeIcon, + title: 'outline/BrandYoutubeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Bulb.stories.tsx b/src/stories/Bulb.stories.tsx deleted file mode 100644 index ba07528b..00000000 --- a/src/stories/Bulb.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Bulb from '../icons-test/bulb' - - const meta: Meta = { - component: Bulb, - title: 'outline/Bulb', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BulbIcon.stories.tsx b/src/stories/BulbIcon.stories.tsx new file mode 100644 index 00000000..15c524e8 --- /dev/null +++ b/src/stories/BulbIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BulbIcon from '../icons/bulb-icon' + + const meta: Meta = { + component: BulbIcon, + title: 'outline/BulbIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/BulbOff.stories.tsx b/src/stories/BulbOff.stories.tsx deleted file mode 100644 index b555019c..00000000 --- a/src/stories/BulbOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import BulbOff from '../icons-test/bulb-off' - - const meta: Meta = { - component: BulbOff, - title: 'outline/BulbOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/BulbOffIcon.stories.tsx b/src/stories/BulbOffIcon.stories.tsx new file mode 100644 index 00000000..848a6332 --- /dev/null +++ b/src/stories/BulbOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import BulbOffIcon from '../icons/bulb-off-icon' + + const meta: Meta = { + component: BulbOffIcon, + title: 'outline/BulbOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Check.stories.tsx b/src/stories/Check.stories.tsx deleted file mode 100644 index 5d966fcd..00000000 --- a/src/stories/Check.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Check from '../icons-test/check' - - const meta: Meta = { - component: Check, - title: 'outline/Check', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CheckBoxEmptyIcon.stories.tsx b/src/stories/CheckBoxEmptyIcon.stories.tsx new file mode 100644 index 00000000..17ceed76 --- /dev/null +++ b/src/stories/CheckBoxEmptyIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckBoxEmptyIcon from '../icons/check-box-empty-icon' + + const meta: Meta = { + component: CheckBoxEmptyIcon, + title: 'mix/CheckBoxEmptyIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckIcon.stories.tsx b/src/stories/CheckIcon.stories.tsx new file mode 100644 index 00000000..311015dc --- /dev/null +++ b/src/stories/CheckIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckIcon from '../icons/check-icon' + + const meta: Meta = { + component: CheckIcon, + title: 'outline/CheckIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxBlueAccentIcon.stories.tsx b/src/stories/CheckboxBlueAccentIcon.stories.tsx new file mode 100644 index 00000000..952cabf7 --- /dev/null +++ b/src/stories/CheckboxBlueAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxBlueAccentIcon from '../icons/checkbox-blue-accent-icon' + + const meta: Meta = { + component: CheckboxBlueAccentIcon, + title: 'accent/CheckboxBlueAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxGreenAccent.stories.tsx b/src/stories/CheckboxGreenAccent.stories.tsx deleted file mode 100644 index 446a1f4d..00000000 --- a/src/stories/CheckboxGreenAccent.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CheckboxGreenAccent from '../icons-test/checkbox-green-accent' - - const meta: Meta = { - component: CheckboxGreenAccent, - title: 'accent/CheckboxGreenAccent', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CheckboxGreenAccentIcon.stories.tsx b/src/stories/CheckboxGreenAccentIcon.stories.tsx new file mode 100644 index 00000000..4260811c --- /dev/null +++ b/src/stories/CheckboxGreenAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxGreenAccentIcon from '../icons/checkbox-green-accent-icon' + + const meta: Meta = { + component: CheckboxGreenAccentIcon, + title: 'accent/CheckboxGreenAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckboxPartialBlueAccent.stories.tsx b/src/stories/CheckboxPartialBlueAccent.stories.tsx deleted file mode 100644 index 13329122..00000000 --- a/src/stories/CheckboxPartialBlueAccent.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CheckboxPartialBlueAccent from '../icons-test/checkbox-partial-blue-accent' - - const meta: Meta = { - component: CheckboxPartialBlueAccent, - title: 'accent/CheckboxPartialBlueAccent', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CheckboxPartialBlueAccentIcon.stories.tsx b/src/stories/CheckboxPartialBlueAccentIcon.stories.tsx new file mode 100644 index 00000000..5a84d372 --- /dev/null +++ b/src/stories/CheckboxPartialBlueAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CheckboxPartialBlueAccentIcon from '../icons/checkbox-partial-blue-accent-icon' + + const meta: Meta = { + component: CheckboxPartialBlueAccentIcon, + title: 'accent/CheckboxPartialBlueAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronDown.stories.tsx b/src/stories/ChevronDown.stories.tsx deleted file mode 100644 index 091f8577..00000000 --- a/src/stories/ChevronDown.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronDown from '../icons-test/chevron-down' - - const meta: Meta = { - component: ChevronDown, - title: 'outline/ChevronDown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronDownIcon.stories.tsx b/src/stories/ChevronDownIcon.stories.tsx new file mode 100644 index 00000000..3552b57c --- /dev/null +++ b/src/stories/ChevronDownIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronDownIcon from '../icons/chevron-down-icon' + + const meta: Meta = { + component: ChevronDownIcon, + title: 'outline/ChevronDownIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronLeft.stories.tsx b/src/stories/ChevronLeft.stories.tsx deleted file mode 100644 index c1d8b287..00000000 --- a/src/stories/ChevronLeft.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronLeft from '../icons-test/chevron-left' - - const meta: Meta = { - component: ChevronLeft, - title: 'outline/ChevronLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronLeftIcon.stories.tsx b/src/stories/ChevronLeftIcon.stories.tsx new file mode 100644 index 00000000..1fe211fd --- /dev/null +++ b/src/stories/ChevronLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronLeftIcon from '../icons/chevron-left-icon' + + const meta: Meta = { + component: ChevronLeftIcon, + title: 'outline/ChevronLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronRight.stories.tsx b/src/stories/ChevronRight.stories.tsx deleted file mode 100644 index 8afe6a2f..00000000 --- a/src/stories/ChevronRight.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronRight from '../icons-test/chevron-right' - - const meta: Meta = { - component: ChevronRight, - title: 'outline/ChevronRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronRightIcon.stories.tsx b/src/stories/ChevronRightIcon.stories.tsx new file mode 100644 index 00000000..d1feed9b --- /dev/null +++ b/src/stories/ChevronRightIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronRightIcon from '../icons/chevron-right-icon' + + const meta: Meta = { + component: ChevronRightIcon, + title: 'outline/ChevronRightIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronUp.stories.tsx b/src/stories/ChevronUp.stories.tsx deleted file mode 100644 index 74c270da..00000000 --- a/src/stories/ChevronUp.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronUp from '../icons-test/chevron-up' - - const meta: Meta = { - component: ChevronUp, - title: 'outline/ChevronUp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronUpIcon.stories.tsx b/src/stories/ChevronUpIcon.stories.tsx new file mode 100644 index 00000000..296f0838 --- /dev/null +++ b/src/stories/ChevronUpIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronUpIcon from '../icons/chevron-up-icon' + + const meta: Meta = { + component: ChevronUpIcon, + title: 'outline/ChevronUpIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronsLeft.stories.tsx b/src/stories/ChevronsLeft.stories.tsx deleted file mode 100644 index 8c2c4502..00000000 --- a/src/stories/ChevronsLeft.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronsLeft from '../icons-test/chevrons-left' - - const meta: Meta = { - component: ChevronsLeft, - title: 'outline/ChevronsLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronsLeftIcon.stories.tsx b/src/stories/ChevronsLeftIcon.stories.tsx new file mode 100644 index 00000000..d476959c --- /dev/null +++ b/src/stories/ChevronsLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsLeftIcon from '../icons/chevrons-left-icon' + + const meta: Meta = { + component: ChevronsLeftIcon, + title: 'outline/ChevronsLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ChevronsRight.stories.tsx b/src/stories/ChevronsRight.stories.tsx deleted file mode 100644 index e75d3cf0..00000000 --- a/src/stories/ChevronsRight.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ChevronsRight from '../icons-test/chevrons-right' - - const meta: Meta = { - component: ChevronsRight, - title: 'outline/ChevronsRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ChevronsRightIcon.stories.tsx b/src/stories/ChevronsRightIcon.stories.tsx new file mode 100644 index 00000000..03c88d96 --- /dev/null +++ b/src/stories/ChevronsRightIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ChevronsRightIcon from '../icons/chevrons-right-icon' + + const meta: Meta = { + component: ChevronsRightIcon, + title: 'outline/ChevronsRightIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Circle.stories.tsx b/src/stories/Circle.stories.tsx deleted file mode 100644 index 9722c79e..00000000 --- a/src/stories/Circle.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Circle from '../icons-test/circle' - - const meta: Meta = { - component: Circle, - title: 'outline/Circle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CircleCheck.stories.tsx b/src/stories/CircleCheck.stories.tsx deleted file mode 100644 index 3be993c8..00000000 --- a/src/stories/CircleCheck.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CircleCheck from '../icons-test/circle-check' - - const meta: Meta = { - component: CircleCheck, - title: 'outline/CircleCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CircleCheck2.stories.tsx b/src/stories/CircleCheck2.stories.tsx deleted file mode 100644 index 8ba8c671..00000000 --- a/src/stories/CircleCheck2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CircleCheck2 from '../icons-test/circle-check-2' - - const meta: Meta = { - component: CircleCheck2, - title: 'outline/CircleCheck2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CircleCheck2Icon.stories.tsx b/src/stories/CircleCheck2Icon.stories.tsx new file mode 100644 index 00000000..5121f36f --- /dev/null +++ b/src/stories/CircleCheck2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheck2Icon from '../icons/circle-check-2-icon' + + const meta: Meta = { + component: CircleCheck2Icon, + title: 'outline/CircleCheck2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleCheckIcon.stories.tsx b/src/stories/CircleCheckIcon.stories.tsx new file mode 100644 index 00000000..185ad185 --- /dev/null +++ b/src/stories/CircleCheckIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCheckIcon from '../icons/circle-check-icon' + + const meta: Meta = { + component: CircleCheckIcon, + title: 'outline/CircleCheckIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleCrossAccent.stories.tsx b/src/stories/CircleCrossAccent.stories.tsx deleted file mode 100644 index 136bb9bf..00000000 --- a/src/stories/CircleCrossAccent.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CircleCrossAccent from '../icons-test/circle-cross-accent' - - const meta: Meta = { - component: CircleCrossAccent, - title: 'accent/CircleCrossAccent', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AftershootCredit.stories.tsx b/src/stories/CircleCrossAccentIcon.stories.tsx similarity index 85% rename from src/stories/AftershootCredit.stories.tsx rename to src/stories/CircleCrossAccentIcon.stories.tsx index fbee1ad3..2063df02 100644 --- a/src/stories/AftershootCredit.stories.tsx +++ b/src/stories/CircleCrossAccentIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AftershootCredit from '../icons-test/aftershoot-credit' + import CircleCrossAccentIcon from '../icons/circle-cross-accent-icon' - const meta: Meta = { - component: AftershootCredit, - title: 'logo/AftershootCredit', + const meta: Meta = { + component: CircleCrossAccentIcon, + title: 'accent/CircleCrossAccentIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/CircleFillIcon.stories.tsx b/src/stories/CircleFillIcon.stories.tsx new file mode 100644 index 00000000..958782e5 --- /dev/null +++ b/src/stories/CircleFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleFillIcon from '../icons/circle-fill-icon' + + const meta: Meta = { + component: CircleFillIcon, + title: 'fill/CircleFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowDown.stories.tsx b/src/stories/CircleIcon.stories.tsx similarity index 88% rename from src/stories/ArrowDown.stories.tsx rename to src/stories/CircleIcon.stories.tsx index ed919adb..d6953608 100644 --- a/src/stories/ArrowDown.stories.tsx +++ b/src/stories/CircleIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowDown from '../icons-test/arrow-down' + import CircleIcon from '../icons/circle-icon' - const meta: Meta = { - component: ArrowDown, - title: 'outline/ArrowDown', + const meta: Meta = { + component: CircleIcon, + title: 'outline/CircleIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Clock.stories.tsx b/src/stories/Clock.stories.tsx deleted file mode 100644 index 09d83f1e..00000000 --- a/src/stories/Clock.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Clock from '../icons-test/clock' - - const meta: Meta = { - component: Clock, - title: 'outline/Clock', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ClockIcon.stories.tsx b/src/stories/ClockIcon.stories.tsx new file mode 100644 index 00000000..3ed9fc21 --- /dev/null +++ b/src/stories/ClockIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ClockIcon from '../icons/clock-icon' + + const meta: Meta = { + component: ClockIcon, + title: 'outline/ClockIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CloudUpload.stories.tsx b/src/stories/CloudUpload.stories.tsx deleted file mode 100644 index b4b1f404..00000000 --- a/src/stories/CloudUpload.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CloudUpload from '../icons-test/cloud-upload' - - const meta: Meta = { - component: CloudUpload, - title: 'outline/CloudUpload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CloudUploadAccent.stories.tsx b/src/stories/CloudUploadAccent.stories.tsx deleted file mode 100644 index 1c82660e..00000000 --- a/src/stories/CloudUploadAccent.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CloudUploadAccent from '../icons-test/cloud-upload-accent' - - const meta: Meta = { - component: CloudUploadAccent, - title: 'accent/CloudUploadAccent', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CloudUploadAccentIcon.stories.tsx b/src/stories/CloudUploadAccentIcon.stories.tsx new file mode 100644 index 00000000..cdf0b7b3 --- /dev/null +++ b/src/stories/CloudUploadAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CloudUploadAccentIcon from '../icons/cloud-upload-accent-icon' + + const meta: Meta = { + component: CloudUploadAccentIcon, + title: 'accent/CloudUploadAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CloudUploadIcon.stories.tsx b/src/stories/CloudUploadIcon.stories.tsx new file mode 100644 index 00000000..06153fc0 --- /dev/null +++ b/src/stories/CloudUploadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CloudUploadIcon from '../icons/cloud-upload-icon' + + const meta: Meta = { + component: CloudUploadIcon, + title: 'outline/CloudUploadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CheckBoxEmpty.stories.tsx b/src/stories/CollectionIcon.stories.tsx similarity index 88% rename from src/stories/CheckBoxEmpty.stories.tsx rename to src/stories/CollectionIcon.stories.tsx index 8d3f81e1..c1272ec4 100644 --- a/src/stories/CheckBoxEmpty.stories.tsx +++ b/src/stories/CollectionIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CheckBoxEmpty from '../icons-test/check-box-empty' + import CollectionIcon from '../icons/collection-icon' - const meta: Meta = { - component: CheckBoxEmpty, - title: 'mix/CheckBoxEmpty', + const meta: Meta = { + component: CollectionIcon, + title: 'mix/CollectionIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ColorSwatch.stories.tsx b/src/stories/ColorSwatch.stories.tsx deleted file mode 100644 index 8a7191d8..00000000 --- a/src/stories/ColorSwatch.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ColorSwatch from '../icons-test/color-swatch' - - const meta: Meta = { - component: ColorSwatch, - title: 'outline/ColorSwatch', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ColorSwatchIcon.stories.tsx b/src/stories/ColorSwatchIcon.stories.tsx new file mode 100644 index 00000000..f3283a21 --- /dev/null +++ b/src/stories/ColorSwatchIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ColorSwatchIcon from '../icons/color-swatch-icon' + + const meta: Meta = { + component: ColorSwatchIcon, + title: 'outline/ColorSwatchIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Confetti.stories.tsx b/src/stories/Confetti.stories.tsx deleted file mode 100644 index 6e05f821..00000000 --- a/src/stories/Confetti.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Confetti from '../icons-test/confetti' - - const meta: Meta = { - component: Confetti, - title: 'outline/Confetti', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Adjustments.stories.tsx b/src/stories/ConfettiIcon.stories.tsx similarity index 88% rename from src/stories/Adjustments.stories.tsx rename to src/stories/ConfettiIcon.stories.tsx index 52ba4424..0f677a89 100644 --- a/src/stories/Adjustments.stories.tsx +++ b/src/stories/ConfettiIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Adjustments from '../icons-test/adjustments' + import ConfettiIcon from '../icons/confetti-icon' - const meta: Meta = { - component: Adjustments, - title: 'outline/Adjustments', + const meta: Meta = { + component: ConfettiIcon, + title: 'outline/ConfettiIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Copy.stories.tsx b/src/stories/Copy.stories.tsx deleted file mode 100644 index 5d860149..00000000 --- a/src/stories/Copy.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Copy from '../icons-test/copy' - - const meta: Meta = { - component: Copy, - title: 'outline/Copy', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CopyIcon.stories.tsx b/src/stories/CopyIcon.stories.tsx new file mode 100644 index 00000000..e1af352f --- /dev/null +++ b/src/stories/CopyIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CopyIcon from '../icons/copy-icon' + + const meta: Meta = { + component: CopyIcon, + title: 'outline/CopyIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown2FillIcon.stories.tsx b/src/stories/Crown2FillIcon.stories.tsx new file mode 100644 index 00000000..0ff5f3a0 --- /dev/null +++ b/src/stories/Crown2FillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Crown2FillIcon from '../icons/crown-2-fill-icon' + + const meta: Meta = { + component: Crown2FillIcon, + title: 'fill/Crown2FillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CrownIcon.stories.tsx b/src/stories/CrownIcon.stories.tsx new file mode 100644 index 00000000..6a7f7150 --- /dev/null +++ b/src/stories/CrownIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CrownIcon from '../icons/crown-icon' + + const meta: Meta = { + component: CrownIcon, + title: 'outline/CrownIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CurrencyDollar.stories.tsx b/src/stories/CurrencyDollar.stories.tsx deleted file mode 100644 index e058216a..00000000 --- a/src/stories/CurrencyDollar.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import CurrencyDollar from '../icons-test/currency-dollar' - - const meta: Meta = { - component: CurrencyDollar, - title: 'outline/CurrencyDollar', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CurrencyDollarIcon.stories.tsx b/src/stories/CurrencyDollarIcon.stories.tsx new file mode 100644 index 00000000..36e5b17d --- /dev/null +++ b/src/stories/CurrencyDollarIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrencyDollarIcon from '../icons/currency-dollar-icon' + + const meta: Meta = { + component: CurrencyDollarIcon, + title: 'outline/CurrencyDollarIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CurrentLocationIcon.stories.tsx b/src/stories/CurrentLocationIcon.stories.tsx new file mode 100644 index 00000000..2694e632 --- /dev/null +++ b/src/stories/CurrentLocationIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CurrentLocationIcon from '../icons/current-location-icon' + + const meta: Meta = { + component: CurrentLocationIcon, + title: 'outline/CurrentLocationIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktop.stories.tsx b/src/stories/DeviceDesktop.stories.tsx deleted file mode 100644 index a576b96a..00000000 --- a/src/stories/DeviceDesktop.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktop from '../icons-test/device-desktop' - - const meta: Meta = { - component: DeviceDesktop, - title: 'outline/DeviceDesktop', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DeviceDesktopAnalytics.stories.tsx b/src/stories/DeviceDesktopAnalytics.stories.tsx deleted file mode 100644 index c0576dd1..00000000 --- a/src/stories/DeviceDesktopAnalytics.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktopAnalytics from '../icons-test/device-desktop-analytics' - - const meta: Meta = { - component: DeviceDesktopAnalytics, - title: 'outline/DeviceDesktopAnalytics', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DeviceDesktopAnalyticsIcon.stories.tsx b/src/stories/DeviceDesktopAnalyticsIcon.stories.tsx new file mode 100644 index 00000000..efd83a7e --- /dev/null +++ b/src/stories/DeviceDesktopAnalyticsIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopAnalyticsIcon from '../icons/device-desktop-analytics-icon' + + const meta: Meta = { + component: DeviceDesktopAnalyticsIcon, + title: 'outline/DeviceDesktopAnalyticsIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktopIcon.stories.tsx b/src/stories/DeviceDesktopIcon.stories.tsx new file mode 100644 index 00000000..7afbebd5 --- /dev/null +++ b/src/stories/DeviceDesktopIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopIcon from '../icons/device-desktop-icon' + + const meta: Meta = { + component: DeviceDesktopIcon, + title: 'outline/DeviceDesktopIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceDesktopOff.stories.tsx b/src/stories/DeviceDesktopOff.stories.tsx deleted file mode 100644 index 678e3cd8..00000000 --- a/src/stories/DeviceDesktopOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceDesktopOff from '../icons-test/device-desktop-off' - - const meta: Meta = { - component: DeviceDesktopOff, - title: 'outline/DeviceDesktopOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DeviceDesktopOffIcon.stories.tsx b/src/stories/DeviceDesktopOffIcon.stories.tsx new file mode 100644 index 00000000..d9876e5c --- /dev/null +++ b/src/stories/DeviceDesktopOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceDesktopOffIcon from '../icons/device-desktop-off-icon' + + const meta: Meta = { + component: DeviceDesktopOffIcon, + title: 'outline/DeviceDesktopOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DeviceLaptop.stories.tsx b/src/stories/DeviceLaptop.stories.tsx deleted file mode 100644 index 165a8038..00000000 --- a/src/stories/DeviceLaptop.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceLaptop from '../icons-test/device-laptop' - - const meta: Meta = { - component: DeviceLaptop, - title: 'outline/DeviceLaptop', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowNarrowRight.stories.tsx b/src/stories/DeviceLaptopIcon.stories.tsx similarity index 90% rename from src/stories/ArrowNarrowRight.stories.tsx rename to src/stories/DeviceLaptopIcon.stories.tsx index 010964d0..8c18fff6 100644 --- a/src/stories/ArrowNarrowRight.stories.tsx +++ b/src/stories/DeviceLaptopIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowNarrowRight from '../icons-test/arrow-narrow-right' + import DeviceLaptopIcon from '../icons/device-laptop-icon' - const meta: Meta = { - component: ArrowNarrowRight, - title: 'outline/ArrowNarrowRight', + const meta: Meta = { + component: DeviceLaptopIcon, + title: 'outline/DeviceLaptopIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/DeviceTv.stories.tsx b/src/stories/DeviceTv.stories.tsx deleted file mode 100644 index d9da0946..00000000 --- a/src/stories/DeviceTv.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DeviceTv from '../icons-test/device-tv' - - const meta: Meta = { - component: DeviceTv, - title: 'outline/DeviceTv', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DeviceTvIcon.stories.tsx b/src/stories/DeviceTvIcon.stories.tsx new file mode 100644 index 00000000..43729f13 --- /dev/null +++ b/src/stories/DeviceTvIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DeviceTvIcon from '../icons/device-tv-icon' + + const meta: Meta = { + component: DeviceTvIcon, + title: 'outline/DeviceTvIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Diamond.stories.tsx b/src/stories/Diamond.stories.tsx deleted file mode 100644 index a5a4ca90..00000000 --- a/src/stories/Diamond.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Diamond from '../icons-test/diamond' - - const meta: Meta = { - component: Diamond, - title: 'outline/Diamond', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowRight.stories.tsx b/src/stories/DiamondIcon.stories.tsx similarity index 88% rename from src/stories/ArrowRight.stories.tsx rename to src/stories/DiamondIcon.stories.tsx index 2f0c09b6..36780b46 100644 --- a/src/stories/ArrowRight.stories.tsx +++ b/src/stories/DiamondIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowRight from '../icons-test/arrow-right' + import DiamondIcon from '../icons/diamond-icon' - const meta: Meta = { - component: ArrowRight, - title: 'outline/ArrowRight', + const meta: Meta = { + component: DiamondIcon, + title: 'outline/DiamondIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Discount.stories.tsx b/src/stories/Discount.stories.tsx deleted file mode 100644 index 05f15ccf..00000000 --- a/src/stories/Discount.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Discount from '../icons-test/discount' - - const meta: Meta = { - component: Discount, - title: 'outline/Discount', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Discount2.stories.tsx b/src/stories/Discount2.stories.tsx deleted file mode 100644 index a8d063bc..00000000 --- a/src/stories/Discount2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Discount2 from '../icons-test/discount-2' - - const meta: Meta = { - component: Discount2, - title: 'outline/Discount2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Discount2Icon.stories.tsx b/src/stories/Discount2Icon.stories.tsx new file mode 100644 index 00000000..6db1432d --- /dev/null +++ b/src/stories/Discount2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Discount2Icon from '../icons/discount-2-icon' + + const meta: Meta = { + component: Discount2Icon, + title: 'outline/Discount2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/AlertCircle.stories.tsx b/src/stories/DiscountIcon.stories.tsx similarity index 88% rename from src/stories/AlertCircle.stories.tsx rename to src/stories/DiscountIcon.stories.tsx index a66e7e24..13be2491 100644 --- a/src/stories/AlertCircle.stories.tsx +++ b/src/stories/DiscountIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertCircle from '../icons-test/alert-circle' + import DiscountIcon from '../icons/discount-icon' - const meta: Meta = { - component: AlertCircle, - title: 'outline/AlertCircle', + const meta: Meta = { + component: DiscountIcon, + title: 'outline/DiscountIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Disk.stories.tsx b/src/stories/Disk.stories.tsx deleted file mode 100644 index 293276ec..00000000 --- a/src/stories/Disk.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Disk from '../icons-test/disk' - - const meta: Meta = { - component: Disk, - title: 'outline/Disk', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DiskIcon.stories.tsx b/src/stories/DiskIcon.stories.tsx new file mode 100644 index 00000000..95ae0d03 --- /dev/null +++ b/src/stories/DiskIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DiskIcon from '../icons/disk-icon' + + const meta: Meta = { + component: DiskIcon, + title: 'outline/DiskIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DotsVertical.stories.tsx b/src/stories/DotsVertical.stories.tsx deleted file mode 100644 index b767663d..00000000 --- a/src/stories/DotsVertical.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import DotsVertical from '../icons-test/dots-vertical' - - const meta: Meta = { - component: DotsVertical, - title: 'outline/DotsVertical', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/DotsVerticalIcon.stories.tsx b/src/stories/DotsVerticalIcon.stories.tsx new file mode 100644 index 00000000..64bfcd31 --- /dev/null +++ b/src/stories/DotsVerticalIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DotsVerticalIcon from '../icons/dots-vertical-icon' + + const meta: Meta = { + component: DotsVerticalIcon, + title: 'outline/DotsVerticalIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Download.stories.tsx b/src/stories/Download.stories.tsx deleted file mode 100644 index dd8016e8..00000000 --- a/src/stories/Download.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Download from '../icons-test/download' - - const meta: Meta = { - component: Download, - title: 'outline/Download', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AlertCircleAccent.stories.tsx b/src/stories/DownloadAccentIcon.stories.tsx similarity index 86% rename from src/stories/AlertCircleAccent.stories.tsx rename to src/stories/DownloadAccentIcon.stories.tsx index 22c9cdd4..27e55fe3 100644 --- a/src/stories/AlertCircleAccent.stories.tsx +++ b/src/stories/DownloadAccentIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AlertCircleAccent from '../icons-test/alert-circle-accent' + import DownloadAccentIcon from '../icons/download-accent-icon' - const meta: Meta = { - component: AlertCircleAccent, - title: 'accent/AlertCircleAccent', + const meta: Meta = { + component: DownloadAccentIcon, + title: 'accent/DownloadAccentIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/DownloadIcon.stories.tsx b/src/stories/DownloadIcon.stories.tsx new file mode 100644 index 00000000..e6906701 --- /dev/null +++ b/src/stories/DownloadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import DownloadIcon from '../icons/download-icon' + + const meta: Meta = { + component: DownloadIcon, + title: 'outline/DownloadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Edit.stories.tsx b/src/stories/Edit.stories.tsx deleted file mode 100644 index b8517e1c..00000000 --- a/src/stories/Edit.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Edit from '../icons-test/edit' - - const meta: Meta = { - component: Edit, - title: 'outline/Edit', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/EditIcon.stories.tsx b/src/stories/EditIcon.stories.tsx index 2f18191f..eabb5f77 100644 --- a/src/stories/EditIcon.stories.tsx +++ b/src/stories/EditIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import EditIcon from '../icons-test/edit-icon' + import EditIcon from '../icons/edit-icon' const meta: Meta = { component: EditIcon, - title: 'logo/EditIcon', + title: 'outline/EditIcon', decorators: [ (Story) => (
@@ -33,13 +33,12 @@ import type { Meta, StoryObj } from '@storybook/react' export const Default: Story = {} - + export const Color: Story = { args: { - className: 'text-red-500', - }, + color: 'red', + }, } - diff --git a/src/stories/GoogleColor.stories.tsx b/src/stories/EditIconIcon.stories.tsx similarity index 88% rename from src/stories/GoogleColor.stories.tsx rename to src/stories/EditIconIcon.stories.tsx index 936d49fa..0dead7b7 100644 --- a/src/stories/GoogleColor.stories.tsx +++ b/src/stories/EditIconIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import GoogleColor from '../icons-test/google-color' + import EditIconIcon from '../icons/edit-icon-icon' - const meta: Meta = { - component: GoogleColor, - title: 'logo/GoogleColor', + const meta: Meta = { + component: EditIconIcon, + title: 'logo/EditIconIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ExternalLink.stories.tsx b/src/stories/ExternalLink.stories.tsx deleted file mode 100644 index f88b8a22..00000000 --- a/src/stories/ExternalLink.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ExternalLink from '../icons-test/external-link' - - const meta: Meta = { - component: ExternalLink, - title: 'outline/ExternalLink', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ExternalLinkIcon.stories.tsx b/src/stories/ExternalLinkIcon.stories.tsx new file mode 100644 index 00000000..a025ce47 --- /dev/null +++ b/src/stories/ExternalLinkIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ExternalLinkIcon from '../icons/external-link-icon' + + const meta: Meta = { + component: ExternalLinkIcon, + title: 'outline/ExternalLinkIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Eye.stories.tsx b/src/stories/Eye.stories.tsx deleted file mode 100644 index cdbdf64c..00000000 --- a/src/stories/Eye.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Eye from '../icons-test/eye' - - const meta: Meta = { - component: Eye, - title: 'outline/Eye', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/EyeCheck.stories.tsx b/src/stories/EyeCheck.stories.tsx deleted file mode 100644 index e64bee02..00000000 --- a/src/stories/EyeCheck.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import EyeCheck from '../icons-test/eye-check' - - const meta: Meta = { - component: EyeCheck, - title: 'outline/EyeCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/EyeCheckIcon.stories.tsx b/src/stories/EyeCheckIcon.stories.tsx new file mode 100644 index 00000000..129798f0 --- /dev/null +++ b/src/stories/EyeCheckIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeCheckIcon from '../icons/eye-check-icon' + + const meta: Meta = { + component: EyeCheckIcon, + title: 'outline/EyeCheckIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Ban.stories.tsx b/src/stories/EyeIcon.stories.tsx similarity index 89% rename from src/stories/Ban.stories.tsx rename to src/stories/EyeIcon.stories.tsx index 19c531cb..6d22da36 100644 --- a/src/stories/Ban.stories.tsx +++ b/src/stories/EyeIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Ban from '../icons-test/ban' + import EyeIcon from '../icons/eye-icon' - const meta: Meta = { - component: Ban, - title: 'outline/Ban', + const meta: Meta = { + component: EyeIcon, + title: 'outline/EyeIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/EyeOff.stories.tsx b/src/stories/EyeOff.stories.tsx deleted file mode 100644 index ab593823..00000000 --- a/src/stories/EyeOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import EyeOff from '../icons-test/eye-off' - - const meta: Meta = { - component: EyeOff, - title: 'outline/EyeOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/EyeOffIcon.stories.tsx b/src/stories/EyeOffIcon.stories.tsx new file mode 100644 index 00000000..efeff0e1 --- /dev/null +++ b/src/stories/EyeOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import EyeOffIcon from '../icons/eye-off-icon' + + const meta: Meta = { + component: EyeOffIcon, + title: 'outline/EyeOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown2Fill.stories.tsx b/src/stories/FacebookIcon.stories.tsx similarity index 89% rename from src/stories/Crown2Fill.stories.tsx rename to src/stories/FacebookIcon.stories.tsx index 36804c8e..b260bcaf 100644 --- a/src/stories/Crown2Fill.stories.tsx +++ b/src/stories/FacebookIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Crown2Fill from '../icons-test/crown-2-fill' + import FacebookIcon from '../icons/facebook-icon' - const meta: Meta = { - component: Crown2Fill, - title: 'fill/Crown2Fill', + const meta: Meta = { + component: FacebookIcon, + title: 'fill/FacebookIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/FileDownload.stories.tsx b/src/stories/FileDownload.stories.tsx deleted file mode 100644 index e01fedef..00000000 --- a/src/stories/FileDownload.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileDownload from '../icons-test/file-download' - - const meta: Meta = { - component: FileDownload, - title: 'outline/FileDownload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FileDownloadIcon.stories.tsx b/src/stories/FileDownloadIcon.stories.tsx new file mode 100644 index 00000000..097fcd9d --- /dev/null +++ b/src/stories/FileDownloadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileDownloadIcon from '../icons/file-download-icon' + + const meta: Meta = { + component: FileDownloadIcon, + title: 'outline/FileDownloadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileExport.stories.tsx b/src/stories/FileExport.stories.tsx deleted file mode 100644 index 71466141..00000000 --- a/src/stories/FileExport.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileExport from '../icons-test/file-export' - - const meta: Meta = { - component: FileExport, - title: 'outline/FileExport', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FileExportIcon.stories.tsx b/src/stories/FileExportIcon.stories.tsx new file mode 100644 index 00000000..80fb7fbe --- /dev/null +++ b/src/stories/FileExportIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileExportIcon from '../icons/file-export-icon' + + const meta: Meta = { + component: FileExportIcon, + title: 'outline/FileExportIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileReport.stories.tsx b/src/stories/FileReport.stories.tsx deleted file mode 100644 index 3642b5a6..00000000 --- a/src/stories/FileReport.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileReport from '../icons-test/file-report' - - const meta: Meta = { - component: FileReport, - title: 'outline/FileReport', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FileReportIcon.stories.tsx b/src/stories/FileReportIcon.stories.tsx new file mode 100644 index 00000000..547b9d50 --- /dev/null +++ b/src/stories/FileReportIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileReportIcon from '../icons/file-report-icon' + + const meta: Meta = { + component: FileReportIcon, + title: 'outline/FileReportIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FileSearch.stories.tsx b/src/stories/FileSearch.stories.tsx deleted file mode 100644 index 441b2188..00000000 --- a/src/stories/FileSearch.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FileSearch from '../icons-test/file-search' - - const meta: Meta = { - component: FileSearch, - title: 'outline/FileSearch', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FileSearchIcon.stories.tsx b/src/stories/FileSearchIcon.stories.tsx new file mode 100644 index 00000000..c6fa3fc9 --- /dev/null +++ b/src/stories/FileSearchIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FileSearchIcon from '../icons/file-search-icon' + + const meta: Meta = { + component: FileSearchIcon, + title: 'outline/FileSearchIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Filter.stories.tsx b/src/stories/Filter.stories.tsx deleted file mode 100644 index 7f241ece..00000000 --- a/src/stories/Filter.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Filter from '../icons-test/filter' - - const meta: Meta = { - component: Filter, - title: 'outline/Filter', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ArrowLeft.stories.tsx b/src/stories/FilterIcon.stories.tsx similarity index 88% rename from src/stories/ArrowLeft.stories.tsx rename to src/stories/FilterIcon.stories.tsx index 38975c64..a0fb0e36 100644 --- a/src/stories/ArrowLeft.stories.tsx +++ b/src/stories/FilterIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ArrowLeft from '../icons-test/arrow-left' + import FilterIcon from '../icons/filter-icon' - const meta: Meta = { - component: ArrowLeft, - title: 'outline/ArrowLeft', + const meta: Meta = { + component: FilterIcon, + title: 'outline/FilterIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/FilterOff.stories.tsx b/src/stories/FilterOff.stories.tsx deleted file mode 100644 index 04c47312..00000000 --- a/src/stories/FilterOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FilterOff from '../icons-test/filter-off' - - const meta: Meta = { - component: FilterOff, - title: 'outline/FilterOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FilterOffIcon.stories.tsx b/src/stories/FilterOffIcon.stories.tsx new file mode 100644 index 00000000..5acacbf3 --- /dev/null +++ b/src/stories/FilterOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FilterOffIcon from '../icons/filter-off-icon' + + const meta: Meta = { + component: FilterOffIcon, + title: 'outline/FilterOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Flag.stories.tsx b/src/stories/Flag.stories.tsx deleted file mode 100644 index fa6f23f4..00000000 --- a/src/stories/Flag.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Flag from '../icons-test/flag' - - const meta: Meta = { - component: Flag, - title: 'outline/Flag', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ImageBorder.stories.tsx b/src/stories/FlagFillIcon.stories.tsx similarity index 89% rename from src/stories/ImageBorder.stories.tsx rename to src/stories/FlagFillIcon.stories.tsx index 22729ada..2f73b4b6 100644 --- a/src/stories/ImageBorder.stories.tsx +++ b/src/stories/FlagFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import ImageBorder from '../icons-test/image-border' + import FlagFillIcon from '../icons/flag-fill-icon' - const meta: Meta = { - component: ImageBorder, - title: 'mix/ImageBorder', + const meta: Meta = { + component: FlagFillIcon, + title: 'mix/FlagFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/FlagIcon.stories.tsx b/src/stories/FlagIcon.stories.tsx new file mode 100644 index 00000000..2f95e553 --- /dev/null +++ b/src/stories/FlagIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagIcon from '../icons/flag-icon' + + const meta: Meta = { + component: FlagIcon, + title: 'outline/FlagIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FlagOff.stories.tsx b/src/stories/FlagOff.stories.tsx deleted file mode 100644 index a3021319..00000000 --- a/src/stories/FlagOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FlagOff from '../icons-test/flag-off' - - const meta: Meta = { - component: FlagOff, - title: 'outline/FlagOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FlagOffIcon.stories.tsx b/src/stories/FlagOffIcon.stories.tsx new file mode 100644 index 00000000..3b85b897 --- /dev/null +++ b/src/stories/FlagOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FlagOffIcon from '../icons/flag-off-icon' + + const meta: Meta = { + component: FlagOffIcon, + title: 'outline/FlagOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Folder.stories.tsx b/src/stories/Folder.stories.tsx deleted file mode 100644 index 42f86c1f..00000000 --- a/src/stories/Folder.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Folder from '../icons-test/folder' - - const meta: Meta = { - component: Folder, - title: 'outline/Folder', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderDownload.stories.tsx b/src/stories/FolderDownload.stories.tsx deleted file mode 100644 index 357b05f2..00000000 --- a/src/stories/FolderDownload.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderDownload from '../icons-test/folder-download' - - const meta: Meta = { - component: FolderDownload, - title: 'outline/FolderDownload', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderDownloadIcon.stories.tsx b/src/stories/FolderDownloadIcon.stories.tsx new file mode 100644 index 00000000..b5970ef0 --- /dev/null +++ b/src/stories/FolderDownloadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderDownloadIcon from '../icons/folder-download-icon' + + const meta: Meta = { + component: FolderDownloadIcon, + title: 'outline/FolderDownloadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderEye.stories.tsx b/src/stories/FolderEye.stories.tsx deleted file mode 100644 index c2e07f34..00000000 --- a/src/stories/FolderEye.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderEye from '../icons-test/folder-eye' - - const meta: Meta = { - component: FolderEye, - title: 'outline/FolderEye', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderEyeIcon.stories.tsx b/src/stories/FolderEyeIcon.stories.tsx new file mode 100644 index 00000000..e17b21f1 --- /dev/null +++ b/src/stories/FolderEyeIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderEyeIcon from '../icons/folder-eye-icon' + + const meta: Meta = { + component: FolderEyeIcon, + title: 'outline/FolderEyeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderFillIcon.stories.tsx b/src/stories/FolderFillIcon.stories.tsx new file mode 100644 index 00000000..a81f9d7f --- /dev/null +++ b/src/stories/FolderFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderFillIcon from '../icons/folder-fill-icon' + + const meta: Meta = { + component: FolderFillIcon, + title: 'no-change/FolderFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderIcon.stories.tsx b/src/stories/FolderIcon.stories.tsx new file mode 100644 index 00000000..f871b246 --- /dev/null +++ b/src/stories/FolderIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderIcon from '../icons/folder-icon' + + const meta: Meta = { + component: FolderIcon, + title: 'outline/FolderIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderMinus.stories.tsx b/src/stories/FolderMinus.stories.tsx deleted file mode 100644 index 73e481ac..00000000 --- a/src/stories/FolderMinus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderMinus from '../icons-test/folder-minus' - - const meta: Meta = { - component: FolderMinus, - title: 'outline/FolderMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderMinusIcon.stories.tsx b/src/stories/FolderMinusIcon.stories.tsx new file mode 100644 index 00000000..85fa514a --- /dev/null +++ b/src/stories/FolderMinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderMinusIcon from '../icons/folder-minus-icon' + + const meta: Meta = { + component: FolderMinusIcon, + title: 'outline/FolderMinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderOff.stories.tsx b/src/stories/FolderOff.stories.tsx deleted file mode 100644 index ff19638d..00000000 --- a/src/stories/FolderOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderOff from '../icons-test/folder-off' - - const meta: Meta = { - component: FolderOff, - title: 'outline/FolderOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderUpload.stories.tsx b/src/stories/FolderOffIcon.stories.tsx similarity index 89% rename from src/stories/FolderUpload.stories.tsx rename to src/stories/FolderOffIcon.stories.tsx index 9bed0e2f..2aae962d 100644 --- a/src/stories/FolderUpload.stories.tsx +++ b/src/stories/FolderOffIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderUpload from '../icons-test/folder-upload' + import FolderOffIcon from '../icons/folder-off-icon' - const meta: Meta = { - component: FolderUpload, - title: 'outline/FolderUpload', + const meta: Meta = { + component: FolderOffIcon, + title: 'outline/FolderOffIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/FolderPlus.stories.tsx b/src/stories/FolderPlus.stories.tsx deleted file mode 100644 index 0d20accb..00000000 --- a/src/stories/FolderPlus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderPlus from '../icons-test/folder-plus' - - const meta: Meta = { - component: FolderPlus, - title: 'outline/FolderPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderPlusIcon.stories.tsx b/src/stories/FolderPlusIcon.stories.tsx new file mode 100644 index 00000000..4a6fd082 --- /dev/null +++ b/src/stories/FolderPlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderPlusIcon from '../icons/folder-plus-icon' + + const meta: Meta = { + component: FolderPlusIcon, + title: 'outline/FolderPlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderUploadIcon.stories.tsx b/src/stories/FolderUploadIcon.stories.tsx new file mode 100644 index 00000000..0722adbf --- /dev/null +++ b/src/stories/FolderUploadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderUploadIcon from '../icons/folder-upload-icon' + + const meta: Meta = { + component: FolderUploadIcon, + title: 'outline/FolderUploadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FolderX.stories.tsx b/src/stories/FolderX.stories.tsx deleted file mode 100644 index db677d3c..00000000 --- a/src/stories/FolderX.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import FolderX from '../icons-test/folder-x' - - const meta: Meta = { - component: FolderX, - title: 'outline/FolderX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderXIcon.stories.tsx b/src/stories/FolderXIcon.stories.tsx new file mode 100644 index 00000000..8590cc69 --- /dev/null +++ b/src/stories/FolderXIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FolderXIcon from '../icons/folder-x-icon' + + const meta: Meta = { + component: FolderXIcon, + title: 'outline/FolderXIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Folders.stories.tsx b/src/stories/Folders.stories.tsx deleted file mode 100644 index 5a7b2d3a..00000000 --- a/src/stories/Folders.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Folders from '../icons-test/folders' - - const meta: Meta = { - component: Folders, - title: 'outline/Folders', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FoldersIcon.stories.tsx b/src/stories/FoldersIcon.stories.tsx new file mode 100644 index 00000000..74969102 --- /dev/null +++ b/src/stories/FoldersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import FoldersIcon from '../icons/folders-icon' + + const meta: Meta = { + component: FoldersIcon, + title: 'outline/FoldersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/DownloadAccent.stories.tsx b/src/stories/GoogleColorIcon.stories.tsx similarity index 87% rename from src/stories/DownloadAccent.stories.tsx rename to src/stories/GoogleColorIcon.stories.tsx index b7649b08..f3e84941 100644 --- a/src/stories/DownloadAccent.stories.tsx +++ b/src/stories/GoogleColorIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import DownloadAccent from '../icons-test/download-accent' + import GoogleColorIcon from '../icons/google-color-icon' - const meta: Meta = { - component: DownloadAccent, - title: 'accent/DownloadAccent', + const meta: Meta = { + component: GoogleColorIcon, + title: 'logo/GoogleColorIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/AtomAccent.stories.tsx b/src/stories/GrabHandIcon.stories.tsx similarity index 88% rename from src/stories/AtomAccent.stories.tsx rename to src/stories/GrabHandIcon.stories.tsx index 4fffe6f0..cb8ea77d 100644 --- a/src/stories/AtomAccent.stories.tsx +++ b/src/stories/GrabHandIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AtomAccent from '../icons-test/atom-accent' + import GrabHandIcon from '../icons/grab-hand-icon' - const meta: Meta = { - component: AtomAccent, - title: 'accent/AtomAccent', + const meta: Meta = { + component: GrabHandIcon, + title: 'logo/GrabHandIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/GridDots.stories.tsx b/src/stories/GridDots.stories.tsx deleted file mode 100644 index f647c48c..00000000 --- a/src/stories/GridDots.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridDots from '../icons-test/grid-dots' - - const meta: Meta = { - component: GridDots, - title: 'outline/GridDots', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/GridDotsIcon.stories.tsx b/src/stories/GridDotsIcon.stories.tsx new file mode 100644 index 00000000..ad04b2fc --- /dev/null +++ b/src/stories/GridDotsIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridDotsIcon from '../icons/grid-dots-icon' + + const meta: Meta = { + component: GridDotsIcon, + title: 'outline/GridDotsIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridView1.stories.tsx b/src/stories/GridView1.stories.tsx deleted file mode 100644 index 0c06c27f..00000000 --- a/src/stories/GridView1.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridView1 from '../icons-test/grid-view-1' - - const meta: Meta = { - component: GridView1, - title: 'fill/GridView1', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/GridView1Icon.stories.tsx b/src/stories/GridView1Icon.stories.tsx new file mode 100644 index 00000000..5ab926a0 --- /dev/null +++ b/src/stories/GridView1Icon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView1Icon from '../icons/grid-view-1-icon' + + const meta: Meta = { + component: GridView1Icon, + title: 'fill/GridView1Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/GridView2.stories.tsx b/src/stories/GridView2.stories.tsx deleted file mode 100644 index f5e1a31d..00000000 --- a/src/stories/GridView2.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import GridView2 from '../icons-test/grid-view-2' - - const meta: Meta = { - component: GridView2, - title: 'fill/GridView2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/GridView2Icon.stories.tsx b/src/stories/GridView2Icon.stories.tsx new file mode 100644 index 00000000..29ec0565 --- /dev/null +++ b/src/stories/GridView2Icon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import GridView2Icon from '../icons/grid-view-2-icon' + + const meta: Meta = { + component: GridView2Icon, + title: 'fill/GridView2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Home2.stories.tsx b/src/stories/Home2.stories.tsx deleted file mode 100644 index 59b63fe2..00000000 --- a/src/stories/Home2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Home2 from '../icons-test/home-2' - - const meta: Meta = { - component: Home2, - title: 'outline/Home2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Home2Icon.stories.tsx b/src/stories/Home2Icon.stories.tsx new file mode 100644 index 00000000..92c810a1 --- /dev/null +++ b/src/stories/Home2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Home2Icon from '../icons/home-2-icon' + + const meta: Meta = { + component: Home2Icon, + title: 'outline/Home2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Recull.stories.tsx b/src/stories/HomeIcon.stories.tsx similarity index 90% rename from src/stories/Recull.stories.tsx rename to src/stories/HomeIcon.stories.tsx index f028ff4c..64de9927 100644 --- a/src/stories/Recull.stories.tsx +++ b/src/stories/HomeIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Recull from '../icons-test/recull' + import HomeIcon from '../icons/home-icon' - const meta: Meta = { - component: Recull, - title: 'no-change/Recull', + const meta: Meta = { + component: HomeIcon, + title: 'no-change/HomeIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Collection.stories.tsx b/src/stories/ImageBorderIcon.stories.tsx similarity index 88% rename from src/stories/Collection.stories.tsx rename to src/stories/ImageBorderIcon.stories.tsx index fec9d623..a47a02ff 100644 --- a/src/stories/Collection.stories.tsx +++ b/src/stories/ImageBorderIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Collection from '../icons-test/collection' + import ImageBorderIcon from '../icons/image-border-icon' - const meta: Meta = { - component: Collection, - title: 'mix/Collection', + const meta: Meta = { + component: ImageBorderIcon, + title: 'mix/ImageBorderIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Import.stories.tsx b/src/stories/Import.stories.tsx deleted file mode 100644 index 62382af2..00000000 --- a/src/stories/Import.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Import from '../icons-test/Import' - - const meta: Meta = { - component: Import, - title: 'outline/Import', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ImportIcon.stories.tsx b/src/stories/ImportIcon.stories.tsx new file mode 100644 index 00000000..057fe5c0 --- /dev/null +++ b/src/stories/ImportIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ImportIcon from '../icons/Import-icon' + + const meta: Meta = { + component: ImportIcon, + title: 'outline/ImportIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Info.stories.tsx b/src/stories/Info.stories.tsx deleted file mode 100644 index 80f5c137..00000000 --- a/src/stories/Info.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Info from '../icons-test/info' - - const meta: Meta = { - component: Info, - title: 'outline/Info', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/InfoCircle.stories.tsx b/src/stories/InfoCircle.stories.tsx deleted file mode 100644 index 3252d804..00000000 --- a/src/stories/InfoCircle.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoCircle from '../icons-test/info-circle' - - const meta: Meta = { - component: InfoCircle, - title: 'outline/InfoCircle', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/InfoCircleIcon.stories.tsx b/src/stories/InfoCircleIcon.stories.tsx new file mode 100644 index 00000000..ad43e43e --- /dev/null +++ b/src/stories/InfoCircleIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCircleIcon from '../icons/info-circle-icon' + + const meta: Meta = { + component: InfoCircleIcon, + title: 'outline/InfoCircleIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoCirlce2.stories.tsx b/src/stories/InfoCirlce2.stories.tsx deleted file mode 100644 index 26064abe..00000000 --- a/src/stories/InfoCirlce2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoCirlce2 from '../icons-test/info-cirlce-2' - - const meta: Meta = { - component: InfoCirlce2, - title: 'outline/InfoCirlce2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/InfoCirlce2Icon.stories.tsx b/src/stories/InfoCirlce2Icon.stories.tsx new file mode 100644 index 00000000..71fbeb22 --- /dev/null +++ b/src/stories/InfoCirlce2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoCirlce2Icon from '../icons/info-cirlce-2-icon' + + const meta: Meta = { + component: InfoCirlce2Icon, + title: 'outline/InfoCirlce2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoIcon.stories.tsx b/src/stories/InfoIcon.stories.tsx new file mode 100644 index 00000000..7fdc330c --- /dev/null +++ b/src/stories/InfoIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoIcon from '../icons/info-icon' + + const meta: Meta = { + component: InfoIcon, + title: 'outline/InfoIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/InfoSquare.stories.tsx b/src/stories/InfoSquare.stories.tsx deleted file mode 100644 index cf312b69..00000000 --- a/src/stories/InfoSquare.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import InfoSquare from '../icons-test/info-square' - - const meta: Meta = { - component: InfoSquare, - title: 'outline/InfoSquare', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/InfoSquareIcon.stories.tsx b/src/stories/InfoSquareIcon.stories.tsx new file mode 100644 index 00000000..65893916 --- /dev/null +++ b/src/stories/InfoSquareIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import InfoSquareIcon from '../icons/info-square-icon' + + const meta: Meta = { + component: InfoSquareIcon, + title: 'outline/InfoSquareIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Key.stories.tsx b/src/stories/Key.stories.tsx deleted file mode 100644 index 6e5e0208..00000000 --- a/src/stories/Key.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Key from '../icons-test/key' - - const meta: Meta = { - component: Key, - title: 'outline/Key', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Key2.stories.tsx b/src/stories/Key2.stories.tsx deleted file mode 100644 index 645acc83..00000000 --- a/src/stories/Key2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Key2 from '../icons-test/key-2' - - const meta: Meta = { - component: Key2, - title: 'outline/Key2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Key2Icon.stories.tsx b/src/stories/Key2Icon.stories.tsx new file mode 100644 index 00000000..7665943b --- /dev/null +++ b/src/stories/Key2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Key2Icon from '../icons/key-2-icon' + + const meta: Meta = { + component: Key2Icon, + title: 'outline/Key2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/KeyDuplicate.stories.tsx b/src/stories/KeyDuplicate.stories.tsx deleted file mode 100644 index aedf9916..00000000 --- a/src/stories/KeyDuplicate.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import KeyDuplicate from '../icons-test/key-duplicate' - - const meta: Meta = { - component: KeyDuplicate, - title: 'outline/KeyDuplicate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/KeyDuplicateIcon.stories.tsx b/src/stories/KeyDuplicateIcon.stories.tsx new file mode 100644 index 00000000..4874ea52 --- /dev/null +++ b/src/stories/KeyDuplicateIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import KeyDuplicateIcon from '../icons/key-duplicate-icon' + + const meta: Meta = { + component: KeyDuplicateIcon, + title: 'outline/KeyDuplicateIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Alarm.stories.tsx b/src/stories/KeyIcon.stories.tsx similarity index 89% rename from src/stories/Alarm.stories.tsx rename to src/stories/KeyIcon.stories.tsx index d049ffbd..d619215f 100644 --- a/src/stories/Alarm.stories.tsx +++ b/src/stories/KeyIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Alarm from '../icons-test/alarm' + import KeyIcon from '../icons/key-icon' - const meta: Meta = { - component: Alarm, - title: 'outline/Alarm', + const meta: Meta = { + component: KeyIcon, + title: 'outline/KeyIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/LayoutSidebarRightMix.stories.tsx b/src/stories/LayoutSidebarRightMixIcon.stories.tsx similarity index 85% rename from src/stories/LayoutSidebarRightMix.stories.tsx rename to src/stories/LayoutSidebarRightMixIcon.stories.tsx index 5fa5eef4..2de6e569 100644 --- a/src/stories/LayoutSidebarRightMix.stories.tsx +++ b/src/stories/LayoutSidebarRightMixIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import LayoutSidebarRightMix from '../icons-test/layout-sidebar-right-mix' + import LayoutSidebarRightMixIcon from '../icons/layout-sidebar-right-mix-icon' - const meta: Meta = { - component: LayoutSidebarRightMix, - title: 'no-change/LayoutSidebarRightMix', + const meta: Meta = { + component: LayoutSidebarRightMixIcon, + title: 'no-change/LayoutSidebarRightMixIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Link.stories.tsx b/src/stories/Link.stories.tsx deleted file mode 100644 index d30cab5d..00000000 --- a/src/stories/Link.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Link from '../icons-test/link' - - const meta: Meta = { - component: Link, - title: 'outline/Link', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LinkIcon.stories.tsx b/src/stories/LinkIcon.stories.tsx new file mode 100644 index 00000000..7e556f65 --- /dev/null +++ b/src/stories/LinkIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LinkIcon from '../icons/link-icon' + + const meta: Meta = { + component: LinkIcon, + title: 'outline/LinkIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ListFill.stories.tsx b/src/stories/ListFill.stories.tsx deleted file mode 100644 index 318f121f..00000000 --- a/src/stories/ListFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ListFill from '../icons-test/list-fill' - - const meta: Meta = { - component: ListFill, - title: 'fill/ListFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/CircleFill.stories.tsx b/src/stories/ListFillIcon.stories.tsx similarity index 89% rename from src/stories/CircleFill.stories.tsx rename to src/stories/ListFillIcon.stories.tsx index 524f32bb..bb907cb0 100644 --- a/src/stories/CircleFill.stories.tsx +++ b/src/stories/ListFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import CircleFill from '../icons-test/circle-fill' + import ListFillIcon from '../icons/list-fill-icon' - const meta: Meta = { - component: CircleFill, - title: 'fill/CircleFill', + const meta: Meta = { + component: ListFillIcon, + title: 'fill/ListFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Loader.stories.tsx b/src/stories/Loader.stories.tsx deleted file mode 100644 index 76332ef2..00000000 --- a/src/stories/Loader.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Loader from '../icons-test/loader' - - const meta: Meta = { - component: Loader, - title: 'outline/Loader', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LoaderIcon.stories.tsx b/src/stories/LoaderIcon.stories.tsx new file mode 100644 index 00000000..a3e04e24 --- /dev/null +++ b/src/stories/LoaderIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoaderIcon from '../icons/loader-icon' + + const meta: Meta = { + component: LoaderIcon, + title: 'outline/LoaderIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Lock.stories.tsx b/src/stories/Lock.stories.tsx deleted file mode 100644 index 5a2cfefd..00000000 --- a/src/stories/Lock.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Lock from '../icons-test/lock' - - const meta: Meta = { - component: Lock, - title: 'outline/Lock', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Lock2.stories.tsx b/src/stories/Lock2.stories.tsx deleted file mode 100644 index ed8a6cdc..00000000 --- a/src/stories/Lock2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Lock2 from '../icons-test/lock-2' - - const meta: Meta = { - component: Lock2, - title: 'outline/Lock2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Lock2Icon.stories.tsx b/src/stories/Lock2Icon.stories.tsx new file mode 100644 index 00000000..829e68cb --- /dev/null +++ b/src/stories/Lock2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Lock2Icon from '../icons/lock-2-icon' + + const meta: Meta = { + component: Lock2Icon, + title: 'outline/Lock2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LockIcon.stories.tsx b/src/stories/LockIcon.stories.tsx new file mode 100644 index 00000000..cdf4c9cb --- /dev/null +++ b/src/stories/LockIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockIcon from '../icons/lock-icon' + + const meta: Meta = { + component: LockIcon, + title: 'outline/LockIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LockOff.stories.tsx b/src/stories/LockOff.stories.tsx deleted file mode 100644 index 1199f255..00000000 --- a/src/stories/LockOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LockOff from '../icons-test/lock-off' - - const meta: Meta = { - component: LockOff, - title: 'outline/LockOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LockOffIcon.stories.tsx b/src/stories/LockOffIcon.stories.tsx new file mode 100644 index 00000000..d6c5a383 --- /dev/null +++ b/src/stories/LockOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOffIcon from '../icons/lock-off-icon' + + const meta: Meta = { + component: LockOffIcon, + title: 'outline/LockOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LockOpen.stories.tsx b/src/stories/LockOpen.stories.tsx deleted file mode 100644 index 1cdefd68..00000000 --- a/src/stories/LockOpen.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LockOpen from '../icons-test/lock-open' - - const meta: Meta = { - component: LockOpen, - title: 'outline/LockOpen', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LockOpenIcon.stories.tsx b/src/stories/LockOpenIcon.stories.tsx new file mode 100644 index 00000000..ae77cc13 --- /dev/null +++ b/src/stories/LockOpenIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LockOpenIcon from '../icons/lock-open-icon' + + const meta: Meta = { + component: LockOpenIcon, + title: 'outline/LockOpenIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Loop.stories.tsx b/src/stories/Loop.stories.tsx deleted file mode 100644 index 3b0419a7..00000000 --- a/src/stories/Loop.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Loop from '../icons-test/loop' - - const meta: Meta = { - component: Loop, - title: 'outline/Loop', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LoopIcon.stories.tsx b/src/stories/LoopIcon.stories.tsx new file mode 100644 index 00000000..da72b9bd --- /dev/null +++ b/src/stories/LoopIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoopIcon from '../icons/loop-icon' + + const meta: Meta = { + component: LoopIcon, + title: 'outline/LoopIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LoupeFill.stories.tsx b/src/stories/LoupeFill.stories.tsx deleted file mode 100644 index 7dda4f4b..00000000 --- a/src/stories/LoupeFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import LoupeFill from '../icons-test/loupe-fill' - - const meta: Meta = { - component: LoupeFill, - title: 'fill/LoupeFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/LoupeFillIcon.stories.tsx b/src/stories/LoupeFillIcon.stories.tsx new file mode 100644 index 00000000..043bcb29 --- /dev/null +++ b/src/stories/LoupeFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoupeFillIcon from '../icons/loupe-fill-icon' + + const meta: Meta = { + component: LoupeFillIcon, + title: 'fill/LoupeFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Mail.stories.tsx b/src/stories/Mail.stories.tsx deleted file mode 100644 index 13069b48..00000000 --- a/src/stories/Mail.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Mail from '../icons-test/mail' - - const meta: Meta = { - component: Mail, - title: 'outline/Mail', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MailIcon.stories.tsx b/src/stories/MailIcon.stories.tsx new file mode 100644 index 00000000..96b491fe --- /dev/null +++ b/src/stories/MailIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MailIcon from '../icons/mail-icon' + + const meta: Meta = { + component: MailIcon, + title: 'outline/MailIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Map2.stories.tsx b/src/stories/Map2.stories.tsx deleted file mode 100644 index 18781710..00000000 --- a/src/stories/Map2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Map2 from '../icons-test/map-2' - - const meta: Meta = { - component: Map2, - title: 'outline/Map2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Map2Icon.stories.tsx b/src/stories/Map2Icon.stories.tsx new file mode 100644 index 00000000..d94211ca --- /dev/null +++ b/src/stories/Map2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Map2Icon from '../icons/map-2-icon' + + const meta: Meta = { + component: Map2Icon, + title: 'outline/Map2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MapPin.stories.tsx b/src/stories/MapPin.stories.tsx deleted file mode 100644 index a474d035..00000000 --- a/src/stories/MapPin.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MapPin from '../icons-test/map-pin' - - const meta: Meta = { - component: MapPin, - title: 'outline/MapPin', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MapPinIcon.stories.tsx b/src/stories/MapPinIcon.stories.tsx new file mode 100644 index 00000000..8d53701c --- /dev/null +++ b/src/stories/MapPinIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPinIcon from '../icons/map-pin-icon' + + const meta: Meta = { + component: MapPinIcon, + title: 'outline/MapPinIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MapPinOff.stories.tsx b/src/stories/MapPinOff.stories.tsx deleted file mode 100644 index 5b85b18f..00000000 --- a/src/stories/MapPinOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MapPinOff from '../icons-test/map-pin-off' - - const meta: Meta = { - component: MapPinOff, - title: 'outline/MapPinOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MapPinOffIcon.stories.tsx b/src/stories/MapPinOffIcon.stories.tsx new file mode 100644 index 00000000..7a5b1f28 --- /dev/null +++ b/src/stories/MapPinOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MapPinOffIcon from '../icons/map-pin-off-icon' + + const meta: Meta = { + component: MapPinOffIcon, + title: 'outline/MapPinOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Minus.stories.tsx b/src/stories/Minus.stories.tsx deleted file mode 100644 index c59afe80..00000000 --- a/src/stories/Minus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Minus from '../icons-test/minus' - - const meta: Meta = { - component: Minus, - title: 'outline/Minus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MinusIcon.stories.tsx b/src/stories/MinusIcon.stories.tsx new file mode 100644 index 00000000..8341c1ce --- /dev/null +++ b/src/stories/MinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MinusIcon from '../icons/minus-icon' + + const meta: Meta = { + component: MinusIcon, + title: 'outline/MinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodCrazyHappy.stories.tsx b/src/stories/MoodCrazyHappy.stories.tsx deleted file mode 100644 index d663226e..00000000 --- a/src/stories/MoodCrazyHappy.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodCrazyHappy from '../icons-test/mood-crazy-happy' - - const meta: Meta = { - component: MoodCrazyHappy, - title: 'outline/MoodCrazyHappy', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Upload.stories.tsx b/src/stories/MoodCrazyHappyIcon.stories.tsx similarity index 88% rename from src/stories/Upload.stories.tsx rename to src/stories/MoodCrazyHappyIcon.stories.tsx index 5cce862a..e2ea03ed 100644 --- a/src/stories/Upload.stories.tsx +++ b/src/stories/MoodCrazyHappyIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Upload from '../icons-test/upload' + import MoodCrazyHappyIcon from '../icons/mood-crazy-happy-icon' - const meta: Meta = { - component: Upload, - title: 'outline/Upload', + const meta: Meta = { + component: MoodCrazyHappyIcon, + title: 'outline/MoodCrazyHappyIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/MoodEmpty.stories.tsx b/src/stories/MoodEmpty.stories.tsx deleted file mode 100644 index 8077e9d8..00000000 --- a/src/stories/MoodEmpty.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodEmpty from '../icons-test/mood-empty' - - const meta: Meta = { - component: MoodEmpty, - title: 'outline/MoodEmpty', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MoodEmptyIcon.stories.tsx b/src/stories/MoodEmptyIcon.stories.tsx new file mode 100644 index 00000000..b46e9da8 --- /dev/null +++ b/src/stories/MoodEmptyIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodEmptyIcon from '../icons/mood-empty-icon' + + const meta: Meta = { + component: MoodEmptyIcon, + title: 'outline/MoodEmptyIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Mood.stories.tsx b/src/stories/MoodGrayIcon.stories.tsx similarity index 88% rename from src/stories/Mood.stories.tsx rename to src/stories/MoodGrayIcon.stories.tsx index f971aa7e..9cdf35e9 100644 --- a/src/stories/Mood.stories.tsx +++ b/src/stories/MoodGrayIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Mood from '../icons-test/mood' + import MoodGrayIcon from '../icons/mood-gray-icon' - const meta: Meta = { - component: Mood, - title: 'no-change/Mood', + const meta: Meta = { + component: MoodGrayIcon, + title: 'no-change/MoodGrayIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/HomeMix.stories.tsx b/src/stories/MoodIcon.stories.tsx similarity index 90% rename from src/stories/HomeMix.stories.tsx rename to src/stories/MoodIcon.stories.tsx index 1e8d663a..9348e682 100644 --- a/src/stories/HomeMix.stories.tsx +++ b/src/stories/MoodIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import HomeMix from '../icons-test/home-mix' + import MoodIcon from '../icons/mood-icon' - const meta: Meta = { - component: HomeMix, - title: 'no-change/HomeMix', + const meta: Meta = { + component: MoodIcon, + title: 'no-change/MoodIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/MoodSad.stories.tsx b/src/stories/MoodSad.stories.tsx deleted file mode 100644 index c16f9683..00000000 --- a/src/stories/MoodSad.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodSad from '../icons-test/mood-sad' - - const meta: Meta = { - component: MoodSad, - title: 'outline/MoodSad', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MoodSadIcon.stories.tsx b/src/stories/MoodSadIcon.stories.tsx new file mode 100644 index 00000000..e7947007 --- /dev/null +++ b/src/stories/MoodSadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSadIcon from '../icons/mood-sad-icon' + + const meta: Meta = { + component: MoodSadIcon, + title: 'outline/MoodSadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodSmile.stories.tsx b/src/stories/MoodSmile.stories.tsx deleted file mode 100644 index 34f32f8d..00000000 --- a/src/stories/MoodSmile.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MoodSmile from '../icons-test/mood-smile' - - const meta: Meta = { - component: MoodSmile, - title: 'outline/MoodSmile', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MoodSmileIcon.stories.tsx b/src/stories/MoodSmileIcon.stories.tsx new file mode 100644 index 00000000..5b4fa173 --- /dev/null +++ b/src/stories/MoodSmileIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MoodSmileIcon from '../icons/mood-smile-icon' + + const meta: Meta = { + component: MoodSmileIcon, + title: 'outline/MoodSmileIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseLeft.stories.tsx b/src/stories/MouseLeft.stories.tsx deleted file mode 100644 index 3473c310..00000000 --- a/src/stories/MouseLeft.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MouseLeft from '../icons-test/mouse-left' - - const meta: Meta = { - component: MouseLeft, - title: 'outline/MouseLeft', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MouseLeft2.stories.tsx b/src/stories/MouseLeft2.stories.tsx deleted file mode 100644 index ba3ab375..00000000 --- a/src/stories/MouseLeft2.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MouseLeft2 from '../icons-test/mouse-left-2' - - const meta: Meta = { - component: MouseLeft2, - title: 'no-change/MouseLeft2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - export const AccentColor: Story = { - args: { - accentColor: 'red', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MouseLeft2Icon.stories.tsx b/src/stories/MouseLeft2Icon.stories.tsx new file mode 100644 index 00000000..741800cf --- /dev/null +++ b/src/stories/MouseLeft2Icon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseLeft2Icon from '../icons/mouse-left-2-icon' + + const meta: Meta = { + component: MouseLeft2Icon, + title: 'no-change/MouseLeft2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseLeftIcon.stories.tsx b/src/stories/MouseLeftIcon.stories.tsx new file mode 100644 index 00000000..15309c7c --- /dev/null +++ b/src/stories/MouseLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseLeftIcon from '../icons/mouse-left-icon' + + const meta: Meta = { + component: MouseLeftIcon, + title: 'outline/MouseLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseRight.stories.tsx b/src/stories/MouseRight.stories.tsx deleted file mode 100644 index 05bf1f7b..00000000 --- a/src/stories/MouseRight.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import MouseRight from '../icons-test/mouse-right' - - const meta: Meta = { - component: MouseRight, - title: 'outline/MouseRight', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/MouseRightIcon.stories.tsx b/src/stories/MouseRightIcon.stories.tsx new file mode 100644 index 00000000..8e49f188 --- /dev/null +++ b/src/stories/MouseRightIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MouseRightIcon from '../icons/mouse-right-icon' + + const meta: Meta = { + component: MouseRightIcon, + title: 'outline/MouseRightIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/NoDuplicate.stories.tsx b/src/stories/NoDuplicate.stories.tsx deleted file mode 100644 index c4f904b1..00000000 --- a/src/stories/NoDuplicate.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import NoDuplicate from '../icons-test/no-duplicate' - - const meta: Meta = { - component: NoDuplicate, - title: 'outline/NoDuplicate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/NoDuplicateIcon.stories.tsx b/src/stories/NoDuplicateIcon.stories.tsx new file mode 100644 index 00000000..29f741e5 --- /dev/null +++ b/src/stories/NoDuplicateIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoDuplicateIcon from '../icons/no-duplicate-icon' + + const meta: Meta = { + component: NoDuplicateIcon, + title: 'outline/NoDuplicateIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/NoneSelected.stories.tsx b/src/stories/NoneSelected.stories.tsx deleted file mode 100644 index 234069cb..00000000 --- a/src/stories/NoneSelected.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import NoneSelected from '../icons-test/none-selected' - - const meta: Meta = { - component: NoneSelected, - title: 'mix/NoneSelected', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/NoneSelectedIcon.stories.tsx b/src/stories/NoneSelectedIcon.stories.tsx new file mode 100644 index 00000000..132c1a70 --- /dev/null +++ b/src/stories/NoneSelectedIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import NoneSelectedIcon from '../icons/none-selected-icon' + + const meta: Meta = { + component: NoneSelectedIcon, + title: 'mix/NoneSelectedIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Palette.stories.tsx b/src/stories/Palette.stories.tsx deleted file mode 100644 index 4654d81e..00000000 --- a/src/stories/Palette.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Palette from '../icons-test/palette' - - const meta: Meta = { - component: Palette, - title: 'outline/Palette', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PaletteFill.stories.tsx b/src/stories/PaletteFill.stories.tsx deleted file mode 100644 index 6e32bc53..00000000 --- a/src/stories/PaletteFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PaletteFill from '../icons-test/palette-fill' - - const meta: Meta = { - component: PaletteFill, - title: 'fill/PaletteFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AftershootLogo.stories.tsx b/src/stories/PaletteFillIcon.stories.tsx similarity index 88% rename from src/stories/AftershootLogo.stories.tsx rename to src/stories/PaletteFillIcon.stories.tsx index c6a0e4e6..558d5f64 100644 --- a/src/stories/AftershootLogo.stories.tsx +++ b/src/stories/PaletteFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AftershootLogo from '../icons-test/aftershoot-logo' + import PaletteFillIcon from '../icons/palette-fill-icon' - const meta: Meta = { - component: AftershootLogo, - title: 'fill/AftershootLogo', + const meta: Meta = { + component: PaletteFillIcon, + title: 'fill/PaletteFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/PaletteIcon.stories.tsx b/src/stories/PaletteIcon.stories.tsx new file mode 100644 index 00000000..9c62b2ca --- /dev/null +++ b/src/stories/PaletteIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PaletteIcon from '../icons/palette-icon' + + const meta: Meta = { + component: PaletteIcon, + title: 'outline/PaletteIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PauseFill.stories.tsx b/src/stories/PauseFill.stories.tsx deleted file mode 100644 index 481a88a4..00000000 --- a/src/stories/PauseFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PauseFill from '../icons-test/pause-fill' - - const meta: Meta = { - component: PauseFill, - title: 'fill/PauseFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PauseFillIcon.stories.tsx b/src/stories/PauseFillIcon.stories.tsx new file mode 100644 index 00000000..657eb378 --- /dev/null +++ b/src/stories/PauseFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PauseFillIcon from '../icons/pause-fill-icon' + + const meta: Meta = { + component: PauseFillIcon, + title: 'fill/PauseFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Photo.stories.tsx b/src/stories/Photo.stories.tsx deleted file mode 100644 index 5298fa32..00000000 --- a/src/stories/Photo.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Photo from '../icons-test/photo' - - const meta: Meta = { - component: Photo, - title: 'outline/Photo', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PhotoIcon.stories.tsx b/src/stories/PhotoIcon.stories.tsx new file mode 100644 index 00000000..cdd3d426 --- /dev/null +++ b/src/stories/PhotoIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoIcon from '../icons/photo-icon' + + const meta: Meta = { + component: PhotoIcon, + title: 'outline/PhotoIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoOff.stories.tsx b/src/stories/PhotoOff.stories.tsx deleted file mode 100644 index e7a4911d..00000000 --- a/src/stories/PhotoOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoOff from '../icons-test/photo-off' - - const meta: Meta = { - component: PhotoOff, - title: 'outline/PhotoOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PhotoOff2.stories.tsx b/src/stories/PhotoOff2.stories.tsx deleted file mode 100644 index 5f0ff300..00000000 --- a/src/stories/PhotoOff2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoOff2 from '../icons-test/photo-off-2' - - const meta: Meta = { - component: PhotoOff2, - title: 'outline/PhotoOff2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PhotoOff2Icon.stories.tsx b/src/stories/PhotoOff2Icon.stories.tsx new file mode 100644 index 00000000..23cd243b --- /dev/null +++ b/src/stories/PhotoOff2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOff2Icon from '../icons/photo-off-2-icon' + + const meta: Meta = { + component: PhotoOff2Icon, + title: 'outline/PhotoOff2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoOffIcon.stories.tsx b/src/stories/PhotoOffIcon.stories.tsx new file mode 100644 index 00000000..3eeb08a0 --- /dev/null +++ b/src/stories/PhotoOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoOffIcon from '../icons/photo-off-icon' + + const meta: Meta = { + component: PhotoOffIcon, + title: 'outline/PhotoOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PhotoStack.stories.tsx b/src/stories/PhotoStack.stories.tsx deleted file mode 100644 index 4fb308a4..00000000 --- a/src/stories/PhotoStack.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PhotoStack from '../icons-test/photo-stack' - - const meta: Meta = { - component: PhotoStack, - title: 'outline/PhotoStack', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PhotoStackIcon.stories.tsx b/src/stories/PhotoStackIcon.stories.tsx new file mode 100644 index 00000000..f8711d50 --- /dev/null +++ b/src/stories/PhotoStackIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PhotoStackIcon from '../icons/photo-stack-icon' + + const meta: Meta = { + component: PhotoStackIcon, + title: 'outline/PhotoStackIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Pinned.stories.tsx b/src/stories/Pinned.stories.tsx deleted file mode 100644 index 58f3a046..00000000 --- a/src/stories/Pinned.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Pinned from '../icons-test/pinned' - - const meta: Meta = { - component: Pinned, - title: 'outline/Pinned', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PinnedIcon.stories.tsx b/src/stories/PinnedIcon.stories.tsx new file mode 100644 index 00000000..cb9247f4 --- /dev/null +++ b/src/stories/PinnedIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PinnedIcon from '../icons/pinned-icon' + + const meta: Meta = { + component: PinnedIcon, + title: 'outline/PinnedIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/PlayFill.stories.tsx b/src/stories/PlayFill.stories.tsx deleted file mode 100644 index 2b8609b7..00000000 --- a/src/stories/PlayFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import PlayFill from '../icons-test/play-fill' - - const meta: Meta = { - component: PlayFill, - title: 'fill/PlayFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - export const Fill: Story = { - args: { - className: 'text-green-600', - }, - } - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Facebook.stories.tsx b/src/stories/PlayFillIcon.stories.tsx similarity index 89% rename from src/stories/Facebook.stories.tsx rename to src/stories/PlayFillIcon.stories.tsx index 81b7fbd3..972535cb 100644 --- a/src/stories/Facebook.stories.tsx +++ b/src/stories/PlayFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Facebook from '../icons-test/facebook' + import PlayFillIcon from '../icons/play-fill-icon' - const meta: Meta = { - component: Facebook, - title: 'fill/Facebook', + const meta: Meta = { + component: PlayFillIcon, + title: 'fill/PlayFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Sparkle.stories.tsx b/src/stories/PlayIcon.stories.tsx similarity index 90% rename from src/stories/Sparkle.stories.tsx rename to src/stories/PlayIcon.stories.tsx index 1562efeb..90f3c7e6 100644 --- a/src/stories/Sparkle.stories.tsx +++ b/src/stories/PlayIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Sparkle from '../icons-test/sparkle' + import PlayIcon from '../icons/play-icon' - const meta: Meta = { - component: Sparkle, - title: 'mix/Sparkle', + const meta: Meta = { + component: PlayIcon, + title: 'mix/PlayIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/PlayerIcon.stories.tsx b/src/stories/PlayerIcon.stories.tsx new file mode 100644 index 00000000..0382f03d --- /dev/null +++ b/src/stories/PlayerIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PlayerIcon from '../icons/player-icon' + + const meta: Meta = { + component: PlayerIcon, + title: 'accent/PlayerIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Plus.stories.tsx b/src/stories/Plus.stories.tsx deleted file mode 100644 index de45456f..00000000 --- a/src/stories/Plus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Plus from '../icons-test/plus' - - const meta: Meta = { - component: Plus, - title: 'outline/Plus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/PlusIcon.stories.tsx b/src/stories/PlusIcon.stories.tsx new file mode 100644 index 00000000..4b913595 --- /dev/null +++ b/src/stories/PlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import PlusIcon from '../icons/plus-icon' + + const meta: Meta = { + component: PlusIcon, + title: 'outline/PlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/QuestionMark.stories.tsx b/src/stories/QuestionMark.stories.tsx deleted file mode 100644 index e66c7a87..00000000 --- a/src/stories/QuestionMark.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import QuestionMark from '../icons-test/question-mark' - - const meta: Meta = { - component: QuestionMark, - title: 'outline/QuestionMark', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/QuestionMarkIcon.stories.tsx b/src/stories/QuestionMarkIcon.stories.tsx new file mode 100644 index 00000000..cdc31a34 --- /dev/null +++ b/src/stories/QuestionMarkIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import QuestionMarkIcon from '../icons/question-mark-icon' + + const meta: Meta = { + component: QuestionMarkIcon, + title: 'outline/QuestionMarkIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MoodGray.stories.tsx b/src/stories/RecullIcon.stories.tsx similarity index 89% rename from src/stories/MoodGray.stories.tsx rename to src/stories/RecullIcon.stories.tsx index 4076087a..0235cf46 100644 --- a/src/stories/MoodGray.stories.tsx +++ b/src/stories/RecullIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import MoodGray from '../icons-test/mood-gray' + import RecullIcon from '../icons/recull-icon' - const meta: Meta = { - component: MoodGray, - title: 'no-change/MoodGray', + const meta: Meta = { + component: RecullIcon, + title: 'no-change/RecullIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Redeem.stories.tsx b/src/stories/Redeem.stories.tsx deleted file mode 100644 index a22cdf78..00000000 --- a/src/stories/Redeem.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Redeem from '../icons-test/redeem' - - const meta: Meta = { - component: Redeem, - title: 'outline/Redeem', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/RedeemIcon.stories.tsx b/src/stories/RedeemIcon.stories.tsx new file mode 100644 index 00000000..7ca7a102 --- /dev/null +++ b/src/stories/RedeemIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RedeemIcon from '../icons/redeem-icon' + + const meta: Meta = { + component: RedeemIcon, + title: 'outline/RedeemIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Refresh.stories.tsx b/src/stories/Refresh.stories.tsx deleted file mode 100644 index 32728532..00000000 --- a/src/stories/Refresh.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Refresh from '../icons-test/refresh' - - const meta: Meta = { - component: Refresh, - title: 'outline/Refresh', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Refresh2.stories.tsx b/src/stories/Refresh2.stories.tsx deleted file mode 100644 index 569ec97b..00000000 --- a/src/stories/Refresh2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Refresh2 from '../icons-test/refresh-2' - - const meta: Meta = { - component: Refresh2, - title: 'outline/Refresh2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Refresh2Icon.stories.tsx b/src/stories/Refresh2Icon.stories.tsx new file mode 100644 index 00000000..f279eea4 --- /dev/null +++ b/src/stories/Refresh2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Refresh2Icon from '../icons/refresh-2-icon' + + const meta: Meta = { + component: Refresh2Icon, + title: 'outline/Refresh2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RefreshAlert.stories.tsx b/src/stories/RefreshAlert.stories.tsx deleted file mode 100644 index a317a0ee..00000000 --- a/src/stories/RefreshAlert.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import RefreshAlert from '../icons-test/refresh-alert' - - const meta: Meta = { - component: RefreshAlert, - title: 'outline/RefreshAlert', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/RefreshAlertIcon.stories.tsx b/src/stories/RefreshAlertIcon.stories.tsx new file mode 100644 index 00000000..17871b05 --- /dev/null +++ b/src/stories/RefreshAlertIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RefreshAlertIcon from '../icons/refresh-alert-icon' + + const meta: Meta = { + component: RefreshAlertIcon, + title: 'outline/RefreshAlertIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RefreshIcon.stories.tsx b/src/stories/RefreshIcon.stories.tsx new file mode 100644 index 00000000..2fb0f3ae --- /dev/null +++ b/src/stories/RefreshIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RefreshIcon from '../icons/refresh-icon' + + const meta: Meta = { + component: RefreshIcon, + title: 'outline/RefreshIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ReloadAlert.stories.tsx b/src/stories/ReloadAlert.stories.tsx deleted file mode 100644 index 934ec516..00000000 --- a/src/stories/ReloadAlert.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ReloadAlert from '../icons-test/reload-alert' - - const meta: Meta = { - component: ReloadAlert, - title: 'outline/ReloadAlert', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ReloadAlertIcon.stories.tsx b/src/stories/ReloadAlertIcon.stories.tsx new file mode 100644 index 00000000..57cb1a80 --- /dev/null +++ b/src/stories/ReloadAlertIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ReloadAlertIcon from '../icons/reload-alert-icon' + + const meta: Meta = { + component: ReloadAlertIcon, + title: 'outline/ReloadAlertIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Rotate.stories.tsx b/src/stories/Rotate.stories.tsx deleted file mode 100644 index 81ca3608..00000000 --- a/src/stories/Rotate.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Rotate from '../icons-test/rotate' - - const meta: Meta = { - component: Rotate, - title: 'outline/Rotate', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/RotateClockwiseIcon.stories.tsx b/src/stories/RotateClockwiseIcon.stories.tsx new file mode 100644 index 00000000..9396b318 --- /dev/null +++ b/src/stories/RotateClockwiseIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateClockwiseIcon from '../icons/rotate-clockwise-icon' + + const meta: Meta = { + component: RotateClockwiseIcon, + title: 'outline/RotateClockwiseIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RotateIcon.stories.tsx b/src/stories/RotateIcon.stories.tsx new file mode 100644 index 00000000..0e62ff6a --- /dev/null +++ b/src/stories/RotateIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateIcon from '../icons/rotate-icon' + + const meta: Meta = { + component: RotateIcon, + title: 'outline/RotateIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Scissors.stories.tsx b/src/stories/Scissors.stories.tsx deleted file mode 100644 index aff5275b..00000000 --- a/src/stories/Scissors.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Scissors from '../icons-test/scissors' - - const meta: Meta = { - component: Scissors, - title: 'no-change/Scissors', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - export const AccentColor: Story = { - args: { - accentColor: 'red', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/FolderFill.stories.tsx b/src/stories/ScissorsIcon.stories.tsx similarity index 89% rename from src/stories/FolderFill.stories.tsx rename to src/stories/ScissorsIcon.stories.tsx index 45573514..dba6b966 100644 --- a/src/stories/FolderFill.stories.tsx +++ b/src/stories/ScissorsIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FolderFill from '../icons-test/folder-fill' + import ScissorsIcon from '../icons/scissors-icon' - const meta: Meta = { - component: FolderFill, - title: 'no-change/FolderFill', + const meta: Meta = { + component: ScissorsIcon, + title: 'no-change/ScissorsIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Search.stories.tsx b/src/stories/Search.stories.tsx deleted file mode 100644 index f7a0f936..00000000 --- a/src/stories/Search.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Search from '../icons-test/search' - - const meta: Meta = { - component: Search, - title: 'outline/Search', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SearchIcon.stories.tsx b/src/stories/SearchIcon.stories.tsx new file mode 100644 index 00000000..15f18a89 --- /dev/null +++ b/src/stories/SearchIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SearchIcon from '../icons/search-icon' + + const meta: Meta = { + component: SearchIcon, + title: 'outline/SearchIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Share.stories.tsx b/src/stories/Share.stories.tsx deleted file mode 100644 index 90f91400..00000000 --- a/src/stories/Share.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Share from '../icons-test/share' - - const meta: Meta = { - component: Share, - title: 'outline/Share', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ShareIcon.stories.tsx b/src/stories/ShareIcon.stories.tsx new file mode 100644 index 00000000..0a4ef37d --- /dev/null +++ b/src/stories/ShareIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShareIcon from '../icons/share-icon' + + const meta: Meta = { + component: ShareIcon, + title: 'outline/ShareIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ShoppingCart.stories.tsx b/src/stories/ShoppingCart.stories.tsx deleted file mode 100644 index 4e761628..00000000 --- a/src/stories/ShoppingCart.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ShoppingCart from '../icons-test/shopping-cart' - - const meta: Meta = { - component: ShoppingCart, - title: 'outline/ShoppingCart', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ShoppingCartDiscount.stories.tsx b/src/stories/ShoppingCartDiscount.stories.tsx deleted file mode 100644 index ad4a0d9b..00000000 --- a/src/stories/ShoppingCartDiscount.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ShoppingCartDiscount from '../icons-test/shopping-cart-discount' - - const meta: Meta = { - component: ShoppingCartDiscount, - title: 'outline/ShoppingCartDiscount', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/AdjustmentsHorizontal.stories.tsx b/src/stories/ShoppingCartDiscountIcon.stories.tsx similarity index 84% rename from src/stories/AdjustmentsHorizontal.stories.tsx rename to src/stories/ShoppingCartDiscountIcon.stories.tsx index 3bb851a6..b80334c4 100644 --- a/src/stories/AdjustmentsHorizontal.stories.tsx +++ b/src/stories/ShoppingCartDiscountIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import AdjustmentsHorizontal from '../icons-test/adjustments-horizontal' + import ShoppingCartDiscountIcon from '../icons/shopping-cart-discount-icon' - const meta: Meta = { - component: AdjustmentsHorizontal, - title: 'outline/AdjustmentsHorizontal', + const meta: Meta = { + component: ShoppingCartDiscountIcon, + title: 'outline/ShoppingCartDiscountIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ShoppingCartIcon.stories.tsx b/src/stories/ShoppingCartIcon.stories.tsx new file mode 100644 index 00000000..6c080665 --- /dev/null +++ b/src/stories/ShoppingCartIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ShoppingCartIcon from '../icons/shopping-cart-icon' + + const meta: Meta = { + component: ShoppingCartIcon, + title: 'outline/ShoppingCartIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscending.stories.tsx b/src/stories/SortAscending.stories.tsx deleted file mode 100644 index 7ee75919..00000000 --- a/src/stories/SortAscending.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscending from '../icons-test/sort-ascending' - - const meta: Meta = { - component: SortAscending, - title: 'outline/SortAscending', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortAscending2.stories.tsx b/src/stories/SortAscending2.stories.tsx deleted file mode 100644 index 8e318934..00000000 --- a/src/stories/SortAscending2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscending2 from '../icons-test/sort-ascending-2' - - const meta: Meta = { - component: SortAscending2, - title: 'outline/SortAscending2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortAscending2Icon.stories.tsx b/src/stories/SortAscending2Icon.stories.tsx new file mode 100644 index 00000000..d74e0b93 --- /dev/null +++ b/src/stories/SortAscending2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscending2Icon from '../icons/sort-ascending-2-icon' + + const meta: Meta = { + component: SortAscending2Icon, + title: 'outline/SortAscending2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscendingIcon.stories.tsx b/src/stories/SortAscendingIcon.stories.tsx new file mode 100644 index 00000000..a360c9b8 --- /dev/null +++ b/src/stories/SortAscendingIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingIcon from '../icons/sort-ascending-icon' + + const meta: Meta = { + component: SortAscendingIcon, + title: 'outline/SortAscendingIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscendingLetters.stories.tsx b/src/stories/SortAscendingLetters.stories.tsx deleted file mode 100644 index 2ceeb320..00000000 --- a/src/stories/SortAscendingLetters.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscendingLetters from '../icons-test/sort-ascending-letters' - - const meta: Meta = { - component: SortAscendingLetters, - title: 'outline/SortAscendingLetters', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortAscendingLettersIcon.stories.tsx b/src/stories/SortAscendingLettersIcon.stories.tsx new file mode 100644 index 00000000..5c87e2c1 --- /dev/null +++ b/src/stories/SortAscendingLettersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingLettersIcon from '../icons/sort-ascending-letters-icon' + + const meta: Meta = { + component: SortAscendingLettersIcon, + title: 'outline/SortAscendingLettersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortAscendingNumbers.stories.tsx b/src/stories/SortAscendingNumbers.stories.tsx deleted file mode 100644 index 600bb35b..00000000 --- a/src/stories/SortAscendingNumbers.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortAscendingNumbers from '../icons-test/sort-ascending-numbers' - - const meta: Meta = { - component: SortAscendingNumbers, - title: 'outline/SortAscendingNumbers', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortAscendingNumbersIcon.stories.tsx b/src/stories/SortAscendingNumbersIcon.stories.tsx new file mode 100644 index 00000000..b84abffb --- /dev/null +++ b/src/stories/SortAscendingNumbersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortAscendingNumbersIcon from '../icons/sort-ascending-numbers-icon' + + const meta: Meta = { + component: SortAscendingNumbersIcon, + title: 'outline/SortAscendingNumbersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescending.stories.tsx b/src/stories/SortDescending.stories.tsx deleted file mode 100644 index 1aeed2cc..00000000 --- a/src/stories/SortDescending.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescending from '../icons-test/sort-descending' - - const meta: Meta = { - component: SortDescending, - title: 'outline/SortDescending', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortDescending2.stories.tsx b/src/stories/SortDescending2.stories.tsx deleted file mode 100644 index 848b4b3a..00000000 --- a/src/stories/SortDescending2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescending2 from '../icons-test/sort-descending-2' - - const meta: Meta = { - component: SortDescending2, - title: 'outline/SortDescending2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortDescending2Icon.stories.tsx b/src/stories/SortDescending2Icon.stories.tsx new file mode 100644 index 00000000..1cfde0d5 --- /dev/null +++ b/src/stories/SortDescending2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescending2Icon from '../icons/sort-descending-2-icon' + + const meta: Meta = { + component: SortDescending2Icon, + title: 'outline/SortDescending2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescendingIcon.stories.tsx b/src/stories/SortDescendingIcon.stories.tsx new file mode 100644 index 00000000..9ef099a9 --- /dev/null +++ b/src/stories/SortDescendingIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingIcon from '../icons/sort-descending-icon' + + const meta: Meta = { + component: SortDescendingIcon, + title: 'outline/SortDescendingIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescendingLetters.stories.tsx b/src/stories/SortDescendingLetters.stories.tsx deleted file mode 100644 index 2e727b46..00000000 --- a/src/stories/SortDescendingLetters.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescendingLetters from '../icons-test/sort-descending-letters' - - const meta: Meta = { - component: SortDescendingLetters, - title: 'outline/SortDescendingLetters', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortDescendingLettersIcon.stories.tsx b/src/stories/SortDescendingLettersIcon.stories.tsx new file mode 100644 index 00000000..7e93e23f --- /dev/null +++ b/src/stories/SortDescendingLettersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingLettersIcon from '../icons/sort-descending-letters-icon' + + const meta: Meta = { + component: SortDescendingLettersIcon, + title: 'outline/SortDescendingLettersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDescendingNumbers.stories.tsx b/src/stories/SortDescendingNumbers.stories.tsx deleted file mode 100644 index a985cf9d..00000000 --- a/src/stories/SortDescendingNumbers.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SortDescendingNumbers from '../icons-test/sort-descending-numbers' - - const meta: Meta = { - component: SortDescendingNumbers, - title: 'outline/SortDescendingNumbers', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SortDescendingNumbersIcon.stories.tsx b/src/stories/SortDescendingNumbersIcon.stories.tsx new file mode 100644 index 00000000..b66d20b6 --- /dev/null +++ b/src/stories/SortDescendingNumbersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDescendingNumbersIcon from '../icons/sort-descending-numbers-icon' + + const meta: Meta = { + component: SortDescendingNumbersIcon, + title: 'outline/SortDescendingNumbersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/FlagFill.stories.tsx b/src/stories/SparkleIcon.stories.tsx similarity index 89% rename from src/stories/FlagFill.stories.tsx rename to src/stories/SparkleIcon.stories.tsx index ba3d11b1..ce3f5f88 100644 --- a/src/stories/FlagFill.stories.tsx +++ b/src/stories/SparkleIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import FlagFill from '../icons-test/flag-fill' + import SparkleIcon from '../icons/sparkle-icon' - const meta: Meta = { - component: FlagFill, - title: 'mix/FlagFill', + const meta: Meta = { + component: SparkleIcon, + title: 'mix/SparkleIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Spray.stories.tsx b/src/stories/Spray.stories.tsx deleted file mode 100644 index d7c98b68..00000000 --- a/src/stories/Spray.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Spray from '../icons-test/spray' - - const meta: Meta = { - component: Spray, - title: 'outline/Spray', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Spray2.stories.tsx b/src/stories/Spray2.stories.tsx deleted file mode 100644 index 59e3d4b5..00000000 --- a/src/stories/Spray2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Spray2 from '../icons-test/spray_2' - - const meta: Meta = { - component: Spray2, - title: 'outline/Spray2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Spray2Icon.stories.tsx b/src/stories/Spray2Icon.stories.tsx new file mode 100644 index 00000000..91438b68 --- /dev/null +++ b/src/stories/Spray2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Spray2Icon from '../icons/spray_2-icon' + + const meta: Meta = { + component: Spray2Icon, + title: 'outline/Spray2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SprayIcon.stories.tsx b/src/stories/SprayIcon.stories.tsx new file mode 100644 index 00000000..625501f3 --- /dev/null +++ b/src/stories/SprayIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SprayIcon from '../icons/spray-icon' + + const meta: Meta = { + component: SprayIcon, + title: 'outline/SprayIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StackDouble.stories.tsx b/src/stories/StackDouble.stories.tsx deleted file mode 100644 index 13f50aad..00000000 --- a/src/stories/StackDouble.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StackDouble from '../icons-test/stack-double' - - const meta: Meta = { - component: StackDouble, - title: 'outline/StackDouble', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/StackDoubleIcon.stories.tsx b/src/stories/StackDoubleIcon.stories.tsx new file mode 100644 index 00000000..275fb6fa --- /dev/null +++ b/src/stories/StackDoubleIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackDoubleIcon from '../icons/stack-double-icon' + + const meta: Meta = { + component: StackDoubleIcon, + title: 'outline/StackDoubleIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StackTriple.stories.tsx b/src/stories/StackTriple.stories.tsx deleted file mode 100644 index 5d6333ee..00000000 --- a/src/stories/StackTriple.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StackTriple from '../icons-test/stack-triple' - - const meta: Meta = { - component: StackTriple, - title: 'outline/StackTriple', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/StackTripleIcon.stories.tsx b/src/stories/StackTripleIcon.stories.tsx new file mode 100644 index 00000000..66611080 --- /dev/null +++ b/src/stories/StackTripleIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackTripleIcon from '../icons/stack-triple-icon' + + const meta: Meta = { + component: StackTripleIcon, + title: 'outline/StackTripleIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star.stories.tsx b/src/stories/Star.stories.tsx deleted file mode 100644 index e6067dc6..00000000 --- a/src/stories/Star.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star from '../icons-test/star' - - const meta: Meta = { - component: Star, - title: 'outline/Star', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Player.stories.tsx b/src/stories/Star0Icon.stories.tsx similarity index 89% rename from src/stories/Player.stories.tsx rename to src/stories/Star0Icon.stories.tsx index 633f1854..f2780b9f 100644 --- a/src/stories/Player.stories.tsx +++ b/src/stories/Star0Icon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Player from '../icons-test/player' + import Star0Icon from '../icons/star - 0-icon' - const meta: Meta = { - component: Player, - title: 'accent/Player', + const meta: Meta = { + component: Star0Icon, + title: 'accent/Star0Icon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Star0.stories.tsx b/src/stories/Star1Icon.stories.tsx similarity index 89% rename from src/stories/Star0.stories.tsx rename to src/stories/Star1Icon.stories.tsx index 81d17e20..c595f4df 100644 --- a/src/stories/Star0.stories.tsx +++ b/src/stories/Star1Icon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Star0 from '../icons-test/star - 0' + import Star1Icon from '../icons/star - 1-icon' - const meta: Meta = { - component: Star0, - title: 'accent/Star0', + const meta: Meta = { + component: Star1Icon, + title: 'accent/Star1Icon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Star2.stories.tsx b/src/stories/Star2.stories.tsx deleted file mode 100644 index ed98227d..00000000 --- a/src/stories/Star2.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star2 from '../icons-test/star - 2' - - const meta: Meta = { - component: Star2, - title: 'accent/Star2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/GrabHand.stories.tsx b/src/stories/Star2Icon.stories.tsx similarity index 89% rename from src/stories/GrabHand.stories.tsx rename to src/stories/Star2Icon.stories.tsx index 760fba7d..a7c83ec6 100644 --- a/src/stories/GrabHand.stories.tsx +++ b/src/stories/Star2Icon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import GrabHand from '../icons-test/grab-hand' + import Star2Icon from '../icons/star - 2-icon' - const meta: Meta = { - component: GrabHand, - title: 'logo/GrabHand', + const meta: Meta = { + component: Star2Icon, + title: 'accent/Star2Icon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Star3.stories.tsx b/src/stories/Star3.stories.tsx deleted file mode 100644 index a5761181..00000000 --- a/src/stories/Star3.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star3 from '../icons-test/star - 3' - - const meta: Meta = { - component: Star3, - title: 'accent/Star3', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Star1.stories.tsx b/src/stories/Star3Icon.stories.tsx similarity index 89% rename from src/stories/Star1.stories.tsx rename to src/stories/Star3Icon.stories.tsx index a6b535c8..5589f407 100644 --- a/src/stories/Star1.stories.tsx +++ b/src/stories/Star3Icon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Star1 from '../icons-test/star - 1' + import Star3Icon from '../icons/star - 3-icon' - const meta: Meta = { - component: Star1, - title: 'accent/Star1', + const meta: Meta = { + component: Star3Icon, + title: 'accent/Star3Icon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Star4.stories.tsx b/src/stories/Star4.stories.tsx deleted file mode 100644 index f95f114f..00000000 --- a/src/stories/Star4.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star4 from '../icons-test/star - 4' - - const meta: Meta = { - component: Star4, - title: 'accent/Star4', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Star4Icon.stories.tsx b/src/stories/Star4Icon.stories.tsx new file mode 100644 index 00000000..8c6cbffa --- /dev/null +++ b/src/stories/Star4Icon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star4Icon from '../icons/star - 4-icon' + + const meta: Meta = { + component: Star4Icon, + title: 'accent/Star4Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Star5.stories.tsx b/src/stories/Star5.stories.tsx deleted file mode 100644 index e353f0ef..00000000 --- a/src/stories/Star5.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Star5 from '../icons-test/star - 5' - - const meta: Meta = { - component: Star5, - title: 'accent/Star5', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Star5Icon.stories.tsx b/src/stories/Star5Icon.stories.tsx new file mode 100644 index 00000000..66a92fe5 --- /dev/null +++ b/src/stories/Star5Icon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Star5Icon from '../icons/star - 5-icon' + + const meta: Meta = { + component: Star5Icon, + title: 'accent/Star5Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarFill.stories.tsx b/src/stories/StarFill.stories.tsx deleted file mode 100644 index 5568be78..00000000 --- a/src/stories/StarFill.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarFill from '../icons-test/star-fill' - - const meta: Meta = { - component: StarFill, - title: 'mix/StarFill', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Play.stories.tsx b/src/stories/StarFillIcon.stories.tsx similarity index 89% rename from src/stories/Play.stories.tsx rename to src/stories/StarFillIcon.stories.tsx index 8ba8dc28..a8bd2a4d 100644 --- a/src/stories/Play.stories.tsx +++ b/src/stories/StarFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Play from '../icons-test/play' + import StarFillIcon from '../icons/star-fill-icon' - const meta: Meta = { - component: Play, - title: 'mix/Play', + const meta: Meta = { + component: StarFillIcon, + title: 'mix/StarFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/StarFillOff.stories.tsx b/src/stories/StarFillOff.stories.tsx deleted file mode 100644 index 7d5fff20..00000000 --- a/src/stories/StarFillOff.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarFillOff from '../icons-test/star-fill-off' - - const meta: Meta = { - component: StarFillOff, - title: 'no-change/StarFillOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - export const AccentColor: Story = { - args: { - accentColor: 'red', - }, - } - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/StarFillOffIcon.stories.tsx b/src/stories/StarFillOffIcon.stories.tsx new file mode 100644 index 00000000..2d72ca3f --- /dev/null +++ b/src/stories/StarFillOffIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarFillOffIcon from '../icons/star-fill-off-icon' + + const meta: Meta = { + component: StarFillOffIcon, + title: 'no-change/StarFillOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarIcon.stories.tsx b/src/stories/StarIcon.stories.tsx new file mode 100644 index 00000000..22c31bfb --- /dev/null +++ b/src/stories/StarIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarIcon from '../icons/star-icon' + + const meta: Meta = { + component: StarIcon, + title: 'outline/StarIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StarOff.stories.tsx b/src/stories/StarOff.stories.tsx deleted file mode 100644 index a82985b8..00000000 --- a/src/stories/StarOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import StarOff from '../icons-test/star-off' - - const meta: Meta = { - component: StarOff, - title: 'outline/StarOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/StarOffIcon.stories.tsx b/src/stories/StarOffIcon.stories.tsx new file mode 100644 index 00000000..524d5243 --- /dev/null +++ b/src/stories/StarOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StarOffIcon from '../icons/star-off-icon' + + const meta: Meta = { + component: StarOffIcon, + title: 'outline/StarOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SuccessDi.stories.tsx b/src/stories/SuccessDi.stories.tsx deleted file mode 100644 index 348580b0..00000000 --- a/src/stories/SuccessDi.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import SuccessDi from '../icons-test/success-di' - - const meta: Meta = { - component: SuccessDi, - title: 'accent/SuccessDi', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/SuccessDiIcon.stories.tsx b/src/stories/SuccessDiIcon.stories.tsx new file mode 100644 index 00000000..1a16189e --- /dev/null +++ b/src/stories/SuccessDiIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SuccessDiIcon from '../icons/success-di-icon' + + const meta: Meta = { + component: SuccessDiIcon, + title: 'accent/SuccessDiIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ThumbDown.stories.tsx b/src/stories/ThumbDown.stories.tsx deleted file mode 100644 index 141ecae2..00000000 --- a/src/stories/ThumbDown.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ThumbDown from '../icons-test/thumb-down' - - const meta: Meta = { - component: ThumbDown, - title: 'outline/ThumbDown', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ThumbDownIcon.stories.tsx b/src/stories/ThumbDownIcon.stories.tsx new file mode 100644 index 00000000..7ec883a9 --- /dev/null +++ b/src/stories/ThumbDownIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbDownIcon from '../icons/thumb-down-icon' + + const meta: Meta = { + component: ThumbDownIcon, + title: 'outline/ThumbDownIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ThumbUp.stories.tsx b/src/stories/ThumbUp.stories.tsx deleted file mode 100644 index 60872e72..00000000 --- a/src/stories/ThumbUp.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ThumbUp from '../icons-test/thumb-up' - - const meta: Meta = { - component: ThumbUp, - title: 'outline/ThumbUp', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ThumbUpIcon.stories.tsx b/src/stories/ThumbUpIcon.stories.tsx new file mode 100644 index 00000000..432e191b --- /dev/null +++ b/src/stories/ThumbUpIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ThumbUpIcon from '../icons/thumb-up-icon' + + const meta: Meta = { + component: ThumbUpIcon, + title: 'outline/ThumbUpIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Trash.stories.tsx b/src/stories/Trash.stories.tsx deleted file mode 100644 index ce002d26..00000000 --- a/src/stories/Trash.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Trash from '../icons-test/trash' - - const meta: Meta = { - component: Trash, - title: 'outline/Trash', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/TrashIcon.stories.tsx b/src/stories/TrashIcon.stories.tsx new file mode 100644 index 00000000..98128855 --- /dev/null +++ b/src/stories/TrashIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TrashIcon from '../icons/trash-icon' + + const meta: Meta = { + component: TrashIcon, + title: 'outline/TrashIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/TrashOff.stories.tsx b/src/stories/TrashOff.stories.tsx deleted file mode 100644 index ce1bc435..00000000 --- a/src/stories/TrashOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import TrashOff from '../icons-test/trash-off' - - const meta: Meta = { - component: TrashOff, - title: 'outline/TrashOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/TrashOffIcon.stories.tsx b/src/stories/TrashOffIcon.stories.tsx new file mode 100644 index 00000000..08266554 --- /dev/null +++ b/src/stories/TrashOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TrashOffIcon from '../icons/trash-off-icon' + + const meta: Meta = { + component: TrashOffIcon, + title: 'outline/TrashOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Unlink.stories.tsx b/src/stories/Unlink.stories.tsx deleted file mode 100644 index a3921d5f..00000000 --- a/src/stories/Unlink.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Unlink from '../icons-test/unlink' - - const meta: Meta = { - component: Unlink, - title: 'outline/Unlink', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UnlinkIcon.stories.tsx b/src/stories/UnlinkIcon.stories.tsx new file mode 100644 index 00000000..d496aeb6 --- /dev/null +++ b/src/stories/UnlinkIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UnlinkIcon from '../icons/unlink-icon' + + const meta: Meta = { + component: UnlinkIcon, + title: 'outline/UnlinkIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Upload2.stories.tsx b/src/stories/Upload2.stories.tsx deleted file mode 100644 index 17a4b175..00000000 --- a/src/stories/Upload2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Upload2 from '../icons-test/upload-2' - - const meta: Meta = { - component: Upload2, - title: 'outline/Upload2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Upload2Icon.stories.tsx b/src/stories/Upload2Icon.stories.tsx new file mode 100644 index 00000000..fca453f1 --- /dev/null +++ b/src/stories/Upload2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Upload2Icon from '../icons/upload-2-icon' + + const meta: Meta = { + component: Upload2Icon, + title: 'outline/Upload2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadAccent.stories.tsx b/src/stories/UploadAccent.stories.tsx deleted file mode 100644 index a29b84a7..00000000 --- a/src/stories/UploadAccent.stories.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UploadAccent from '../icons-test/upload-accent' - - const meta: Meta = { - component: UploadAccent, - title: 'accent/UploadAccent', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UploadAccentIcon.stories.tsx b/src/stories/UploadAccentIcon.stories.tsx new file mode 100644 index 00000000..a75cc3a4 --- /dev/null +++ b/src/stories/UploadAccentIcon.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadAccentIcon from '../icons/upload-accent-icon' + + const meta: Meta = { + component: UploadAccentIcon, + title: 'accent/UploadAccentIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadC1Cat.stories.tsx b/src/stories/UploadC1Cat.stories.tsx deleted file mode 100644 index b7adc31a..00000000 --- a/src/stories/UploadC1Cat.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UploadC1Cat from '../icons-test/upload-c1-cat' - - const meta: Meta = { - component: UploadC1Cat, - title: 'mix/UploadC1Cat', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UploadC1CatIcon.stories.tsx b/src/stories/UploadC1CatIcon.stories.tsx new file mode 100644 index 00000000..79f02d7d --- /dev/null +++ b/src/stories/UploadC1CatIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadC1CatIcon from '../icons/upload-c1-cat-icon' + + const meta: Meta = { + component: UploadC1CatIcon, + title: 'mix/UploadC1CatIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadIcon.stories.tsx b/src/stories/UploadIcon.stories.tsx new file mode 100644 index 00000000..8c7010a5 --- /dev/null +++ b/src/stories/UploadIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadIcon from '../icons/upload-icon' + + const meta: Meta = { + component: UploadIcon, + title: 'outline/UploadIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UploadLrCat.stories.tsx b/src/stories/UploadLrCat.stories.tsx deleted file mode 100644 index 96a1fbec..00000000 --- a/src/stories/UploadLrCat.stories.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UploadLrCat from '../icons-test/upload-lr-cat' - - const meta: Meta = { - component: UploadLrCat, - title: 'mix/UploadLrCat', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - className: 'text-red-500', - }, - } - - - export const Stroke: Story = { - args: { - className: 'stroke-[2px]', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UploadLrCatIcon.stories.tsx b/src/stories/UploadLrCatIcon.stories.tsx new file mode 100644 index 00000000..b7f1c204 --- /dev/null +++ b/src/stories/UploadLrCatIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UploadLrCatIcon from '../icons/upload-lr-cat-icon' + + const meta: Meta = { + component: UploadLrCatIcon, + title: 'mix/UploadLrCatIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/User.stories.tsx b/src/stories/User.stories.tsx deleted file mode 100644 index f0ecb28b..00000000 --- a/src/stories/User.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import User from '../icons-test/user' - - const meta: Meta = { - component: User, - title: 'outline/User', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserCheck.stories.tsx b/src/stories/UserCheck.stories.tsx deleted file mode 100644 index c734ba50..00000000 --- a/src/stories/UserCheck.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserCheck from '../icons-test/user-check' - - const meta: Meta = { - component: UserCheck, - title: 'outline/UserCheck', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserCheckIcon.stories.tsx b/src/stories/UserCheckIcon.stories.tsx new file mode 100644 index 00000000..b9b3c489 --- /dev/null +++ b/src/stories/UserCheckIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserCheckIcon from '../icons/user-check-icon' + + const meta: Meta = { + component: UserCheckIcon, + title: 'outline/UserCheckIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserExclamationIcon.stories.tsx b/src/stories/UserExclamationIcon.stories.tsx new file mode 100644 index 00000000..20c1db81 --- /dev/null +++ b/src/stories/UserExclamationIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserExclamationIcon from '../icons/user-exclamation-icon' + + const meta: Meta = { + component: UserExclamationIcon, + title: 'outline/UserExclamationIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserIcon.stories.tsx b/src/stories/UserIcon.stories.tsx new file mode 100644 index 00000000..b31a85a9 --- /dev/null +++ b/src/stories/UserIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserIcon from '../icons/user-icon' + + const meta: Meta = { + component: UserIcon, + title: 'outline/UserIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserMinus.stories.tsx b/src/stories/UserMinus.stories.tsx deleted file mode 100644 index 50a11473..00000000 --- a/src/stories/UserMinus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserMinus from '../icons-test/user-minus' - - const meta: Meta = { - component: UserMinus, - title: 'outline/UserMinus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserMinusIcon.stories.tsx b/src/stories/UserMinusIcon.stories.tsx new file mode 100644 index 00000000..c22e0fa4 --- /dev/null +++ b/src/stories/UserMinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserMinusIcon from '../icons/user-minus-icon' + + const meta: Meta = { + component: UserMinusIcon, + title: 'outline/UserMinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserOff.stories.tsx b/src/stories/UserOff.stories.tsx deleted file mode 100644 index f770d71d..00000000 --- a/src/stories/UserOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserOff from '../icons-test/user-off' - - const meta: Meta = { - component: UserOff, - title: 'outline/UserOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserOffIcon.stories.tsx b/src/stories/UserOffIcon.stories.tsx new file mode 100644 index 00000000..3ce7dc1b --- /dev/null +++ b/src/stories/UserOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserOffIcon from '../icons/user-off-icon' + + const meta: Meta = { + component: UserOffIcon, + title: 'outline/UserOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserPlus.stories.tsx b/src/stories/UserPlus.stories.tsx deleted file mode 100644 index d74ef7ba..00000000 --- a/src/stories/UserPlus.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserPlus from '../icons-test/user-plus' - - const meta: Meta = { - component: UserPlus, - title: 'outline/UserPlus', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserPlusIcon.stories.tsx b/src/stories/UserPlusIcon.stories.tsx new file mode 100644 index 00000000..e5a167a1 --- /dev/null +++ b/src/stories/UserPlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserPlusIcon from '../icons/user-plus-icon' + + const meta: Meta = { + component: UserPlusIcon, + title: 'outline/UserPlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/UserX.stories.tsx b/src/stories/UserX.stories.tsx deleted file mode 100644 index c3376606..00000000 --- a/src/stories/UserX.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import UserX from '../icons-test/user-x' - - const meta: Meta = { - component: UserX, - title: 'outline/UserX', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UserXIcon.stories.tsx b/src/stories/UserXIcon.stories.tsx new file mode 100644 index 00000000..9157bf1c --- /dev/null +++ b/src/stories/UserXIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UserXIcon from '../icons/user-x-icon' + + const meta: Meta = { + component: UserXIcon, + title: 'outline/UserXIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Users.stories.tsx b/src/stories/Users.stories.tsx deleted file mode 100644 index 40195dd7..00000000 --- a/src/stories/Users.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Users from '../icons-test/users' - - const meta: Meta = { - component: Users, - title: 'outline/Users', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/UsersIcon.stories.tsx b/src/stories/UsersIcon.stories.tsx new file mode 100644 index 00000000..ca94f629 --- /dev/null +++ b/src/stories/UsersIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import UsersIcon from '../icons/users-icon' + + const meta: Meta = { + component: UsersIcon, + title: 'outline/UsersIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ViewAll.stories.tsx b/src/stories/ViewAll.stories.tsx deleted file mode 100644 index 78034cc6..00000000 --- a/src/stories/ViewAll.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ViewAll from '../icons-test/view-all' - - const meta: Meta = { - component: ViewAll, - title: 'outline/ViewAll', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ViewAllIcon.stories.tsx b/src/stories/ViewAllIcon.stories.tsx new file mode 100644 index 00000000..5bc4fc37 --- /dev/null +++ b/src/stories/ViewAllIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ViewAllIcon from '../icons/view-all-icon' + + const meta: Meta = { + component: ViewAllIcon, + title: 'outline/ViewAllIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Viewfinder.stories.tsx b/src/stories/Viewfinder.stories.tsx deleted file mode 100644 index 4f1b3d93..00000000 --- a/src/stories/Viewfinder.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Viewfinder from '../icons-test/viewfinder' - - const meta: Meta = { - component: Viewfinder, - title: 'outline/Viewfinder', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ViewfinderIcon.stories.tsx b/src/stories/ViewfinderIcon.stories.tsx new file mode 100644 index 00000000..da7046e4 --- /dev/null +++ b/src/stories/ViewfinderIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ViewfinderIcon from '../icons/viewfinder-icon' + + const meta: Meta = { + component: ViewfinderIcon, + title: 'outline/ViewfinderIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Wifi.stories.tsx b/src/stories/Wifi.stories.tsx deleted file mode 100644 index 83862311..00000000 --- a/src/stories/Wifi.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi from '../icons-test/wifi' - - const meta: Meta = { - component: Wifi, - title: 'outline/Wifi', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Wifi1.stories.tsx b/src/stories/Wifi1.stories.tsx deleted file mode 100644 index a0d0ca6b..00000000 --- a/src/stories/Wifi1.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi1 from '../icons-test/wifi-1' - - const meta: Meta = { - component: Wifi1, - title: 'outline/Wifi1', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Wifi1Icon.stories.tsx b/src/stories/Wifi1Icon.stories.tsx new file mode 100644 index 00000000..1e1c39d7 --- /dev/null +++ b/src/stories/Wifi1Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi1Icon from '../icons/wifi-1-icon' + + const meta: Meta = { + component: Wifi1Icon, + title: 'outline/Wifi1Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Wifi2.stories.tsx b/src/stories/Wifi2.stories.tsx deleted file mode 100644 index 723bd96e..00000000 --- a/src/stories/Wifi2.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Wifi2 from '../icons-test/wifi-2' - - const meta: Meta = { - component: Wifi2, - title: 'outline/Wifi2', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Wifi2Icon.stories.tsx b/src/stories/Wifi2Icon.stories.tsx new file mode 100644 index 00000000..3f60a01a --- /dev/null +++ b/src/stories/Wifi2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Wifi2Icon from '../icons/wifi-2-icon' + + const meta: Meta = { + component: Wifi2Icon, + title: 'outline/Wifi2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/WifiIcon.stories.tsx b/src/stories/WifiIcon.stories.tsx new file mode 100644 index 00000000..47d7a1b1 --- /dev/null +++ b/src/stories/WifiIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WifiIcon from '../icons/wifi-icon' + + const meta: Meta = { + component: WifiIcon, + title: 'outline/WifiIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/WifiOff.stories.tsx b/src/stories/WifiOff.stories.tsx deleted file mode 100644 index 74514185..00000000 --- a/src/stories/WifiOff.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import WifiOff from '../icons-test/wifi-off' - - const meta: Meta = { - component: WifiOff, - title: 'outline/WifiOff', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/WifiOffIcon.stories.tsx b/src/stories/WifiOffIcon.stories.tsx new file mode 100644 index 00000000..aa52a83d --- /dev/null +++ b/src/stories/WifiOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WifiOffIcon from '../icons/wifi-off-icon' + + const meta: Meta = { + component: WifiOffIcon, + title: 'outline/WifiOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/World.stories.tsx b/src/stories/World.stories.tsx deleted file mode 100644 index 43b903ae..00000000 --- a/src/stories/World.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import World from '../icons-test/world' - - const meta: Meta = { - component: World, - title: 'outline/World', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/WorldIcon.stories.tsx b/src/stories/WorldIcon.stories.tsx new file mode 100644 index 00000000..7ea2764f --- /dev/null +++ b/src/stories/WorldIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WorldIcon from '../icons/world-icon' + + const meta: Meta = { + component: WorldIcon, + title: 'outline/WorldIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Writing.stories.tsx b/src/stories/Writing.stories.tsx deleted file mode 100644 index 065a0549..00000000 --- a/src/stories/Writing.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import Writing from '../icons-test/writing' - - const meta: Meta = { - component: Writing, - title: 'outline/Writing', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/WritingIcon.stories.tsx b/src/stories/WritingIcon.stories.tsx new file mode 100644 index 00000000..144ec206 --- /dev/null +++ b/src/stories/WritingIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import WritingIcon from '../icons/writing-icon' + + const meta: Meta = { + component: WritingIcon, + title: 'outline/WritingIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/X.stories.tsx b/src/stories/X.stories.tsx deleted file mode 100644 index 6eeabd75..00000000 --- a/src/stories/X.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import X from '../icons-test/x' - - const meta: Meta = { - component: X, - title: 'outline/X', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/Bell.stories.tsx b/src/stories/XIcon.stories.tsx similarity index 90% rename from src/stories/Bell.stories.tsx rename to src/stories/XIcon.stories.tsx index c852012e..fb9a933c 100644 --- a/src/stories/Bell.stories.tsx +++ b/src/stories/XIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Bell from '../icons-test/bell' + import XIcon from '../icons/x-icon' - const meta: Meta = { - component: Bell, - title: 'outline/Bell', + const meta: Meta = { + component: XIcon, + title: 'outline/XIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/ZoomIn.stories.tsx b/src/stories/ZoomIn.stories.tsx deleted file mode 100644 index f07ca97f..00000000 --- a/src/stories/ZoomIn.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomIn from '../icons-test/zoom-in' - - const meta: Meta = { - component: ZoomIn, - title: 'outline/ZoomIn', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ZoomInIcon.stories.tsx b/src/stories/ZoomInIcon.stories.tsx new file mode 100644 index 00000000..0aca1994 --- /dev/null +++ b/src/stories/ZoomInIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomInIcon from '../icons/zoom-in-icon' + + const meta: Meta = { + component: ZoomInIcon, + title: 'outline/ZoomInIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ZoomOut.stories.tsx b/src/stories/ZoomOut.stories.tsx deleted file mode 100644 index 7f464e1e..00000000 --- a/src/stories/ZoomOut.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomOut from '../icons-test/zoom-out' - - const meta: Meta = { - component: ZoomOut, - title: 'outline/ZoomOut', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ZoomOutIcon.stories.tsx b/src/stories/ZoomOutIcon.stories.tsx new file mode 100644 index 00000000..577c5898 --- /dev/null +++ b/src/stories/ZoomOutIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomOutIcon from '../icons/zoom-out-icon' + + const meta: Meta = { + component: ZoomOutIcon, + title: 'outline/ZoomOutIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ZoomQuestion.stories.tsx b/src/stories/ZoomQuestion.stories.tsx deleted file mode 100644 index a061c264..00000000 --- a/src/stories/ZoomQuestion.stories.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - import React from 'react' - import IconBorder from '../components/IconBorder' - import IconBackground from '../components/IconBackground' - import ZoomQuestion from '../icons-test/zoom-question' - - const meta: Meta = { - component: ZoomQuestion, - title: 'outline/ZoomQuestion', - decorators: [ - (Story) => ( -
- - - - - - - - - - - - - -
- ), - ], - } - - export default meta - type Story = StoryObj - - export const Default: Story = {} - - - export const Color: Story = { - args: { - color: 'red', - }, - } - - - - - export const inActive: Story = { - args: { - inActive: true, - }, - } - - export const Large: Story = { - args: { - size: 30, - }, - } - - export const Hover: Story = { - args: { - className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', - }, - } - - export const ClassName: Story = { - args: { - className: 'text-red-400 stroke-1 hover:text-blue-400', - }, - } - - \ No newline at end of file diff --git a/src/stories/ZoomQuestionIcon.stories.tsx b/src/stories/ZoomQuestionIcon.stories.tsx new file mode 100644 index 00000000..2b465b35 --- /dev/null +++ b/src/stories/ZoomQuestionIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ZoomQuestionIcon from '../icons/zoom-question-icon' + + const meta: Meta = { + component: ZoomQuestionIcon, + title: 'outline/ZoomQuestionIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index c5213ff0..a614c5b7 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -578,10 +578,6 @@ video { width: 2.5rem; } -.w-6 { - width: 1.5rem; -} - .w-\[24px\] { width: 24px; } @@ -637,10 +633,6 @@ video { background-color: transparent; } -.stroke-\[\#fff\] { - stroke: #fff; -} - .stroke-1 { stroke-width: 1; } @@ -662,11 +654,6 @@ video { color: rgb(119 119 119 / var(--tw-text-opacity)); } -.text-\[\#fff\] { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - .text-green-600 { --tw-text-opacity: 1; color: rgb(22 163 74 / var(--tw-text-opacity)); diff --git a/unicons.config.json b/unicons.config.json index 13a274cc..599d9b07 100644 --- a/unicons.config.json +++ b/unicons.config.json @@ -1,6 +1,6 @@ { "icon_input_dir": "icons-original", - "icon_output_dir": "icons-test", + "icon_output_dir": "icons", "stories_output_dir": "stories", "exclude_svg_process": ["no_change", "logo", "accent"], "svg_process_options": { From 796652cd2a60f0ad3cb2044b6bcea71b3d74a9c6 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 4 Jun 2024 14:27:29 +0530 Subject: [PATCH 28/34] update: add loupe view ico --- icons-metadata/loupe-view-icon.json | 4 ++ icons-metadata/menu-2-icon.json | 9 +++ icons-metadata/menu-icon.json | 9 +++ icons-optimized/aftershoot-logo-icon.svg | 2 +- icons-optimized/arrow-curve-fill-icon.svg | 2 +- icons-optimized/check-box-empty-icon.svg | 2 +- icons-optimized/circle-fill-icon.svg | 2 +- icons-optimized/collection-icon.svg | 2 +- icons-optimized/crown-2-fill-icon.svg | 2 +- icons-optimized/facebook-icon.svg | 2 +- icons-optimized/flag-fill-icon.svg | 2 +- icons-optimized/grid-view-1-icon.svg | 2 +- icons-optimized/grid-view-2-icon.svg | 2 +- icons-optimized/image-border-icon.svg | 2 +- icons-optimized/list-fill-icon.svg | 2 +- icons-optimized/loupe-fill-icon.svg | 3 +- icons-optimized/loupe-view-icon.svg | 28 +++++++++ icons-optimized/menu-2-icon.svg | 11 ++++ icons-optimized/menu-icon.svg | 12 ++++ icons-optimized/none-selected-icon.svg | 2 +- icons-optimized/palette-fill-icon.svg | 2 +- icons-optimized/pause-fill-icon.svg | 2 +- icons-optimized/play-fill-icon.svg | 4 +- icons-optimized/play-icon.svg | 2 +- icons-optimized/sparkle-icon.svg | 2 +- icons-optimized/star-fill-icon.svg | 2 +- icons-optimized/upload-c1-cat-icon.svg | 2 +- icons-optimized/upload-lr-cat-icon.svg | 2 +- icons-original/fill/loupe-fill.svg | 2 +- icons-original/fill/play-fill.svg | 3 +- icons-original/no-change/loupe-view.svg | 16 +++++ icons-original/outline/menu-2.svg | 11 ++++ icons-original/outline/menu.svg | 12 ++++ package.json | 8 +-- scripts/processSvg.mjs | 4 +- src/Icon.ts | 25 ++------ src/Icons/aftershoot-logo-icon.tsx | 2 +- src/Icons/arrow-curve-fill-icon.tsx | 2 +- src/Icons/check-box-empty-icon.tsx | 2 +- src/Icons/circle-fill-icon.tsx | 2 +- src/Icons/collection-icon.tsx | 2 +- src/Icons/crown-2-fill-icon.tsx | 2 +- src/Icons/facebook-icon.tsx | 2 +- src/Icons/flag-fill-icon.tsx | 2 +- src/Icons/grid-view-1-icon.tsx | 2 +- src/Icons/grid-view-2-icon.tsx | 2 +- src/Icons/image-border-icon.tsx | 2 +- src/Icons/index.ts | 3 + src/Icons/list-fill-icon.tsx | 2 +- src/Icons/loupe-fill-icon.tsx | 5 +- src/Icons/loupe-view-icon.tsx | 42 +++++++++++++ src/Icons/menu-2-icon.tsx | 30 +++++++++ src/Icons/menu-icon.tsx | 31 +++++++++ src/Icons/none-selected-icon.tsx | 2 +- src/Icons/palette-fill-icon.tsx | 2 +- src/Icons/pause-fill-icon.tsx | 2 +- src/Icons/play-fill-icon.tsx | 6 +- src/Icons/play-icon.tsx | 2 +- src/Icons/sparkle-icon.tsx | 2 +- src/Icons/star-fill-icon.tsx | 2 +- src/Icons/upload-c1-cat-icon.tsx | 2 +- src/Icons/upload-lr-cat-icon.tsx | 2 +- src/components/index.ts | 2 + src/createASIcon.ts | 4 +- src/index.ts | 3 +- src/stories/LoupeViewIcon.stories.tsx | 77 +++++++++++++++++++++++ src/stories/Menu2Icon.stories.tsx | 70 +++++++++++++++++++++ src/stories/MenuIcon.stories.tsx | 70 +++++++++++++++++++++ src/styles/tailwind.css | 12 ++-- src/types.ts | 11 ++-- 70 files changed, 514 insertions(+), 93 deletions(-) create mode 100644 icons-metadata/loupe-view-icon.json create mode 100644 icons-metadata/menu-2-icon.json create mode 100644 icons-metadata/menu-icon.json create mode 100644 icons-optimized/loupe-view-icon.svg create mode 100644 icons-optimized/menu-2-icon.svg create mode 100644 icons-optimized/menu-icon.svg create mode 100644 icons-original/no-change/loupe-view.svg create mode 100644 icons-original/outline/menu-2.svg create mode 100644 icons-original/outline/menu.svg create mode 100644 src/Icons/loupe-view-icon.tsx create mode 100644 src/Icons/menu-2-icon.tsx create mode 100644 src/Icons/menu-icon.tsx create mode 100644 src/components/index.ts create mode 100644 src/stories/LoupeViewIcon.stories.tsx create mode 100644 src/stories/Menu2Icon.stories.tsx create mode 100644 src/stories/MenuIcon.stories.tsx diff --git a/icons-metadata/loupe-view-icon.json b/icons-metadata/loupe-view-icon.json new file mode 100644 index 00000000..03901a58 --- /dev/null +++ b/icons-metadata/loupe-view-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "loupe-view-icon" +} \ No newline at end of file diff --git a/icons-metadata/menu-2-icon.json b/icons-metadata/menu-2-icon.json new file mode 100644 index 00000000..7f54f7b2 --- /dev/null +++ b/icons-metadata/menu-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "menu-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/menu-icon.json b/icons-metadata/menu-icon.json new file mode 100644 index 00000000..a60bbe87 --- /dev/null +++ b/icons-metadata/menu-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "menu-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-optimized/aftershoot-logo-icon.svg b/icons-optimized/aftershoot-logo-icon.svg index 5d8f1cab..3f9bba79 100644 --- a/icons-optimized/aftershoot-logo-icon.svg +++ b/icons-optimized/aftershoot-logo-icon.svg @@ -1,4 +1,4 @@ - + + + diff --git a/icons-optimized/circle-fill-icon.svg b/icons-optimized/circle-fill-icon.svg index c1ad7a36..62761185 100644 --- a/icons-optimized/circle-fill-icon.svg +++ b/icons-optimized/circle-fill-icon.svg @@ -1,4 +1,4 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/menu-2-icon.svg b/icons-optimized/menu-2-icon.svg new file mode 100644 index 00000000..6901aa56 --- /dev/null +++ b/icons-optimized/menu-2-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/menu-icon.svg b/icons-optimized/menu-icon.svg new file mode 100644 index 00000000..92b68cb2 --- /dev/null +++ b/icons-optimized/menu-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/none-selected-icon.svg b/icons-optimized/none-selected-icon.svg index b4743f11..fea043f4 100644 --- a/icons-optimized/none-selected-icon.svg +++ b/icons-optimized/none-selected-icon.svg @@ -1,4 +1,4 @@ - + + + + diff --git a/icons-optimized/play-icon.svg b/icons-optimized/play-icon.svg index 9da4813f..3316eaf8 100644 --- a/icons-optimized/play-icon.svg +++ b/icons-optimized/play-icon.svg @@ -1,4 +1,4 @@ - + + + + + - + diff --git a/icons-original/fill/play-fill.svg b/icons-original/fill/play-fill.svg index 637ebc07..6e94ac5c 100644 --- a/icons-original/fill/play-fill.svg +++ b/icons-original/fill/play-fill.svg @@ -1,4 +1,3 @@ - + diff --git a/icons-original/no-change/loupe-view.svg b/icons-original/no-change/loupe-view.svg new file mode 100644 index 00000000..6b02576d --- /dev/null +++ b/icons-original/no-change/loupe-view.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/menu-2.svg b/icons-original/outline/menu-2.svg new file mode 100644 index 00000000..0b1f7e40 --- /dev/null +++ b/icons-original/outline/menu-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/menu.svg b/icons-original/outline/menu.svg new file mode 100644 index 00000000..d03a0ebf --- /dev/null +++ b/icons-original/outline/menu.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/package.json b/package.json index d9ee72c1..4fcf639c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@aftershootco/unicons-v2", - "version": "1.0.0", + "name": "@aftershootco/unicons", + "version": "2.0.0", "description": "", "author": { "name": "AfterShoot" @@ -8,10 +8,6 @@ "license": "ISC", "main": "dist/index.js", "module": "dist/index.esm.js", - "exports": { - "./fill": "./dist/fill/index.js", - "./stroke": "./dist/stroke/index.js" - }, "types": "dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", diff --git a/scripts/processSvg.mjs b/scripts/processSvg.mjs index 541898e2..61b4d777 100644 --- a/scripts/processSvg.mjs +++ b/scripts/processSvg.mjs @@ -50,7 +50,9 @@ async function optimizeSvg(svg, path, iconType) { const visit = (node) => { if (node.attributes && node.attributes.fill) { if (!node.attributes?.noChange) { - node.attributes.fill = 'currentColor' + if (node.attributes.fill !== 'none') { + node.attributes.fill = 'currentColor' + } } } if (node.children) { diff --git a/src/Icon.ts b/src/Icon.ts index 5670dd94..0a072d8a 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -1,13 +1,12 @@ import { createElement, forwardRef } from 'react' import defaultAttributes from './defaultAttributes' -import { ASIProps } from './types' +import { TUniconProps } from './types' import { cn } from './utils/cn' -interface IconComponentProps extends ASIProps { +interface IconComponentProps extends TUniconProps { originalAttributes: any svgChildren: any svgType: string - accentColor?: string } /** @@ -18,19 +17,7 @@ interface IconComponentProps extends ASIProps { const Icon = forwardRef( ( - { - originalAttributes, - color = 'currentColor', - size, - inActive = false, - fillColor = 'none', - className, - children, - svgChildren, - svgType, - accentColor, - ...rest - }, + { originalAttributes, color = 'currentColor', size, inActive = false, className, children, svgChildren, svgType, accentColor, ...rest }, ref, ) => { return createElement( @@ -41,11 +28,9 @@ const Icon = forwardRef( ...originalAttributes, ...(svgType === 'outline' && { stroke: inActive ? '#777777' : color }), ...(size ? { style: { width: size, height: 'auto' } } : {}), - fill: fillColor, - accentColor, className: cn( - `w-[24px] h-[24px] shrink-0 `, - svgType === 'outline' && 'stroke-[1.5px]', + `w-7 shrink-0 `, + svgType === 'outline' && 'stroke-2', svgType === 'fill' && 'text-white', inActive && 'text-[#777777]', className, diff --git a/src/Icons/aftershoot-logo-icon.tsx b/src/Icons/aftershoot-logo-icon.tsx index 2decbf7f..9dd4a4f7 100644 --- a/src/Icons/aftershoot-logo-icon.tsx +++ b/src/Icons/aftershoot-logo-icon.tsx @@ -5,7 +5,7 @@ const AftershootLogoIcon = createASIcon( "AftershootLogoIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/arrow-curve-fill-icon.tsx b/src/Icons/arrow-curve-fill-icon.tsx index 1c8b9878..b6df82e9 100644 --- a/src/Icons/arrow-curve-fill-icon.tsx +++ b/src/Icons/arrow-curve-fill-icon.tsx @@ -5,7 +5,7 @@ const ArrowCurveFillIcon = createASIcon( "ArrowCurveFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 16 11", }, diff --git a/src/Icons/check-box-empty-icon.tsx b/src/Icons/check-box-empty-icon.tsx index ad14e903..6eda81a4 100644 --- a/src/Icons/check-box-empty-icon.tsx +++ b/src/Icons/check-box-empty-icon.tsx @@ -5,7 +5,7 @@ const CheckBoxEmptyIcon = createASIcon( "CheckBoxEmptyIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 16 16", }, diff --git a/src/Icons/circle-fill-icon.tsx b/src/Icons/circle-fill-icon.tsx index 2291f512..99c1a50d 100644 --- a/src/Icons/circle-fill-icon.tsx +++ b/src/Icons/circle-fill-icon.tsx @@ -5,7 +5,7 @@ const CircleFillIcon = createASIcon( "CircleFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/collection-icon.tsx b/src/Icons/collection-icon.tsx index 8a0b3fe4..6850bf22 100644 --- a/src/Icons/collection-icon.tsx +++ b/src/Icons/collection-icon.tsx @@ -5,7 +5,7 @@ const CollectionIcon = createASIcon( "CollectionIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 25 24", }, diff --git a/src/Icons/crown-2-fill-icon.tsx b/src/Icons/crown-2-fill-icon.tsx index a2a174b0..1235110c 100644 --- a/src/Icons/crown-2-fill-icon.tsx +++ b/src/Icons/crown-2-fill-icon.tsx @@ -5,7 +5,7 @@ const Crown2FillIcon = createASIcon( "Crown2FillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/facebook-icon.tsx b/src/Icons/facebook-icon.tsx index b4a1149e..f466e9d9 100644 --- a/src/Icons/facebook-icon.tsx +++ b/src/Icons/facebook-icon.tsx @@ -5,7 +5,7 @@ const FacebookIcon = createASIcon( "FacebookIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/flag-fill-icon.tsx b/src/Icons/flag-fill-icon.tsx index 3104c8be..9b84f8c9 100644 --- a/src/Icons/flag-fill-icon.tsx +++ b/src/Icons/flag-fill-icon.tsx @@ -5,7 +5,7 @@ const FlagFillIcon = createASIcon( "FlagFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 20 20", }, diff --git a/src/Icons/grid-view-1-icon.tsx b/src/Icons/grid-view-1-icon.tsx index 358d1faf..a8aa3718 100644 --- a/src/Icons/grid-view-1-icon.tsx +++ b/src/Icons/grid-view-1-icon.tsx @@ -5,7 +5,7 @@ const GridView1Icon = createASIcon( "GridView1Icon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/grid-view-2-icon.tsx b/src/Icons/grid-view-2-icon.tsx index 7e5b035b..905ee900 100644 --- a/src/Icons/grid-view-2-icon.tsx +++ b/src/Icons/grid-view-2-icon.tsx @@ -5,7 +5,7 @@ const GridView2Icon = createASIcon( "GridView2Icon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/image-border-icon.tsx b/src/Icons/image-border-icon.tsx index cf94e6fb..5338d392 100644 --- a/src/Icons/image-border-icon.tsx +++ b/src/Icons/image-border-icon.tsx @@ -5,7 +5,7 @@ const ImageBorderIcon = createASIcon( "ImageBorderIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/index.ts b/src/Icons/index.ts index e4115c02..8574e1c1 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -128,10 +128,13 @@ export { default as LockOffIcon } from './lock-off-icon'; export { default as LockOpenIcon } from './lock-open-icon'; export { default as LoopIcon } from './loop-icon'; export { default as LoupeFillIcon } from './loupe-fill-icon'; +export { default as LoupeViewIcon } from './loupe-view-icon'; export { default as MailIcon } from './mail-icon'; export { default as Map2Icon } from './map-2-icon'; export { default as MapPinIcon } from './map-pin-icon'; export { default as MapPinOffIcon } from './map-pin-off-icon'; +export { default as Menu2Icon } from './menu-2-icon'; +export { default as MenuIcon } from './menu-icon'; export { default as MinusIcon } from './minus-icon'; export { default as MoodCrazyHappyIcon } from './mood-crazy-happy-icon'; export { default as MoodEmptyIcon } from './mood-empty-icon'; diff --git a/src/Icons/list-fill-icon.tsx b/src/Icons/list-fill-icon.tsx index 4d0ee1ac..32db0cf8 100644 --- a/src/Icons/list-fill-icon.tsx +++ b/src/Icons/list-fill-icon.tsx @@ -5,7 +5,7 @@ const ListFillIcon = createASIcon( "ListFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/loupe-fill-icon.tsx b/src/Icons/loupe-fill-icon.tsx index ccb94261..a25b0c9c 100644 --- a/src/Icons/loupe-fill-icon.tsx +++ b/src/Icons/loupe-fill-icon.tsx @@ -5,14 +5,15 @@ const LoupeFillIcon = createASIcon( "LoupeFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, + + + + + + + + + + + + + + + , + "no-change", +); + +export default LoupeViewIcon; diff --git a/src/Icons/menu-2-icon.tsx b/src/Icons/menu-2-icon.tsx new file mode 100644 index 00000000..6ae6f2ea --- /dev/null +++ b/src/Icons/menu-2-icon.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Menu2Icon = createASIcon( + "Menu2Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default Menu2Icon; diff --git a/src/Icons/menu-icon.tsx b/src/Icons/menu-icon.tsx new file mode 100644 index 00000000..3611679b --- /dev/null +++ b/src/Icons/menu-icon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MenuIcon = createASIcon( + "MenuIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default MenuIcon; diff --git a/src/Icons/none-selected-icon.tsx b/src/Icons/none-selected-icon.tsx index cf42eaed..63352cf4 100644 --- a/src/Icons/none-selected-icon.tsx +++ b/src/Icons/none-selected-icon.tsx @@ -5,7 +5,7 @@ const NoneSelectedIcon = createASIcon( "NoneSelectedIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/palette-fill-icon.tsx b/src/Icons/palette-fill-icon.tsx index 07606a0d..bce0d954 100644 --- a/src/Icons/palette-fill-icon.tsx +++ b/src/Icons/palette-fill-icon.tsx @@ -5,7 +5,7 @@ const PaletteFillIcon = createASIcon( "PaletteFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/pause-fill-icon.tsx b/src/Icons/pause-fill-icon.tsx index dac68260..ac2c3aea 100644 --- a/src/Icons/pause-fill-icon.tsx +++ b/src/Icons/pause-fill-icon.tsx @@ -5,7 +5,7 @@ const PauseFillIcon = createASIcon( "PauseFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/play-fill-icon.tsx b/src/Icons/play-fill-icon.tsx index 0667e71b..d7fc4868 100644 --- a/src/Icons/play-fill-icon.tsx +++ b/src/Icons/play-fill-icon.tsx @@ -5,14 +5,14 @@ const PlayFillIcon = createASIcon( "PlayFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, , "fill", diff --git a/src/Icons/play-icon.tsx b/src/Icons/play-icon.tsx index bc6b006e..b1045764 100644 --- a/src/Icons/play-icon.tsx +++ b/src/Icons/play-icon.tsx @@ -5,7 +5,7 @@ const PlayIcon = createASIcon( "PlayIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/sparkle-icon.tsx b/src/Icons/sparkle-icon.tsx index 8952056a..d202b90d 100644 --- a/src/Icons/sparkle-icon.tsx +++ b/src/Icons/sparkle-icon.tsx @@ -5,7 +5,7 @@ const SparkleIcon = createASIcon( "SparkleIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 24 24", }, diff --git a/src/Icons/star-fill-icon.tsx b/src/Icons/star-fill-icon.tsx index 3d0749b6..842c5105 100644 --- a/src/Icons/star-fill-icon.tsx +++ b/src/Icons/star-fill-icon.tsx @@ -5,7 +5,7 @@ const StarFillIcon = createASIcon( "StarFillIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 38 38", }, diff --git a/src/Icons/upload-c1-cat-icon.tsx b/src/Icons/upload-c1-cat-icon.tsx index 83da6456..39c6c322 100644 --- a/src/Icons/upload-c1-cat-icon.tsx +++ b/src/Icons/upload-c1-cat-icon.tsx @@ -5,7 +5,7 @@ const UploadC1CatIcon = createASIcon( "UploadC1CatIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 36 36", }, diff --git a/src/Icons/upload-lr-cat-icon.tsx b/src/Icons/upload-lr-cat-icon.tsx index e25c362e..8369fbcc 100644 --- a/src/Icons/upload-lr-cat-icon.tsx +++ b/src/Icons/upload-lr-cat-icon.tsx @@ -5,7 +5,7 @@ const UploadLrCatIcon = createASIcon( "UploadLrCatIcon", { xmlns: "http://www.w3.org/2000/svg", - fill: "currentColor", + fill: "none", viewBox: "0 0 36 36", }, diff --git a/src/components/index.ts b/src/components/index.ts new file mode 100644 index 00000000..81d1f6e0 --- /dev/null +++ b/src/components/index.ts @@ -0,0 +1,2 @@ +export { default as IconBackground } from './IconBackground' +export { default as IconBorder } from './IconBorder' diff --git a/src/createASIcon.ts b/src/createASIcon.ts index 654a9d3a..f362aa12 100644 --- a/src/createASIcon.ts +++ b/src/createASIcon.ts @@ -1,6 +1,6 @@ import { createElement, forwardRef } from 'react' import Icon from './Icon' -import { ASIProps } from './types' +import { TUniconProps } from './types' import { toKebabCase } from './utils' import { cn } from './utils/cn' @@ -12,7 +12,7 @@ import { cn } from './utils/cn' * @returns {ForwardRefExoticComponent} LucideIcon */ const createASIcon = (iconName: string, originalAttributes: unknown, svgChildren: React.SVGProps, svgType: string) => { - const Component = forwardRef(({ className, ...props }, ref) => + const Component = forwardRef(({ className, ...props }, ref) => createElement(Icon, { ref, originalAttributes, diff --git a/src/index.ts b/src/index.ts index a0c00d87..292e18a8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,2 @@ +export * from './components' export * from './icons' -// export * from './icons-legacy' -// export * from './img' diff --git a/src/stories/LoupeViewIcon.stories.tsx b/src/stories/LoupeViewIcon.stories.tsx new file mode 100644 index 00000000..ea873e99 --- /dev/null +++ b/src/stories/LoupeViewIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LoupeViewIcon from '../icons/loupe-view-icon' + + const meta: Meta = { + component: LoupeViewIcon, + title: 'no-change/LoupeViewIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + + export const AccentColor: Story = { + args: { + accentColor: 'red', + }, + } + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Menu2Icon.stories.tsx b/src/stories/Menu2Icon.stories.tsx new file mode 100644 index 00000000..a78a3993 --- /dev/null +++ b/src/stories/Menu2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Menu2Icon from '../icons/menu-2-icon' + + const meta: Meta = { + component: Menu2Icon, + title: 'outline/Menu2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MenuIcon.stories.tsx b/src/stories/MenuIcon.stories.tsx new file mode 100644 index 00000000..f9248eee --- /dev/null +++ b/src/stories/MenuIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MenuIcon from '../icons/menu-icon' + + const meta: Meta = { + component: MenuIcon, + title: 'outline/MenuIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index a614c5b7..3ef5c2d8 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -570,16 +570,12 @@ video { height: 2.5rem; } -.h-\[24px\] { - height: 24px; -} - .w-10 { width: 2.5rem; } -.w-\[24px\] { - width: 24px; +.w-7 { + width: 1.75rem; } .shrink-0 { @@ -645,6 +641,10 @@ video { stroke-width: 2px; } +.stroke-2 { + stroke-width: 2; +} + .p-2 { padding: 0.5rem; } diff --git a/src/types.ts b/src/types.ts index fb0bd3df..f92f84d8 100644 --- a/src/types.ts +++ b/src/types.ts @@ -7,11 +7,12 @@ export type IconNode = [elementName: keyof ReactSVG, attrs: Record> type ElementAttributes = RefAttributes & SVGAttributes -export interface ASIProps extends ElementAttributes { +export interface TUniconProps extends ElementAttributes { size?: string | number - inActive: boolean - fillColor?: string - absoluteStrokeWidth?: boolean + inActive?: boolean + color?: string + accentColor?: string + className?: string } -export type LucideIcon = ForwardRefExoticComponent & RefAttributes> +export type LucideIcon = ForwardRefExoticComponent & RefAttributes> From c8368ce3de384987a6593ec1ec3c921ed32c32fc Mon Sep 17 00:00:00 2001 From: booi-dev Date: Tue, 4 Jun 2024 15:07:46 +0530 Subject: [PATCH 29/34] fix: loupe view icon --- .DS_Store | Bin 8196 -> 8196 bytes icons-metadata/loupe-view-icon.json | 9 +++-- icons-optimized/check-box-empty-icon.svg | 13 ++++++-- icons-optimized/loupe-view-icon.svg | 33 ++++--------------- icons-original/mix/check-box-empty.svg | 6 ++-- icons-original/mix/loupe-view.svg | 9 +++++ icons-original/no-change/loupe-view.svg | 16 --------- src/Icon.ts | 4 +-- src/Icons/check-box-empty-icon.tsx | 20 ++++-------- src/Icons/loupe-view-icon.tsx | 40 ++++++++--------------- src/stories/LoupeViewIcon.stories.tsx | 14 ++++---- src/styles/tailwind.css | 17 ++++++---- 12 files changed, 76 insertions(+), 105 deletions(-) create mode 100644 icons-original/mix/loupe-view.svg delete mode 100644 icons-original/no-change/loupe-view.svg diff --git a/.DS_Store b/.DS_Store index fd80e26f3429662c02429053c8e7d57aacc575db..6bf2150b24f751b65cac7eeac9558def10e38709 100644 GIT binary patch delta 40 wcmZp1XmOa}I9U^hRb(qmr28#FevOMGM5tSb75X<~ya01#9Se*gdg delta 64 zcmZp1XmOa}gHU^hRb@@5`^NJd!}h7^WOhGK>i&z$_^q@4UD1_lNJAa(>|z0FaA Rt!$gwCBCt2zAD1b3;-Xl5IFz< diff --git a/icons-metadata/loupe-view-icon.json b/icons-metadata/loupe-view-icon.json index 03901a58..39df1697 100644 --- a/icons-metadata/loupe-view-icon.json +++ b/icons-metadata/loupe-view-icon.json @@ -1,4 +1,9 @@ { - "icon_type": "no-change", - "name": "loupe-view-icon" + "icon_type": "mix", + "name": "loupe-view-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } } \ No newline at end of file diff --git a/icons-optimized/check-box-empty-icon.svg b/icons-optimized/check-box-empty-icon.svg index 3e2eb669..01332562 100644 --- a/icons-optimized/check-box-empty-icon.svg +++ b/icons-optimized/check-box-empty-icon.svg @@ -1,4 +1,11 @@ - - - + + + diff --git a/icons-optimized/loupe-view-icon.svg b/icons-optimized/loupe-view-icon.svg index edc1387a..516384f2 100644 --- a/icons-optimized/loupe-view-icon.svg +++ b/icons-optimized/loupe-view-icon.svg @@ -1,28 +1,9 @@ - - - - - - - - - - - - - - + + diff --git a/icons-original/mix/check-box-empty.svg b/icons-original/mix/check-box-empty.svg index f4183270..5d7df8d1 100644 --- a/icons-original/mix/check-box-empty.svg +++ b/icons-original/mix/check-box-empty.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons-original/mix/loupe-view.svg b/icons-original/mix/loupe-view.svg new file mode 100644 index 00000000..22e46565 --- /dev/null +++ b/icons-original/mix/loupe-view.svg @@ -0,0 +1,9 @@ + + + + diff --git a/icons-original/no-change/loupe-view.svg b/icons-original/no-change/loupe-view.svg deleted file mode 100644 index 6b02576d..00000000 --- a/icons-original/no-change/loupe-view.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/Icon.ts b/src/Icon.ts index 0a072d8a..4c8e03da 100644 --- a/src/Icon.ts +++ b/src/Icon.ts @@ -29,9 +29,9 @@ const Icon = forwardRef( ...(svgType === 'outline' && { stroke: inActive ? '#777777' : color }), ...(size ? { style: { width: size, height: 'auto' } } : {}), className: cn( - `w-7 shrink-0 `, + `w-7 shrink-0 text-white`, svgType === 'outline' && 'stroke-2', - svgType === 'fill' && 'text-white', + svgType === 'mix' && 'stroke-2', inActive && 'text-[#777777]', className, ), diff --git a/src/Icons/check-box-empty-icon.tsx b/src/Icons/check-box-empty-icon.tsx index 6eda81a4..293167ea 100644 --- a/src/Icons/check-box-empty-icon.tsx +++ b/src/Icons/check-box-empty-icon.tsx @@ -6,25 +6,19 @@ const CheckBoxEmptyIcon = createASIcon( { xmlns: "http://www.w3.org/2000/svg", fill: "none", - viewBox: "0 0 16 16", + viewBox: "0 0 24 24", }, - - , "mix", diff --git a/src/Icons/loupe-view-icon.tsx b/src/Icons/loupe-view-icon.tsx index 5a5cf302..9cb2b970 100644 --- a/src/Icons/loupe-view-icon.tsx +++ b/src/Icons/loupe-view-icon.tsx @@ -9,34 +9,20 @@ const LoupeViewIcon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - - - - - - - + + , - "no-change", + "mix", ); export default LoupeViewIcon; diff --git a/src/stories/LoupeViewIcon.stories.tsx b/src/stories/LoupeViewIcon.stories.tsx index ea873e99..c6584b7a 100644 --- a/src/stories/LoupeViewIcon.stories.tsx +++ b/src/stories/LoupeViewIcon.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: LoupeViewIcon, - title: 'no-change/LoupeViewIcon', + title: 'mix/LoupeViewIcon', decorators: [ (Story) => (
@@ -41,14 +41,14 @@ import type { Meta, StoryObj } from '@storybook/react' } + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + - export const AccentColor: Story = { - args: { - accentColor: 'red', - }, - } - export const inActive: Story = { args: { diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 3ef5c2d8..53f4f3cf 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -629,22 +629,22 @@ video { background-color: transparent; } +.stroke-green-500 { + stroke: #22c55e; +} + .stroke-1 { stroke-width: 1; } -.stroke-\[1\.5px\] { - stroke-width: 1.5px; +.stroke-2 { + stroke-width: 2; } .stroke-\[2px\] { stroke-width: 2px; } -.stroke-2 { - stroke-width: 2; -} - .p-2 { padding: 0.5rem; } @@ -674,6 +674,11 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} + .outline { outline-style: solid; } From 59bce8a0ced37e94d7ba0ca8c07269ada000ec70 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Wed, 5 Jun 2024 19:51:25 +0530 Subject: [PATCH 30/34] update: add new icons --- .storybook/preview.ts | 10 +-- .../{trash-off-icon.json => Media-icon.json} | 2 +- icons-metadata/arrow-right-fill-icon.json | 7 ++ icons-metadata/arrows-maximize-icon.json | 9 +++ icons-metadata/arrows-minimize-icon.json | 9 +++ icons-metadata/camera-icon.json | 9 +++ icons-metadata/camera-minus-icon.json | 9 +++ icons-metadata/camera-off-icon.json | 9 +++ icons-metadata/camera-plus-icon.json | 9 +++ icons-metadata/capture-icon.json | 9 +++ icons-metadata/copy-2-icon.json | 7 ++ icons-metadata/hexagon-icon.json | 9 +++ icons-metadata/info2-icon.json | 7 ++ icons-metadata/list-icon.json | 9 +++ icons-metadata/logout-icon.json | 9 +++ icons-metadata/loop-2-icon.json | 9 +++ icons-metadata/octagon-icon.json | 9 +++ icons-metadata/rotate-square-left-icon.json | 9 +++ icons-metadata/rotate-square-right-icon.json | 9 +++ icons-metadata/sort-duplicate-icon.json | 9 +++ icons-metadata/spray-can-icon.json | 9 +++ icons-metadata/square-icon.json | 9 +++ icons-metadata/survey-mode-icon.json | 9 +++ icons-metadata/trash-2-icon.json | 9 +++ icons-metadata/trash-2-off-icon.json | 9 +++ icons-metadata/triangle-icon.json | 9 +++ icons-optimized/Media-icon.svg | 6 ++ icons-optimized/arrow-right-fill-icon.svg | 3 + icons-optimized/arrows-maximize-icon.svg | 17 ++++ icons-optimized/arrows-minimize-icon.svg | 17 ++++ icons-optimized/camera-icon.svg | 11 +++ icons-optimized/camera-minus-icon.svg | 12 +++ icons-optimized/camera-off-icon.svg | 12 +++ icons-optimized/camera-plus-icon.svg | 13 ++++ icons-optimized/capture-icon.svg | 14 ++++ icons-optimized/copy-2-icon.svg | 9 +++ icons-optimized/hexagon-icon.svg | 14 ++++ icons-optimized/info2-icon.svg | 6 ++ icons-optimized/list-icon.svg | 15 ++++ icons-optimized/logout-icon.svg | 7 ++ icons-optimized/loop-2-icon.svg | 24 ++++++ icons-optimized/loop-icon.svg | 12 ++- icons-optimized/octagon-icon.svg | 14 ++++ icons-optimized/rotate-square-left-icon.svg | 3 + icons-optimized/rotate-square-right-icon.svg | 3 + icons-optimized/sort-duplicate-icon.svg | 21 +++++ icons-optimized/spray-can-icon.svg | 7 ++ icons-optimized/square-icon.svg | 14 ++++ icons-optimized/survey-mode-icon.svg | 11 +++ icons-optimized/trash-2-icon.svg | 14 ++++ ...rash-off-icon.svg => trash-2-off-icon.svg} | 0 icons-optimized/trash-icon.svg | 20 ++--- icons-optimized/triangle-icon.svg | 14 ++++ icons-original/fill/arrow-right-fill.svg | 3 + icons-original/fill/copy-2.svg | 4 + icons-original/fill/info2.svg | 3 + icons-original/mix/list.svg | 9 +++ icons-original/mix/sort-duplicate.svg | 5 ++ icons-original/mix/survey-mode.svg | 34 ++++++++ icons-original/outline/Media.svg | 3 + icons-original/outline/arrows-maximize.svg | 17 ++++ icons-original/outline/arrows-minimize.svg | 17 ++++ icons-original/outline/camera-minus.svg | 12 +++ icons-original/outline/camera-off.svg | 12 +++ icons-original/outline/camera-plus.svg | 13 ++++ icons-original/outline/camera.svg | 11 +++ icons-original/outline/capture.svg | 14 ++++ icons-original/outline/hexagon.svg | 10 +++ icons-original/outline/logout.svg | 3 + icons-original/outline/loop-2.svg | 6 ++ icons-original/outline/loop.svg | 12 +-- icons-original/outline/octagon.svg | 10 +++ icons-original/outline/rotate-square-left.svg | 3 + .../outline/rotate-square-right.svg | 13 ++++ icons-original/outline/spray-can.svg | 3 + icons-original/outline/square.svg | 10 +++ .../{trash-off.svg => trash-2-off.svg} | 0 icons-original/outline/trash-2.svg | 14 ++++ icons-original/outline/trash.svg | 16 +--- icons-original/outline/triangle.svg | 10 +++ src/Icons/Media-icon.tsx | 21 +++++ src/Icons/arrow-right-fill-icon.tsx | 17 ++++ src/Icons/arrows-maximize-icon.tsx | 36 +++++++++ src/Icons/arrows-minimize-icon.tsx | 36 +++++++++ src/Icons/camera-icon.tsx | 30 ++++++++ src/Icons/camera-minus-icon.tsx | 31 ++++++++ src/Icons/camera-off-icon.tsx | 31 ++++++++ src/Icons/camera-plus-icon.tsx | 32 ++++++++ src/Icons/capture-icon.tsx | 33 ++++++++ src/Icons/copy-2-icon.tsx | 22 ++++++ src/Icons/hexagon-icon.tsx | 28 +++++++ src/Icons/index.ts | 26 ++++++- src/Icons/info2-icon.tsx | 21 +++++ src/Icons/list-icon.tsx | 31 ++++++++ src/Icons/logout-icon.tsx | 22 ++++++ src/Icons/loop-2-icon.tsx | 42 ++++++++++ src/Icons/loop-icon.tsx | 20 +++-- src/Icons/octagon-icon.tsx | 28 +++++++ src/Icons/rotate-square-left-icon.tsx | 20 +++++ src/Icons/rotate-square-right-icon.tsx | 20 +++++ src/Icons/sort-duplicate-icon.tsx | 38 +++++++++ src/Icons/spray-can-icon.tsx | 22 ++++++ src/Icons/square-icon.tsx | 28 +++++++ src/Icons/survey-mode-icon.tsx | 25 ++++++ src/Icons/trash-2-icon.tsx | 33 ++++++++ ...rash-off-icon.tsx => trash-2-off-icon.tsx} | 6 +- src/Icons/trash-icon.tsx | 37 +++++---- src/Icons/triangle-icon.tsx | 28 +++++++ src/stories/ArrowRightFillIcon.stories.tsx | 77 +++++++++++++++++++ src/stories/ArrowsMaximizeIcon.stories.tsx | 70 +++++++++++++++++ src/stories/ArrowsMinimizeIcon.stories.tsx | 70 +++++++++++++++++ ...con.stories.tsx => CameraIcon.stories.tsx} | 10 +-- src/stories/CameraMinusIcon.stories.tsx | 70 +++++++++++++++++ src/stories/CameraOffIcon.stories.tsx | 70 +++++++++++++++++ src/stories/CameraPlusIcon.stories.tsx | 70 +++++++++++++++++ src/stories/CaptureIcon.stories.tsx | 70 +++++++++++++++++ src/stories/Copy2Icon.stories.tsx | 77 +++++++++++++++++++ src/stories/HexagonIcon.stories.tsx | 70 +++++++++++++++++ src/stories/Info2Icon.stories.tsx | 77 +++++++++++++++++++ src/stories/ListIcon.stories.tsx | 77 +++++++++++++++++++ src/stories/LogoutIcon.stories.tsx | 70 +++++++++++++++++ src/stories/Loop2Icon.stories.tsx | 70 +++++++++++++++++ src/stories/MediaIcon.stories.tsx | 70 +++++++++++++++++ src/stories/OctagonIcon.stories.tsx | 70 +++++++++++++++++ src/stories/RotateSquareLeftIcon.stories.tsx | 70 +++++++++++++++++ src/stories/RotateSquareRightIcon.stories.tsx | 70 +++++++++++++++++ src/stories/SortDuplicateIcon.stories.tsx | 77 +++++++++++++++++++ src/stories/SprayCanIcon.stories.tsx | 70 +++++++++++++++++ src/stories/SquareIcon.stories.tsx | 70 +++++++++++++++++ src/stories/SurveyModeIcon.stories.tsx | 77 +++++++++++++++++++ src/stories/Trash2Icon.stories.tsx | 70 +++++++++++++++++ src/stories/Trash2OffIcon.stories.tsx | 70 +++++++++++++++++ src/stories/TriangleIcon.stories.tsx | 70 +++++++++++++++++ src/styles/tailwind.css | 17 ++-- 134 files changed, 3228 insertions(+), 87 deletions(-) rename icons-metadata/{trash-off-icon.json => Media-icon.json} (82%) create mode 100644 icons-metadata/arrow-right-fill-icon.json create mode 100644 icons-metadata/arrows-maximize-icon.json create mode 100644 icons-metadata/arrows-minimize-icon.json create mode 100644 icons-metadata/camera-icon.json create mode 100644 icons-metadata/camera-minus-icon.json create mode 100644 icons-metadata/camera-off-icon.json create mode 100644 icons-metadata/camera-plus-icon.json create mode 100644 icons-metadata/capture-icon.json create mode 100644 icons-metadata/copy-2-icon.json create mode 100644 icons-metadata/hexagon-icon.json create mode 100644 icons-metadata/info2-icon.json create mode 100644 icons-metadata/list-icon.json create mode 100644 icons-metadata/logout-icon.json create mode 100644 icons-metadata/loop-2-icon.json create mode 100644 icons-metadata/octagon-icon.json create mode 100644 icons-metadata/rotate-square-left-icon.json create mode 100644 icons-metadata/rotate-square-right-icon.json create mode 100644 icons-metadata/sort-duplicate-icon.json create mode 100644 icons-metadata/spray-can-icon.json create mode 100644 icons-metadata/square-icon.json create mode 100644 icons-metadata/survey-mode-icon.json create mode 100644 icons-metadata/trash-2-icon.json create mode 100644 icons-metadata/trash-2-off-icon.json create mode 100644 icons-metadata/triangle-icon.json create mode 100644 icons-optimized/Media-icon.svg create mode 100644 icons-optimized/arrow-right-fill-icon.svg create mode 100644 icons-optimized/arrows-maximize-icon.svg create mode 100644 icons-optimized/arrows-minimize-icon.svg create mode 100644 icons-optimized/camera-icon.svg create mode 100644 icons-optimized/camera-minus-icon.svg create mode 100644 icons-optimized/camera-off-icon.svg create mode 100644 icons-optimized/camera-plus-icon.svg create mode 100644 icons-optimized/capture-icon.svg create mode 100644 icons-optimized/copy-2-icon.svg create mode 100644 icons-optimized/hexagon-icon.svg create mode 100644 icons-optimized/info2-icon.svg create mode 100644 icons-optimized/list-icon.svg create mode 100644 icons-optimized/logout-icon.svg create mode 100644 icons-optimized/loop-2-icon.svg create mode 100644 icons-optimized/octagon-icon.svg create mode 100644 icons-optimized/rotate-square-left-icon.svg create mode 100644 icons-optimized/rotate-square-right-icon.svg create mode 100644 icons-optimized/sort-duplicate-icon.svg create mode 100644 icons-optimized/spray-can-icon.svg create mode 100644 icons-optimized/square-icon.svg create mode 100644 icons-optimized/survey-mode-icon.svg create mode 100644 icons-optimized/trash-2-icon.svg rename icons-optimized/{trash-off-icon.svg => trash-2-off-icon.svg} (100%) create mode 100644 icons-optimized/triangle-icon.svg create mode 100644 icons-original/fill/arrow-right-fill.svg create mode 100644 icons-original/fill/copy-2.svg create mode 100644 icons-original/fill/info2.svg create mode 100644 icons-original/mix/list.svg create mode 100644 icons-original/mix/sort-duplicate.svg create mode 100644 icons-original/mix/survey-mode.svg create mode 100644 icons-original/outline/Media.svg create mode 100644 icons-original/outline/arrows-maximize.svg create mode 100644 icons-original/outline/arrows-minimize.svg create mode 100644 icons-original/outline/camera-minus.svg create mode 100644 icons-original/outline/camera-off.svg create mode 100644 icons-original/outline/camera-plus.svg create mode 100644 icons-original/outline/camera.svg create mode 100644 icons-original/outline/capture.svg create mode 100644 icons-original/outline/hexagon.svg create mode 100644 icons-original/outline/logout.svg create mode 100644 icons-original/outline/loop-2.svg create mode 100644 icons-original/outline/octagon.svg create mode 100644 icons-original/outline/rotate-square-left.svg create mode 100644 icons-original/outline/rotate-square-right.svg create mode 100644 icons-original/outline/spray-can.svg create mode 100644 icons-original/outline/square.svg rename icons-original/outline/{trash-off.svg => trash-2-off.svg} (100%) create mode 100644 icons-original/outline/trash-2.svg create mode 100644 icons-original/outline/triangle.svg create mode 100644 src/Icons/Media-icon.tsx create mode 100644 src/Icons/arrow-right-fill-icon.tsx create mode 100644 src/Icons/arrows-maximize-icon.tsx create mode 100644 src/Icons/arrows-minimize-icon.tsx create mode 100644 src/Icons/camera-icon.tsx create mode 100644 src/Icons/camera-minus-icon.tsx create mode 100644 src/Icons/camera-off-icon.tsx create mode 100644 src/Icons/camera-plus-icon.tsx create mode 100644 src/Icons/capture-icon.tsx create mode 100644 src/Icons/copy-2-icon.tsx create mode 100644 src/Icons/hexagon-icon.tsx create mode 100644 src/Icons/info2-icon.tsx create mode 100644 src/Icons/list-icon.tsx create mode 100644 src/Icons/logout-icon.tsx create mode 100644 src/Icons/loop-2-icon.tsx create mode 100644 src/Icons/octagon-icon.tsx create mode 100644 src/Icons/rotate-square-left-icon.tsx create mode 100644 src/Icons/rotate-square-right-icon.tsx create mode 100644 src/Icons/sort-duplicate-icon.tsx create mode 100644 src/Icons/spray-can-icon.tsx create mode 100644 src/Icons/square-icon.tsx create mode 100644 src/Icons/survey-mode-icon.tsx create mode 100644 src/Icons/trash-2-icon.tsx rename src/Icons/{trash-off-icon.tsx => trash-2-off-icon.tsx} (89%) create mode 100644 src/Icons/triangle-icon.tsx create mode 100644 src/stories/ArrowRightFillIcon.stories.tsx create mode 100644 src/stories/ArrowsMaximizeIcon.stories.tsx create mode 100644 src/stories/ArrowsMinimizeIcon.stories.tsx rename src/stories/{TrashOffIcon.stories.tsx => CameraIcon.stories.tsx} (88%) create mode 100644 src/stories/CameraMinusIcon.stories.tsx create mode 100644 src/stories/CameraOffIcon.stories.tsx create mode 100644 src/stories/CameraPlusIcon.stories.tsx create mode 100644 src/stories/CaptureIcon.stories.tsx create mode 100644 src/stories/Copy2Icon.stories.tsx create mode 100644 src/stories/HexagonIcon.stories.tsx create mode 100644 src/stories/Info2Icon.stories.tsx create mode 100644 src/stories/ListIcon.stories.tsx create mode 100644 src/stories/LogoutIcon.stories.tsx create mode 100644 src/stories/Loop2Icon.stories.tsx create mode 100644 src/stories/MediaIcon.stories.tsx create mode 100644 src/stories/OctagonIcon.stories.tsx create mode 100644 src/stories/RotateSquareLeftIcon.stories.tsx create mode 100644 src/stories/RotateSquareRightIcon.stories.tsx create mode 100644 src/stories/SortDuplicateIcon.stories.tsx create mode 100644 src/stories/SprayCanIcon.stories.tsx create mode 100644 src/stories/SquareIcon.stories.tsx create mode 100644 src/stories/SurveyModeIcon.stories.tsx create mode 100644 src/stories/Trash2Icon.stories.tsx create mode 100644 src/stories/Trash2OffIcon.stories.tsx create mode 100644 src/stories/TriangleIcon.stories.tsx diff --git a/.storybook/preview.ts b/.storybook/preview.ts index bca8d9a9..cc1c1db0 100644 --- a/.storybook/preview.ts +++ b/.storybook/preview.ts @@ -10,11 +10,11 @@ const preview: Preview = { date: /Date$/i, }, }, - // options: { - // storySort: { - // method: 'alphabetical', - // }, - // }, + options: { + storySort: { + method: 'alphabetical', + }, + }, }, } diff --git a/icons-metadata/trash-off-icon.json b/icons-metadata/Media-icon.json similarity index 82% rename from icons-metadata/trash-off-icon.json rename to icons-metadata/Media-icon.json index fa2f415f..5fe171ef 100644 --- a/icons-metadata/trash-off-icon.json +++ b/icons-metadata/Media-icon.json @@ -1,6 +1,6 @@ { "icon_type": "outline", - "name": "trash-off-icon", + "name": "Media-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, diff --git a/icons-metadata/arrow-right-fill-icon.json b/icons-metadata/arrow-right-fill-icon.json new file mode 100644 index 00000000..98fc45fe --- /dev/null +++ b/icons-metadata/arrow-right-fill-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "arrow-right-fill-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-maximize-icon.json b/icons-metadata/arrows-maximize-icon.json new file mode 100644 index 00000000..bfeb8167 --- /dev/null +++ b/icons-metadata/arrows-maximize-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-maximize-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/arrows-minimize-icon.json b/icons-metadata/arrows-minimize-icon.json new file mode 100644 index 00000000..b5ff50d3 --- /dev/null +++ b/icons-metadata/arrows-minimize-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "arrows-minimize-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/camera-icon.json b/icons-metadata/camera-icon.json new file mode 100644 index 00000000..ee587862 --- /dev/null +++ b/icons-metadata/camera-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "camera-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/camera-minus-icon.json b/icons-metadata/camera-minus-icon.json new file mode 100644 index 00000000..b7d27dcb --- /dev/null +++ b/icons-metadata/camera-minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "camera-minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/camera-off-icon.json b/icons-metadata/camera-off-icon.json new file mode 100644 index 00000000..b43203ee --- /dev/null +++ b/icons-metadata/camera-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "camera-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/camera-plus-icon.json b/icons-metadata/camera-plus-icon.json new file mode 100644 index 00000000..16860f26 --- /dev/null +++ b/icons-metadata/camera-plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "camera-plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/capture-icon.json b/icons-metadata/capture-icon.json new file mode 100644 index 00000000..29259512 --- /dev/null +++ b/icons-metadata/capture-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "capture-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/copy-2-icon.json b/icons-metadata/copy-2-icon.json new file mode 100644 index 00000000..1ede5821 --- /dev/null +++ b/icons-metadata/copy-2-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "copy-2-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/hexagon-icon.json b/icons-metadata/hexagon-icon.json new file mode 100644 index 00000000..acf9c880 --- /dev/null +++ b/icons-metadata/hexagon-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "hexagon-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/info2-icon.json b/icons-metadata/info2-icon.json new file mode 100644 index 00000000..394a6588 --- /dev/null +++ b/icons-metadata/info2-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "info2-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/list-icon.json b/icons-metadata/list-icon.json new file mode 100644 index 00000000..68a11286 --- /dev/null +++ b/icons-metadata/list-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "list-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/logout-icon.json b/icons-metadata/logout-icon.json new file mode 100644 index 00000000..d31cc5ff --- /dev/null +++ b/icons-metadata/logout-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "logout-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/loop-2-icon.json b/icons-metadata/loop-2-icon.json new file mode 100644 index 00000000..d9589e01 --- /dev/null +++ b/icons-metadata/loop-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "loop-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/octagon-icon.json b/icons-metadata/octagon-icon.json new file mode 100644 index 00000000..7bc3c541 --- /dev/null +++ b/icons-metadata/octagon-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "octagon-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate-square-left-icon.json b/icons-metadata/rotate-square-left-icon.json new file mode 100644 index 00000000..0e0eb335 --- /dev/null +++ b/icons-metadata/rotate-square-left-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate-square-left-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/rotate-square-right-icon.json b/icons-metadata/rotate-square-right-icon.json new file mode 100644 index 00000000..1a14d965 --- /dev/null +++ b/icons-metadata/rotate-square-right-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "rotate-square-right-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/sort-duplicate-icon.json b/icons-metadata/sort-duplicate-icon.json new file mode 100644 index 00000000..3d3c465d --- /dev/null +++ b/icons-metadata/sort-duplicate-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "sort-duplicate-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/spray-can-icon.json b/icons-metadata/spray-can-icon.json new file mode 100644 index 00000000..49242937 --- /dev/null +++ b/icons-metadata/spray-can-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "spray-can-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/square-icon.json b/icons-metadata/square-icon.json new file mode 100644 index 00000000..fb271413 --- /dev/null +++ b/icons-metadata/square-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "square-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/survey-mode-icon.json b/icons-metadata/survey-mode-icon.json new file mode 100644 index 00000000..1e119da6 --- /dev/null +++ b/icons-metadata/survey-mode-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "survey-mode-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/trash-2-icon.json b/icons-metadata/trash-2-icon.json new file mode 100644 index 00000000..c57d04b5 --- /dev/null +++ b/icons-metadata/trash-2-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash-2-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/trash-2-off-icon.json b/icons-metadata/trash-2-off-icon.json new file mode 100644 index 00000000..a7090597 --- /dev/null +++ b/icons-metadata/trash-2-off-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "trash-2-off-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/triangle-icon.json b/icons-metadata/triangle-icon.json new file mode 100644 index 00000000..bf5d59b9 --- /dev/null +++ b/icons-metadata/triangle-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "triangle-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-optimized/Media-icon.svg b/icons-optimized/Media-icon.svg new file mode 100644 index 00000000..af89d413 --- /dev/null +++ b/icons-optimized/Media-icon.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/arrow-right-fill-icon.svg b/icons-optimized/arrow-right-fill-icon.svg new file mode 100644 index 00000000..641913d0 --- /dev/null +++ b/icons-optimized/arrow-right-fill-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-optimized/arrows-maximize-icon.svg b/icons-optimized/arrows-maximize-icon.svg new file mode 100644 index 00000000..bfff6e4b --- /dev/null +++ b/icons-optimized/arrows-maximize-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/arrows-minimize-icon.svg b/icons-optimized/arrows-minimize-icon.svg new file mode 100644 index 00000000..b868a3c1 --- /dev/null +++ b/icons-optimized/arrows-minimize-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-optimized/camera-icon.svg b/icons-optimized/camera-icon.svg new file mode 100644 index 00000000..8587a3b0 --- /dev/null +++ b/icons-optimized/camera-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/camera-minus-icon.svg b/icons-optimized/camera-minus-icon.svg new file mode 100644 index 00000000..ec0397f2 --- /dev/null +++ b/icons-optimized/camera-minus-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/camera-off-icon.svg b/icons-optimized/camera-off-icon.svg new file mode 100644 index 00000000..086ed2a7 --- /dev/null +++ b/icons-optimized/camera-off-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/camera-plus-icon.svg b/icons-optimized/camera-plus-icon.svg new file mode 100644 index 00000000..5a77fa8d --- /dev/null +++ b/icons-optimized/camera-plus-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-optimized/capture-icon.svg b/icons-optimized/capture-icon.svg new file mode 100644 index 00000000..d3e93805 --- /dev/null +++ b/icons-optimized/capture-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/copy-2-icon.svg b/icons-optimized/copy-2-icon.svg new file mode 100644 index 00000000..b144cccf --- /dev/null +++ b/icons-optimized/copy-2-icon.svg @@ -0,0 +1,9 @@ + + + + diff --git a/icons-optimized/hexagon-icon.svg b/icons-optimized/hexagon-icon.svg new file mode 100644 index 00000000..f2b2bf10 --- /dev/null +++ b/icons-optimized/hexagon-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/info2-icon.svg b/icons-optimized/info2-icon.svg new file mode 100644 index 00000000..813c1809 --- /dev/null +++ b/icons-optimized/info2-icon.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-optimized/list-icon.svg b/icons-optimized/list-icon.svg new file mode 100644 index 00000000..d82342a3 --- /dev/null +++ b/icons-optimized/list-icon.svg @@ -0,0 +1,15 @@ + + + + diff --git a/icons-optimized/logout-icon.svg b/icons-optimized/logout-icon.svg new file mode 100644 index 00000000..ac454c21 --- /dev/null +++ b/icons-optimized/logout-icon.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/loop-2-icon.svg b/icons-optimized/loop-2-icon.svg new file mode 100644 index 00000000..56eee8d4 --- /dev/null +++ b/icons-optimized/loop-2-icon.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/icons-optimized/loop-icon.svg b/icons-optimized/loop-icon.svg index 67b8f1bd..281af6d3 100644 --- a/icons-optimized/loop-icon.svg +++ b/icons-optimized/loop-icon.svg @@ -1,24 +1,22 @@ - + diff --git a/icons-optimized/octagon-icon.svg b/icons-optimized/octagon-icon.svg new file mode 100644 index 00000000..bea62b4e --- /dev/null +++ b/icons-optimized/octagon-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/rotate-square-left-icon.svg b/icons-optimized/rotate-square-left-icon.svg new file mode 100644 index 00000000..074f4a27 --- /dev/null +++ b/icons-optimized/rotate-square-left-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-optimized/rotate-square-right-icon.svg b/icons-optimized/rotate-square-right-icon.svg new file mode 100644 index 00000000..e4d12aa2 --- /dev/null +++ b/icons-optimized/rotate-square-right-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-optimized/sort-duplicate-icon.svg b/icons-optimized/sort-duplicate-icon.svg new file mode 100644 index 00000000..12f2686c --- /dev/null +++ b/icons-optimized/sort-duplicate-icon.svg @@ -0,0 +1,21 @@ + + + + + diff --git a/icons-optimized/spray-can-icon.svg b/icons-optimized/spray-can-icon.svg new file mode 100644 index 00000000..99038e0b --- /dev/null +++ b/icons-optimized/spray-can-icon.svg @@ -0,0 +1,7 @@ + + + diff --git a/icons-optimized/square-icon.svg b/icons-optimized/square-icon.svg new file mode 100644 index 00000000..173498ee --- /dev/null +++ b/icons-optimized/square-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-optimized/survey-mode-icon.svg b/icons-optimized/survey-mode-icon.svg new file mode 100644 index 00000000..e45cd3f6 --- /dev/null +++ b/icons-optimized/survey-mode-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/icons-optimized/trash-2-icon.svg b/icons-optimized/trash-2-icon.svg new file mode 100644 index 00000000..e88b5435 --- /dev/null +++ b/icons-optimized/trash-2-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-optimized/trash-off-icon.svg b/icons-optimized/trash-2-off-icon.svg similarity index 100% rename from icons-optimized/trash-off-icon.svg rename to icons-optimized/trash-2-off-icon.svg diff --git a/icons-optimized/trash-icon.svg b/icons-optimized/trash-icon.svg index e88b5435..95b0d4d7 100644 --- a/icons-optimized/trash-icon.svg +++ b/icons-optimized/trash-icon.svg @@ -1,14 +1,10 @@ - - - - - - - - - - - - + + + + diff --git a/icons-optimized/triangle-icon.svg b/icons-optimized/triangle-icon.svg new file mode 100644 index 00000000..78f99b1f --- /dev/null +++ b/icons-optimized/triangle-icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/icons-original/fill/arrow-right-fill.svg b/icons-original/fill/arrow-right-fill.svg new file mode 100644 index 00000000..f6e1353e --- /dev/null +++ b/icons-original/fill/arrow-right-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/fill/copy-2.svg b/icons-original/fill/copy-2.svg new file mode 100644 index 00000000..64a9211f --- /dev/null +++ b/icons-original/fill/copy-2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons-original/fill/info2.svg b/icons-original/fill/info2.svg new file mode 100644 index 00000000..cd394cc4 --- /dev/null +++ b/icons-original/fill/info2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/icons-original/mix/list.svg b/icons-original/mix/list.svg new file mode 100644 index 00000000..31b37d00 --- /dev/null +++ b/icons-original/mix/list.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/icons-original/mix/sort-duplicate.svg b/icons-original/mix/sort-duplicate.svg new file mode 100644 index 00000000..6e2dace7 --- /dev/null +++ b/icons-original/mix/sort-duplicate.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons-original/mix/survey-mode.svg b/icons-original/mix/survey-mode.svg new file mode 100644 index 00000000..729b18aa --- /dev/null +++ b/icons-original/mix/survey-mode.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/icons-original/outline/Media.svg b/icons-original/outline/Media.svg new file mode 100644 index 00000000..5d0082a7 --- /dev/null +++ b/icons-original/outline/Media.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/arrows-maximize.svg b/icons-original/outline/arrows-maximize.svg new file mode 100644 index 00000000..74ef5e37 --- /dev/null +++ b/icons-original/outline/arrows-maximize.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/arrows-minimize.svg b/icons-original/outline/arrows-minimize.svg new file mode 100644 index 00000000..2df78ec6 --- /dev/null +++ b/icons-original/outline/arrows-minimize.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons-original/outline/camera-minus.svg b/icons-original/outline/camera-minus.svg new file mode 100644 index 00000000..d772b885 --- /dev/null +++ b/icons-original/outline/camera-minus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/camera-off.svg b/icons-original/outline/camera-off.svg new file mode 100644 index 00000000..77e87e26 --- /dev/null +++ b/icons-original/outline/camera-off.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-original/outline/camera-plus.svg b/icons-original/outline/camera-plus.svg new file mode 100644 index 00000000..afadb266 --- /dev/null +++ b/icons-original/outline/camera-plus.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons-original/outline/camera.svg b/icons-original/outline/camera.svg new file mode 100644 index 00000000..c53e876c --- /dev/null +++ b/icons-original/outline/camera.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/capture.svg b/icons-original/outline/capture.svg new file mode 100644 index 00000000..b29134a8 --- /dev/null +++ b/icons-original/outline/capture.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/hexagon.svg b/icons-original/outline/hexagon.svg new file mode 100644 index 00000000..87089069 --- /dev/null +++ b/icons-original/outline/hexagon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/logout.svg b/icons-original/outline/logout.svg new file mode 100644 index 00000000..d30fc77e --- /dev/null +++ b/icons-original/outline/logout.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/loop-2.svg b/icons-original/outline/loop-2.svg new file mode 100644 index 00000000..0f912b3b --- /dev/null +++ b/icons-original/outline/loop-2.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/icons-original/outline/loop.svg b/icons-original/outline/loop.svg index 74bc252b..db771447 100644 --- a/icons-original/outline/loop.svg +++ b/icons-original/outline/loop.svg @@ -1,6 +1,6 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/icons-original/outline/octagon.svg b/icons-original/outline/octagon.svg new file mode 100644 index 00000000..09d8af87 --- /dev/null +++ b/icons-original/outline/octagon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/rotate-square-left.svg b/icons-original/outline/rotate-square-left.svg new file mode 100644 index 00000000..334ecc99 --- /dev/null +++ b/icons-original/outline/rotate-square-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/rotate-square-right.svg b/icons-original/outline/rotate-square-right.svg new file mode 100644 index 00000000..30668e00 --- /dev/null +++ b/icons-original/outline/rotate-square-right.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/icons-original/outline/spray-can.svg b/icons-original/outline/spray-can.svg new file mode 100644 index 00000000..0c54185a --- /dev/null +++ b/icons-original/outline/spray-can.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/outline/square.svg b/icons-original/outline/square.svg new file mode 100644 index 00000000..330b28c9 --- /dev/null +++ b/icons-original/outline/square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons-original/outline/trash-off.svg b/icons-original/outline/trash-2-off.svg similarity index 100% rename from icons-original/outline/trash-off.svg rename to icons-original/outline/trash-2-off.svg diff --git a/icons-original/outline/trash-2.svg b/icons-original/outline/trash-2.svg new file mode 100644 index 00000000..85270033 --- /dev/null +++ b/icons-original/outline/trash-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons-original/outline/trash.svg b/icons-original/outline/trash.svg index 85270033..b6068efb 100644 --- a/icons-original/outline/trash.svg +++ b/icons-original/outline/trash.svg @@ -1,14 +1,6 @@ - - - - - - - - - - - - + + + + diff --git a/icons-original/outline/triangle.svg b/icons-original/outline/triangle.svg new file mode 100644 index 00000000..0428c5d0 --- /dev/null +++ b/icons-original/outline/triangle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/Icons/Media-icon.tsx b/src/Icons/Media-icon.tsx new file mode 100644 index 00000000..22f62832 --- /dev/null +++ b/src/Icons/Media-icon.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MediaIcon = createASIcon( + "MediaIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 66 19", + }, + + + , + "outline", +); + +export default MediaIcon; diff --git a/src/Icons/arrow-right-fill-icon.tsx b/src/Icons/arrow-right-fill-icon.tsx new file mode 100644 index 00000000..50d5e66b --- /dev/null +++ b/src/Icons/arrow-right-fill-icon.tsx @@ -0,0 +1,17 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowRightFillIcon = createASIcon( + "ArrowRightFillIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default ArrowRightFillIcon; diff --git a/src/Icons/arrows-maximize-icon.tsx b/src/Icons/arrows-maximize-icon.tsx new file mode 100644 index 00000000..a7e34991 --- /dev/null +++ b/src/Icons/arrows-maximize-icon.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsMaximizeIcon = createASIcon( + "ArrowsMaximizeIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , + "outline", +); + +export default ArrowsMaximizeIcon; diff --git a/src/Icons/arrows-minimize-icon.tsx b/src/Icons/arrows-minimize-icon.tsx new file mode 100644 index 00000000..3dddc957 --- /dev/null +++ b/src/Icons/arrows-minimize-icon.tsx @@ -0,0 +1,36 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ArrowsMinimizeIcon = createASIcon( + "ArrowsMinimizeIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + + + + , + "outline", +); + +export default ArrowsMinimizeIcon; diff --git a/src/Icons/camera-icon.tsx b/src/Icons/camera-icon.tsx new file mode 100644 index 00000000..04cbeab3 --- /dev/null +++ b/src/Icons/camera-icon.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CameraIcon = createASIcon( + "CameraIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + , + "outline", +); + +export default CameraIcon; diff --git a/src/Icons/camera-minus-icon.tsx b/src/Icons/camera-minus-icon.tsx new file mode 100644 index 00000000..8a438ac1 --- /dev/null +++ b/src/Icons/camera-minus-icon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CameraMinusIcon = createASIcon( + "CameraMinusIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default CameraMinusIcon; diff --git a/src/Icons/camera-off-icon.tsx b/src/Icons/camera-off-icon.tsx new file mode 100644 index 00000000..91afb57c --- /dev/null +++ b/src/Icons/camera-off-icon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CameraOffIcon = createASIcon( + "CameraOffIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + , + "outline", +); + +export default CameraOffIcon; diff --git a/src/Icons/camera-plus-icon.tsx b/src/Icons/camera-plus-icon.tsx new file mode 100644 index 00000000..de057f52 --- /dev/null +++ b/src/Icons/camera-plus-icon.tsx @@ -0,0 +1,32 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CameraPlusIcon = createASIcon( + "CameraPlusIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + , + "outline", +); + +export default CameraPlusIcon; diff --git a/src/Icons/capture-icon.tsx b/src/Icons/capture-icon.tsx new file mode 100644 index 00000000..b29d01ff --- /dev/null +++ b/src/Icons/capture-icon.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CaptureIcon = createASIcon( + "CaptureIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 25", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default CaptureIcon; diff --git a/src/Icons/copy-2-icon.tsx b/src/Icons/copy-2-icon.tsx new file mode 100644 index 00000000..7ba42bb3 --- /dev/null +++ b/src/Icons/copy-2-icon.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Copy2Icon = createASIcon( + "Copy2Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "currentColor", + class: "h-5 w-5 cursor-pointer", + viewBox: "0 0 24 24", + }, + + + + , + "fill", +); + +export default Copy2Icon; diff --git a/src/Icons/hexagon-icon.tsx b/src/Icons/hexagon-icon.tsx new file mode 100644 index 00000000..361b434f --- /dev/null +++ b/src/Icons/hexagon-icon.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const HexagonIcon = createASIcon( + "HexagonIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default HexagonIcon; diff --git a/src/Icons/index.ts b/src/Icons/index.ts index 8574e1c1..1e10f7ec 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -1,4 +1,5 @@ export { default as ImportIcon } from './Import-icon'; +export { default as MediaIcon } from './Media-icon'; export { default as AdjustmentsHorizontalIcon } from './adjustments-horizontal-icon'; export { default as AdjustmentsIcon } from './adjustments-icon'; export { default as AftershootCreditIcon } from './aftershoot-credit-icon'; @@ -15,10 +16,13 @@ export { default as ArrowDownIcon } from './arrow-down-icon'; export { default as ArrowLeftIcon } from './arrow-left-icon'; export { default as ArrowNarrowLeftIcon } from './arrow-narrow-left-icon'; export { default as ArrowNarrowRightIcon } from './arrow-narrow-right-icon'; +export { default as ArrowRightFillIcon } from './arrow-right-fill-icon'; export { default as ArrowRightIcon } from './arrow-right-icon'; export { default as ArrowSort2Icon } from './arrow-sort-2-icon'; export { default as ArrowUpIcon } from './arrow-up-icon'; export { default as ArrowsDiagonalIcon } from './arrows-diagonal-icon'; +export { default as ArrowsMaximizeIcon } from './arrows-maximize-icon'; +export { default as ArrowsMinimizeIcon } from './arrows-minimize-icon'; export { default as ArrowsSortIcon } from './arrows-sort-icon'; export { default as AtomAccentIcon } from './atom-accent-icon'; export { default as AtomIcon } from './atom-icon'; @@ -38,6 +42,11 @@ export { default as BrandWhatsappIcon } from './brand-whatsapp-icon'; export { default as BrandYoutubeIcon } from './brand-youtube-icon'; export { default as BulbIcon } from './bulb-icon'; export { default as BulbOffIcon } from './bulb-off-icon'; +export { default as CameraIcon } from './camera-icon'; +export { default as CameraMinusIcon } from './camera-minus-icon'; +export { default as CameraOffIcon } from './camera-off-icon'; +export { default as CameraPlusIcon } from './camera-plus-icon'; +export { default as CaptureIcon } from './capture-icon'; export { default as CheckBoxEmptyIcon } from './check-box-empty-icon'; export { default as CheckIcon } from './check-icon'; export { default as CheckboxBlueAccentIcon } from './checkbox-blue-accent-icon'; @@ -60,6 +69,7 @@ export { default as CloudUploadIcon } from './cloud-upload-icon'; export { default as CollectionIcon } from './collection-icon'; export { default as ColorSwatchIcon } from './color-swatch-icon'; export { default as ConfettiIcon } from './confetti-icon'; +export { default as Copy2Icon } from './copy-2-icon'; export { default as CopyIcon } from './copy-icon'; export { default as Crown2FillIcon } from './crown-2-fill-icon'; export { default as CrownIcon } from './crown-icon'; @@ -108,6 +118,7 @@ export { default as GrabHandIcon } from './grab-hand-icon'; export { default as GridDotsIcon } from './grid-dots-icon'; export { default as GridView1Icon } from './grid-view-1-icon'; export { default as GridView2Icon } from './grid-view-2-icon'; +export { default as HexagonIcon } from './hexagon-icon'; export { default as Home2Icon } from './home-2-icon'; export { default as HomeIcon } from './home-icon'; export { default as ImageBorderIcon } from './image-border-icon'; @@ -115,17 +126,21 @@ export { default as InfoCircleIcon } from './info-circle-icon'; export { default as InfoCirlce2Icon } from './info-cirlce-2-icon'; export { default as InfoIcon } from './info-icon'; export { default as InfoSquareIcon } from './info-square-icon'; +export { default as Info2Icon } from './info2-icon'; export { default as Key2Icon } from './key-2-icon'; export { default as KeyDuplicateIcon } from './key-duplicate-icon'; export { default as KeyIcon } from './key-icon'; export { default as LayoutSidebarRightMixIcon } from './layout-sidebar-right-mix-icon'; export { default as LinkIcon } from './link-icon'; export { default as ListFillIcon } from './list-fill-icon'; +export { default as ListIcon } from './list-icon'; export { default as LoaderIcon } from './loader-icon'; export { default as Lock2Icon } from './lock-2-icon'; export { default as LockIcon } from './lock-icon'; export { default as LockOffIcon } from './lock-off-icon'; export { default as LockOpenIcon } from './lock-open-icon'; +export { default as LogoutIcon } from './logout-icon'; +export { default as Loop2Icon } from './loop-2-icon'; export { default as LoopIcon } from './loop-icon'; export { default as LoupeFillIcon } from './loupe-fill-icon'; export { default as LoupeViewIcon } from './loupe-view-icon'; @@ -147,6 +162,7 @@ export { default as MouseLeftIcon } from './mouse-left-icon'; export { default as MouseRightIcon } from './mouse-right-icon'; export { default as NoDuplicateIcon } from './no-duplicate-icon'; export { default as NoneSelectedIcon } from './none-selected-icon'; +export { default as OctagonIcon } from './octagon-icon'; export { default as PaletteFillIcon } from './palette-fill-icon'; export { default as PaletteIcon } from './palette-icon'; export { default as PauseFillIcon } from './pause-fill-icon'; @@ -168,6 +184,8 @@ export { default as RefreshIcon } from './refresh-icon'; export { default as ReloadAlertIcon } from './reload-alert-icon'; export { default as RotateClockwiseIcon } from './rotate-clockwise-icon'; export { default as RotateIcon } from './rotate-icon'; +export { default as RotateSquareLeftIcon } from './rotate-square-left-icon'; +export { default as RotateSquareRightIcon } from './rotate-square-right-icon'; export { default as ScissorsIcon } from './scissors-icon'; export { default as SearchIcon } from './search-icon'; export { default as ShareIcon } from './share-icon'; @@ -181,9 +199,12 @@ export { default as SortDescending2Icon } from './sort-descending-2-icon'; export { default as SortDescendingIcon } from './sort-descending-icon'; export { default as SortDescendingLettersIcon } from './sort-descending-letters-icon'; export { default as SortDescendingNumbersIcon } from './sort-descending-numbers-icon'; +export { default as SortDuplicateIcon } from './sort-duplicate-icon'; export { default as SparkleIcon } from './sparkle-icon'; +export { default as SprayCanIcon } from './spray-can-icon'; export { default as SprayIcon } from './spray-icon'; export { default as Spray2Icon } from './spray_2-icon'; +export { default as SquareIcon } from './square-icon'; export { default as StackDoubleIcon } from './stack-double-icon'; export { default as StackTripleIcon } from './stack-triple-icon'; export { default as Star0Icon } from './star - 0-icon'; @@ -197,10 +218,13 @@ export { default as StarFillOffIcon } from './star-fill-off-icon'; export { default as StarIcon } from './star-icon'; export { default as StarOffIcon } from './star-off-icon'; export { default as SuccessDiIcon } from './success-di-icon'; +export { default as SurveyModeIcon } from './survey-mode-icon'; export { default as ThumbDownIcon } from './thumb-down-icon'; export { default as ThumbUpIcon } from './thumb-up-icon'; +export { default as Trash2Icon } from './trash-2-icon'; +export { default as Trash2OffIcon } from './trash-2-off-icon'; export { default as TrashIcon } from './trash-icon'; -export { default as TrashOffIcon } from './trash-off-icon'; +export { default as TriangleIcon } from './triangle-icon'; export { default as UnlinkIcon } from './unlink-icon'; export { default as Upload2Icon } from './upload-2-icon'; export { default as UploadAccentIcon } from './upload-accent-icon'; diff --git a/src/Icons/info2-icon.tsx b/src/Icons/info2-icon.tsx new file mode 100644 index 00000000..47a7d158 --- /dev/null +++ b/src/Icons/info2-icon.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Info2Icon = createASIcon( + "Info2Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default Info2Icon; diff --git a/src/Icons/list-icon.tsx b/src/Icons/list-icon.tsx new file mode 100644 index 00000000..002fd4bb --- /dev/null +++ b/src/Icons/list-icon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const ListIcon = createASIcon( + "ListIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "mix", +); + +export default ListIcon; diff --git a/src/Icons/logout-icon.tsx b/src/Icons/logout-icon.tsx new file mode 100644 index 00000000..52aa1f3f --- /dev/null +++ b/src/Icons/logout-icon.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const LogoutIcon = createASIcon( + "LogoutIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default LogoutIcon; diff --git a/src/Icons/loop-2-icon.tsx b/src/Icons/loop-2-icon.tsx new file mode 100644 index 00000000..f31f8913 --- /dev/null +++ b/src/Icons/loop-2-icon.tsx @@ -0,0 +1,42 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Loop2Icon = createASIcon( + "Loop2Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + , + "outline", +); + +export default Loop2Icon; diff --git a/src/Icons/loop-icon.tsx b/src/Icons/loop-icon.tsx index 0700814b..fa170022 100644 --- a/src/Icons/loop-icon.tsx +++ b/src/Icons/loop-icon.tsx @@ -6,34 +6,32 @@ const LoopIcon = createASIcon( { xmlns: "http://www.w3.org/2000/svg", fill: "none", - viewBox: "0 0 35 35", + viewBox: "0 0 24 24", }, , "outline", diff --git a/src/Icons/octagon-icon.tsx b/src/Icons/octagon-icon.tsx new file mode 100644 index 00000000..2cf3fe4d --- /dev/null +++ b/src/Icons/octagon-icon.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const OctagonIcon = createASIcon( + "OctagonIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default OctagonIcon; diff --git a/src/Icons/rotate-square-left-icon.tsx b/src/Icons/rotate-square-left-icon.tsx new file mode 100644 index 00000000..64592df8 --- /dev/null +++ b/src/Icons/rotate-square-left-icon.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RotateSquareLeftIcon = createASIcon( + "RotateSquareLeftIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default RotateSquareLeftIcon; diff --git a/src/Icons/rotate-square-right-icon.tsx b/src/Icons/rotate-square-right-icon.tsx new file mode 100644 index 00000000..05b35bfe --- /dev/null +++ b/src/Icons/rotate-square-right-icon.tsx @@ -0,0 +1,20 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const RotateSquareRightIcon = createASIcon( + "RotateSquareRightIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 20 20", + }, + + + , + "outline", +); + +export default RotateSquareRightIcon; diff --git a/src/Icons/sort-duplicate-icon.tsx b/src/Icons/sort-duplicate-icon.tsx new file mode 100644 index 00000000..7dd49430 --- /dev/null +++ b/src/Icons/sort-duplicate-icon.tsx @@ -0,0 +1,38 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SortDuplicateIcon = createASIcon( + "SortDuplicateIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + , + "mix", +); + +export default SortDuplicateIcon; diff --git a/src/Icons/spray-can-icon.tsx b/src/Icons/spray-can-icon.tsx new file mode 100644 index 00000000..8eab71d5 --- /dev/null +++ b/src/Icons/spray-can-icon.tsx @@ -0,0 +1,22 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SprayCanIcon = createASIcon( + "SprayCanIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "outline", +); + +export default SprayCanIcon; diff --git a/src/Icons/square-icon.tsx b/src/Icons/square-icon.tsx new file mode 100644 index 00000000..4c64233c --- /dev/null +++ b/src/Icons/square-icon.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SquareIcon = createASIcon( + "SquareIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default SquareIcon; diff --git a/src/Icons/survey-mode-icon.tsx b/src/Icons/survey-mode-icon.tsx new file mode 100644 index 00000000..75e3c504 --- /dev/null +++ b/src/Icons/survey-mode-icon.tsx @@ -0,0 +1,25 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const SurveyModeIcon = createASIcon( + "SurveyModeIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 20 20", + }, + + + + + + + + , + "mix", +); + +export default SurveyModeIcon; diff --git a/src/Icons/trash-2-icon.tsx b/src/Icons/trash-2-icon.tsx new file mode 100644 index 00000000..0649b328 --- /dev/null +++ b/src/Icons/trash-2-icon.tsx @@ -0,0 +1,33 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Trash2Icon = createASIcon( + "Trash2Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + + + , + "outline", +); + +export default Trash2Icon; diff --git a/src/Icons/trash-off-icon.tsx b/src/Icons/trash-2-off-icon.tsx similarity index 89% rename from src/Icons/trash-off-icon.tsx rename to src/Icons/trash-2-off-icon.tsx index 9e1d3055..c5d24090 100644 --- a/src/Icons/trash-off-icon.tsx +++ b/src/Icons/trash-2-off-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const TrashOffIcon = createASIcon( - "TrashOffIcon", +const Trash2OffIcon = createASIcon( + "Trash2OffIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -32,4 +32,4 @@ const TrashOffIcon = createASIcon( "outline", ); -export default TrashOffIcon; +export default Trash2OffIcon; diff --git a/src/Icons/trash-icon.tsx b/src/Icons/trash-icon.tsx index dc3b82ae..256650ae 100644 --- a/src/Icons/trash-icon.tsx +++ b/src/Icons/trash-icon.tsx @@ -9,23 +9,30 @@ const TrashIcon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - - - - - + d="M3 6h18" + key="1aaur8" + /> + + + , "outline", ); diff --git a/src/Icons/triangle-icon.tsx b/src/Icons/triangle-icon.tsx new file mode 100644 index 00000000..4c5bdc75 --- /dev/null +++ b/src/Icons/triangle-icon.tsx @@ -0,0 +1,28 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const TriangleIcon = createASIcon( + "TriangleIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + , + "outline", +); + +export default TriangleIcon; diff --git a/src/stories/ArrowRightFillIcon.stories.tsx b/src/stories/ArrowRightFillIcon.stories.tsx new file mode 100644 index 00000000..3bdb3e0c --- /dev/null +++ b/src/stories/ArrowRightFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowRightFillIcon from '../icons/arrow-right-fill-icon' + + const meta: Meta = { + component: ArrowRightFillIcon, + title: 'fill/ArrowRightFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsMaximizeIcon.stories.tsx b/src/stories/ArrowsMaximizeIcon.stories.tsx new file mode 100644 index 00000000..2eadcd58 --- /dev/null +++ b/src/stories/ArrowsMaximizeIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsMaximizeIcon from '../icons/arrows-maximize-icon' + + const meta: Meta = { + component: ArrowsMaximizeIcon, + title: 'outline/ArrowsMaximizeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ArrowsMinimizeIcon.stories.tsx b/src/stories/ArrowsMinimizeIcon.stories.tsx new file mode 100644 index 00000000..4c36329f --- /dev/null +++ b/src/stories/ArrowsMinimizeIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ArrowsMinimizeIcon from '../icons/arrows-minimize-icon' + + const meta: Meta = { + component: ArrowsMinimizeIcon, + title: 'outline/ArrowsMinimizeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/TrashOffIcon.stories.tsx b/src/stories/CameraIcon.stories.tsx similarity index 88% rename from src/stories/TrashOffIcon.stories.tsx rename to src/stories/CameraIcon.stories.tsx index 08266554..dd5fb37f 100644 --- a/src/stories/TrashOffIcon.stories.tsx +++ b/src/stories/CameraIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import TrashOffIcon from '../icons/trash-off-icon' + import CameraIcon from '../icons/camera-icon' - const meta: Meta = { - component: TrashOffIcon, - title: 'outline/TrashOffIcon', + const meta: Meta = { + component: CameraIcon, + title: 'outline/CameraIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/CameraMinusIcon.stories.tsx b/src/stories/CameraMinusIcon.stories.tsx new file mode 100644 index 00000000..6fd77583 --- /dev/null +++ b/src/stories/CameraMinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CameraMinusIcon from '../icons/camera-minus-icon' + + const meta: Meta = { + component: CameraMinusIcon, + title: 'outline/CameraMinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CameraOffIcon.stories.tsx b/src/stories/CameraOffIcon.stories.tsx new file mode 100644 index 00000000..087badfc --- /dev/null +++ b/src/stories/CameraOffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CameraOffIcon from '../icons/camera-off-icon' + + const meta: Meta = { + component: CameraOffIcon, + title: 'outline/CameraOffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CameraPlusIcon.stories.tsx b/src/stories/CameraPlusIcon.stories.tsx new file mode 100644 index 00000000..fb50fbfe --- /dev/null +++ b/src/stories/CameraPlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CameraPlusIcon from '../icons/camera-plus-icon' + + const meta: Meta = { + component: CameraPlusIcon, + title: 'outline/CameraPlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CaptureIcon.stories.tsx b/src/stories/CaptureIcon.stories.tsx new file mode 100644 index 00000000..e39a8af0 --- /dev/null +++ b/src/stories/CaptureIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CaptureIcon from '../icons/capture-icon' + + const meta: Meta = { + component: CaptureIcon, + title: 'outline/CaptureIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Copy2Icon.stories.tsx b/src/stories/Copy2Icon.stories.tsx new file mode 100644 index 00000000..f7f939e3 --- /dev/null +++ b/src/stories/Copy2Icon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Copy2Icon from '../icons/copy-2-icon' + + const meta: Meta = { + component: Copy2Icon, + title: 'fill/Copy2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/HexagonIcon.stories.tsx b/src/stories/HexagonIcon.stories.tsx new file mode 100644 index 00000000..43becf7f --- /dev/null +++ b/src/stories/HexagonIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import HexagonIcon from '../icons/hexagon-icon' + + const meta: Meta = { + component: HexagonIcon, + title: 'outline/HexagonIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Info2Icon.stories.tsx b/src/stories/Info2Icon.stories.tsx new file mode 100644 index 00000000..f672ded4 --- /dev/null +++ b/src/stories/Info2Icon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Info2Icon from '../icons/info2-icon' + + const meta: Meta = { + component: Info2Icon, + title: 'fill/Info2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/ListIcon.stories.tsx b/src/stories/ListIcon.stories.tsx new file mode 100644 index 00000000..7cb3d368 --- /dev/null +++ b/src/stories/ListIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import ListIcon from '../icons/list-icon' + + const meta: Meta = { + component: ListIcon, + title: 'mix/ListIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/LogoutIcon.stories.tsx b/src/stories/LogoutIcon.stories.tsx new file mode 100644 index 00000000..f916a73d --- /dev/null +++ b/src/stories/LogoutIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import LogoutIcon from '../icons/logout-icon' + + const meta: Meta = { + component: LogoutIcon, + title: 'outline/LogoutIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Loop2Icon.stories.tsx b/src/stories/Loop2Icon.stories.tsx new file mode 100644 index 00000000..6d62cc4e --- /dev/null +++ b/src/stories/Loop2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Loop2Icon from '../icons/loop-2-icon' + + const meta: Meta = { + component: Loop2Icon, + title: 'outline/Loop2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MediaIcon.stories.tsx b/src/stories/MediaIcon.stories.tsx new file mode 100644 index 00000000..994a3e10 --- /dev/null +++ b/src/stories/MediaIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MediaIcon from '../icons/Media-icon' + + const meta: Meta = { + component: MediaIcon, + title: 'outline/MediaIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/OctagonIcon.stories.tsx b/src/stories/OctagonIcon.stories.tsx new file mode 100644 index 00000000..9b72cbbe --- /dev/null +++ b/src/stories/OctagonIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import OctagonIcon from '../icons/octagon-icon' + + const meta: Meta = { + component: OctagonIcon, + title: 'outline/OctagonIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RotateSquareLeftIcon.stories.tsx b/src/stories/RotateSquareLeftIcon.stories.tsx new file mode 100644 index 00000000..475a5feb --- /dev/null +++ b/src/stories/RotateSquareLeftIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateSquareLeftIcon from '../icons/rotate-square-left-icon' + + const meta: Meta = { + component: RotateSquareLeftIcon, + title: 'outline/RotateSquareLeftIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/RotateSquareRightIcon.stories.tsx b/src/stories/RotateSquareRightIcon.stories.tsx new file mode 100644 index 00000000..97941d54 --- /dev/null +++ b/src/stories/RotateSquareRightIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import RotateSquareRightIcon from '../icons/rotate-square-right-icon' + + const meta: Meta = { + component: RotateSquareRightIcon, + title: 'outline/RotateSquareRightIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SortDuplicateIcon.stories.tsx b/src/stories/SortDuplicateIcon.stories.tsx new file mode 100644 index 00000000..02b9779f --- /dev/null +++ b/src/stories/SortDuplicateIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SortDuplicateIcon from '../icons/sort-duplicate-icon' + + const meta: Meta = { + component: SortDuplicateIcon, + title: 'mix/SortDuplicateIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SprayCanIcon.stories.tsx b/src/stories/SprayCanIcon.stories.tsx new file mode 100644 index 00000000..2dbae815 --- /dev/null +++ b/src/stories/SprayCanIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SprayCanIcon from '../icons/spray-can-icon' + + const meta: Meta = { + component: SprayCanIcon, + title: 'outline/SprayCanIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SquareIcon.stories.tsx b/src/stories/SquareIcon.stories.tsx new file mode 100644 index 00000000..da36b612 --- /dev/null +++ b/src/stories/SquareIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SquareIcon from '../icons/square-icon' + + const meta: Meta = { + component: SquareIcon, + title: 'outline/SquareIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/SurveyModeIcon.stories.tsx b/src/stories/SurveyModeIcon.stories.tsx new file mode 100644 index 00000000..4bcb195a --- /dev/null +++ b/src/stories/SurveyModeIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import SurveyModeIcon from '../icons/survey-mode-icon' + + const meta: Meta = { + component: SurveyModeIcon, + title: 'mix/SurveyModeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Trash2Icon.stories.tsx b/src/stories/Trash2Icon.stories.tsx new file mode 100644 index 00000000..fd1c437e --- /dev/null +++ b/src/stories/Trash2Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Trash2Icon from '../icons/trash-2-icon' + + const meta: Meta = { + component: Trash2Icon, + title: 'outline/Trash2Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Trash2OffIcon.stories.tsx b/src/stories/Trash2OffIcon.stories.tsx new file mode 100644 index 00000000..7b145eec --- /dev/null +++ b/src/stories/Trash2OffIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Trash2OffIcon from '../icons/trash-2-off-icon' + + const meta: Meta = { + component: Trash2OffIcon, + title: 'outline/Trash2OffIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/TriangleIcon.stories.tsx b/src/stories/TriangleIcon.stories.tsx new file mode 100644 index 00000000..84497dc8 --- /dev/null +++ b/src/stories/TriangleIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TriangleIcon from '../icons/triangle-icon' + + const meta: Meta = { + component: TriangleIcon, + title: 'outline/TriangleIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 53f4f3cf..b98d3d70 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -570,10 +570,18 @@ video { height: 2.5rem; } +.h-5 { + height: 1.25rem; +} + .w-10 { width: 2.5rem; } +.w-5 { + width: 1.25rem; +} + .w-7 { width: 1.75rem; } @@ -629,10 +637,6 @@ video { background-color: transparent; } -.stroke-green-500 { - stroke: #22c55e; -} - .stroke-1 { stroke-width: 1; } @@ -674,11 +678,6 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } -.text-green-500 { - --tw-text-opacity: 1; - color: rgb(34 197 94 / var(--tw-text-opacity)); -} - .outline { outline-style: solid; } From 8a4085f78dfc43221dfcb5f40a249def364091b7 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 6 Jun 2024 00:00:47 +0530 Subject: [PATCH 31/34] update: home icon --- icons-metadata/folder-fill-icon.json | 9 ++- icons-metadata/maximize-icon.json | 9 +++ icons-metadata/mouse-left-icon.json | 4 +- icons-metadata/mouse-right-icon.json | 4 +- icons-optimized/alert-triangle-icon.svg | 15 ++-- icons-optimized/folder-fill-icon.svg | 32 +++------ icons-optimized/home-2-icon.svg | 30 ++++---- icons-optimized/maximize-icon.svg | 22 ++++++ icons-optimized/mouse-left-icon.svg | 3 +- icons-optimized/mouse-right-icon.svg | 3 +- icons-optimized/sort-duplicate-icon.svg | 8 +-- icons-optimized/square-icon.svg | 17 ++--- icons-original/mix/folder-fill.svg | 7 -- .../{outline => mix}/mouse-left.svg | 0 .../{outline => mix}/mouse-right.svg | 0 icons-original/mix/sort-duplicate.svg | 8 +-- icons-original/no-change/folder-fill.svg | 16 ----- icons-original/outline/alert-triangle.svg | 2 - icons-original/outline/home-2.svg | 7 -- icons-original/outline/maximize.svg | 11 +++ icons-original/outline/square.svg | 2 - src/Icons/alert-triangle-icon.tsx | 22 +++--- src/Icons/folder-fill-icon.tsx | 43 ++++-------- src/Icons/home-2-icon.tsx | 54 +++++++------- src/Icons/index.ts | 1 + src/Icons/maximize-icon.tsx | 40 +++++++++++ src/Icons/mouse-left-icon.tsx | 9 +-- src/Icons/mouse-right-icon.tsx | 9 +-- src/Icons/sort-duplicate-icon.tsx | 14 ++-- src/Icons/square-icon.tsx | 18 ++--- src/components/IconBackground.tsx | 5 +- src/components/IconBorder.tsx | 5 +- src/stories/FolderFillIcon.stories.tsx | 14 ++-- src/stories/MaximizeIcon.stories.tsx | 70 +++++++++++++++++++ src/stories/MouseLeftIcon.stories.tsx | 15 ++-- src/stories/MouseRightIcon.stories.tsx | 15 ++-- 36 files changed, 321 insertions(+), 222 deletions(-) create mode 100644 icons-metadata/maximize-icon.json create mode 100644 icons-optimized/maximize-icon.svg rename icons-original/{outline => mix}/mouse-left.svg (100%) rename icons-original/{outline => mix}/mouse-right.svg (100%) delete mode 100644 icons-original/no-change/folder-fill.svg create mode 100644 icons-original/outline/maximize.svg create mode 100644 src/Icons/maximize-icon.tsx create mode 100644 src/stories/MaximizeIcon.stories.tsx diff --git a/icons-metadata/folder-fill-icon.json b/icons-metadata/folder-fill-icon.json index 89a9d203..463c3732 100644 --- a/icons-metadata/folder-fill-icon.json +++ b/icons-metadata/folder-fill-icon.json @@ -1,4 +1,9 @@ { - "icon_type": "no-change", - "name": "folder-fill-icon" + "icon_type": "mix", + "name": "folder-fill-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } } \ No newline at end of file diff --git a/icons-metadata/maximize-icon.json b/icons-metadata/maximize-icon.json new file mode 100644 index 00000000..1ac51206 --- /dev/null +++ b/icons-metadata/maximize-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "maximize-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/mouse-left-icon.json b/icons-metadata/mouse-left-icon.json index c5afc6d0..9752462a 100644 --- a/icons-metadata/mouse-left-icon.json +++ b/icons-metadata/mouse-left-icon.json @@ -1,9 +1,9 @@ { - "icon_type": "outline", + "icon_type": "mix", "name": "mouse-left-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, - "fill": "none" + "fill": "#555555" } } \ No newline at end of file diff --git a/icons-metadata/mouse-right-icon.json b/icons-metadata/mouse-right-icon.json index 946b246f..e134e2a9 100644 --- a/icons-metadata/mouse-right-icon.json +++ b/icons-metadata/mouse-right-icon.json @@ -1,9 +1,9 @@ { - "icon_type": "outline", + "icon_type": "mix", "name": "mouse-right-icon", "svg_process_option": { "stroke": "#555555", "stroke-width": 1.5, - "fill": "none" + "fill": "#555555" } } \ No newline at end of file diff --git a/icons-optimized/alert-triangle-icon.svg b/icons-optimized/alert-triangle-icon.svg index 80fb824f..5ae019ae 100644 --- a/icons-optimized/alert-triangle-icon.svg +++ b/icons-optimized/alert-triangle-icon.svg @@ -1,11 +1,8 @@ - - - - - - - - - + + diff --git a/icons-optimized/folder-fill-icon.svg b/icons-optimized/folder-fill-icon.svg index ceee5ebf..72c08db7 100644 --- a/icons-optimized/folder-fill-icon.svg +++ b/icons-optimized/folder-fill-icon.svg @@ -1,24 +1,12 @@ - - - - - - - - - - - - - - + + diff --git a/icons-optimized/home-2-icon.svg b/icons-optimized/home-2-icon.svg index b8075582..e66b4dcf 100644 --- a/icons-optimized/home-2-icon.svg +++ b/icons-optimized/home-2-icon.svg @@ -1,19 +1,15 @@ - - - - - - - - - - - - - - - - - + + + + + diff --git a/icons-optimized/maximize-icon.svg b/icons-optimized/maximize-icon.svg new file mode 100644 index 00000000..fe518bea --- /dev/null +++ b/icons-optimized/maximize-icon.svg @@ -0,0 +1,22 @@ + + + + + + diff --git a/icons-optimized/mouse-left-icon.svg b/icons-optimized/mouse-left-icon.svg index 662f586b..a2716e1c 100644 --- a/icons-optimized/mouse-left-icon.svg +++ b/icons-optimized/mouse-left-icon.svg @@ -1,11 +1,12 @@ diff --git a/icons-optimized/mouse-right-icon.svg b/icons-optimized/mouse-right-icon.svg index cf682b98..80ae4bed 100644 --- a/icons-optimized/mouse-right-icon.svg +++ b/icons-optimized/mouse-right-icon.svg @@ -1,11 +1,12 @@ diff --git a/icons-optimized/sort-duplicate-icon.svg b/icons-optimized/sort-duplicate-icon.svg index 12f2686c..4184eb99 100644 --- a/icons-optimized/sort-duplicate-icon.svg +++ b/icons-optimized/sort-duplicate-icon.svg @@ -1,21 +1,21 @@ - + diff --git a/icons-optimized/square-icon.svg b/icons-optimized/square-icon.svg index 173498ee..15927616 100644 --- a/icons-optimized/square-icon.svg +++ b/icons-optimized/square-icon.svg @@ -1,14 +1,7 @@ - - - - - - - - + diff --git a/icons-original/mix/folder-fill.svg b/icons-original/mix/folder-fill.svg index b6d9d7f8..efa60d8e 100644 --- a/icons-original/mix/folder-fill.svg +++ b/icons-original/mix/folder-fill.svg @@ -1,13 +1,6 @@ - - - - - - - diff --git a/icons-original/outline/mouse-left.svg b/icons-original/mix/mouse-left.svg similarity index 100% rename from icons-original/outline/mouse-left.svg rename to icons-original/mix/mouse-left.svg diff --git a/icons-original/outline/mouse-right.svg b/icons-original/mix/mouse-right.svg similarity index 100% rename from icons-original/outline/mouse-right.svg rename to icons-original/mix/mouse-right.svg diff --git a/icons-original/mix/sort-duplicate.svg b/icons-original/mix/sort-duplicate.svg index 6e2dace7..4da9ff67 100644 --- a/icons-original/mix/sort-duplicate.svg +++ b/icons-original/mix/sort-duplicate.svg @@ -1,5 +1,5 @@ - - - - + + + + diff --git a/icons-original/no-change/folder-fill.svg b/icons-original/no-change/folder-fill.svg deleted file mode 100644 index f71f05ec..00000000 --- a/icons-original/no-change/folder-fill.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/icons-original/outline/alert-triangle.svg b/icons-original/outline/alert-triangle.svg index 8b084f44..5e15de07 100644 --- a/icons-original/outline/alert-triangle.svg +++ b/icons-original/outline/alert-triangle.svg @@ -1,8 +1,6 @@ - - diff --git a/icons-original/outline/home-2.svg b/icons-original/outline/home-2.svg index c312e5d7..96ff6fc5 100644 --- a/icons-original/outline/home-2.svg +++ b/icons-original/outline/home-2.svg @@ -1,16 +1,9 @@ - - - - - - - diff --git a/icons-original/outline/maximize.svg b/icons-original/outline/maximize.svg new file mode 100644 index 00000000..585f003d --- /dev/null +++ b/icons-original/outline/maximize.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/icons-original/outline/square.svg b/icons-original/outline/square.svg index 330b28c9..4501c5ce 100644 --- a/icons-original/outline/square.svg +++ b/icons-original/outline/square.svg @@ -1,7 +1,5 @@ - - diff --git a/src/Icons/alert-triangle-icon.tsx b/src/Icons/alert-triangle-icon.tsx index b3758171..a0f0c991 100644 --- a/src/Icons/alert-triangle-icon.tsx +++ b/src/Icons/alert-triangle-icon.tsx @@ -9,20 +9,18 @@ const AlertTriangleIcon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - - + d="M5 19h14a2 2 0 0 0 1.84-2.75L13.74 4a2 2 0 0 0-3.5 0l-7.1 12.25A2 2 0 0 0 4.89 19" + key="18ejg2" + /> + , "outline", ); diff --git a/src/Icons/folder-fill-icon.tsx b/src/Icons/folder-fill-icon.tsx index 172835a2..f1f0f61d 100644 --- a/src/Icons/folder-fill-icon.tsx +++ b/src/Icons/folder-fill-icon.tsx @@ -9,37 +9,20 @@ const FolderFillIcon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - - - - - - - + + , - "no-change", + "mix", ); export default FolderFillIcon; diff --git a/src/Icons/home-2-icon.tsx b/src/Icons/home-2-icon.tsx index eae64702..7464873d 100644 --- a/src/Icons/home-2-icon.tsx +++ b/src/Icons/home-2-icon.tsx @@ -9,30 +9,36 @@ const Home2Icon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - - - - - - - - - - + + + + + , "outline", ); diff --git a/src/Icons/index.ts b/src/Icons/index.ts index 1e10f7ec..2ac4c997 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -148,6 +148,7 @@ export { default as MailIcon } from './mail-icon'; export { default as Map2Icon } from './map-2-icon'; export { default as MapPinIcon } from './map-pin-icon'; export { default as MapPinOffIcon } from './map-pin-off-icon'; +export { default as MaximizeIcon } from './maximize-icon'; export { default as Menu2Icon } from './menu-2-icon'; export { default as MenuIcon } from './menu-icon'; export { default as MinusIcon } from './minus-icon'; diff --git a/src/Icons/maximize-icon.tsx b/src/Icons/maximize-icon.tsx new file mode 100644 index 00000000..3f26ffa1 --- /dev/null +++ b/src/Icons/maximize-icon.tsx @@ -0,0 +1,40 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const MaximizeIcon = createASIcon( + "MaximizeIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + , + "outline", +); + +export default MaximizeIcon; diff --git a/src/Icons/mouse-left-icon.tsx b/src/Icons/mouse-left-icon.tsx index b5a40619..7926dec2 100644 --- a/src/Icons/mouse-left-icon.tsx +++ b/src/Icons/mouse-left-icon.tsx @@ -10,18 +10,19 @@ const MouseLeftIcon = createASIcon( }, , - "outline", + "mix", ); export default MouseLeftIcon; diff --git a/src/Icons/mouse-right-icon.tsx b/src/Icons/mouse-right-icon.tsx index abed0ada..f591413a 100644 --- a/src/Icons/mouse-right-icon.tsx +++ b/src/Icons/mouse-right-icon.tsx @@ -10,18 +10,19 @@ const MouseRightIcon = createASIcon( }, , - "outline", + "mix", ); export default MouseRightIcon; diff --git a/src/Icons/sort-duplicate-icon.tsx b/src/Icons/sort-duplicate-icon.tsx index 7dd49430..63de5f8d 100644 --- a/src/Icons/sort-duplicate-icon.tsx +++ b/src/Icons/sort-duplicate-icon.tsx @@ -6,7 +6,7 @@ const SortDuplicateIcon = createASIcon( { xmlns: "http://www.w3.org/2000/svg", fill: "none", - viewBox: "0 0 24 24", + viewBox: "0 0 48 48", }, , "mix", diff --git a/src/Icons/square-icon.tsx b/src/Icons/square-icon.tsx index 4c64233c..1bfbf1e7 100644 --- a/src/Icons/square-icon.tsx +++ b/src/Icons/square-icon.tsx @@ -9,18 +9,12 @@ const SquareIcon = createASIcon( viewBox: "0 0 24 24", }, - - - - - - - - + , "outline", ); diff --git a/src/components/IconBackground.tsx b/src/components/IconBackground.tsx index 05ce9a49..172674f6 100644 --- a/src/components/IconBackground.tsx +++ b/src/components/IconBackground.tsx @@ -1,14 +1,14 @@ import React from 'react' import { cn } from '../utils/cn' -type IconBackgroundProps = { +interface IconBackgroundProps extends React.HTMLAttributes { children: React.ReactNode withBorder?: boolean className?: string } const IconBackground = (props: IconBackgroundProps) => { - const { children, withBorder = false, className } = props + const { children, withBorder = false, className, ...rest } = props return (
{ 'flex items-center justify-center p-2 group box-border w-10 h-10 border-green-500 rounded-full bg-[#555555]', withBorder && 'border-2 ', className, + { ...rest }, )} > {children} diff --git a/src/components/IconBorder.tsx b/src/components/IconBorder.tsx index 94c57209..d78e883c 100644 --- a/src/components/IconBorder.tsx +++ b/src/components/IconBorder.tsx @@ -1,13 +1,13 @@ import React from 'react' import { cn } from '../utils/cn' -type IconBorderProps = { +interface IconBorderProps extends React.HTMLAttributes { children: React.ReactNode className?: string } const IconBorder = (props: IconBorderProps) => { - const { children, className } = props + const { children, className, ...rest } = props return (
{ 'flex items-center border-2 p-2 justify-center group box-border w-10 h-10 border-[#555555] rounded-full bg-transparent', className, )} + {...rest} > {children}
diff --git a/src/stories/FolderFillIcon.stories.tsx b/src/stories/FolderFillIcon.stories.tsx index a81f9d7f..cef716ed 100644 --- a/src/stories/FolderFillIcon.stories.tsx +++ b/src/stories/FolderFillIcon.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: FolderFillIcon, - title: 'no-change/FolderFillIcon', + title: 'mix/FolderFillIcon', decorators: [ (Story) => (
@@ -41,14 +41,14 @@ import type { Meta, StoryObj } from '@storybook/react' } + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + - export const AccentColor: Story = { - args: { - accentColor: 'red', - }, - } - export const inActive: Story = { args: { diff --git a/src/stories/MaximizeIcon.stories.tsx b/src/stories/MaximizeIcon.stories.tsx new file mode 100644 index 00000000..e0ae9348 --- /dev/null +++ b/src/stories/MaximizeIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import MaximizeIcon from '../icons/maximize-icon' + + const meta: Meta = { + component: MaximizeIcon, + title: 'outline/MaximizeIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MouseLeftIcon.stories.tsx b/src/stories/MouseLeftIcon.stories.tsx index 15309c7c..8af8693c 100644 --- a/src/stories/MouseLeftIcon.stories.tsx +++ b/src/stories/MouseLeftIcon.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: MouseLeftIcon, - title: 'outline/MouseLeftIcon', + title: 'mix/MouseLeftIcon', decorators: [ (Story) => (
@@ -33,13 +33,20 @@ import type { Meta, StoryObj } from '@storybook/react' export const Default: Story = {} - + export const Color: Story = { args: { - color: 'red', - }, + className: 'text-red-500', + }, } + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + diff --git a/src/stories/MouseRightIcon.stories.tsx b/src/stories/MouseRightIcon.stories.tsx index 8e49f188..91981fea 100644 --- a/src/stories/MouseRightIcon.stories.tsx +++ b/src/stories/MouseRightIcon.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: MouseRightIcon, - title: 'outline/MouseRightIcon', + title: 'mix/MouseRightIcon', decorators: [ (Story) => (
@@ -33,13 +33,20 @@ import type { Meta, StoryObj } from '@storybook/react' export const Default: Story = {} - + export const Color: Story = { args: { - color: 'red', - }, + className: 'text-red-500', + }, } + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + From dcbdc3591a8feb6d561020cf94faa5e306f35d50 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 6 Jun 2024 12:23:09 +0530 Subject: [PATCH 32/34] add: stack fill icons --- icons-metadata/circle-close-icon.json | 9 +++ icons-metadata/circle-minus-icon.json | 9 +++ icons-metadata/circle-plus-icon.json | 9 +++ ...-2-fill-icon.json => crown-fill-icon.json} | 2 +- icons-metadata/layout-sidebar-right-icon.json | 4 + .../layout-sidebar-right-mix-icon.json | 4 - icons-metadata/twitter-x-icon.json | 7 ++ icons-optimized/circle-close-icon.svg | 11 +++ icons-optimized/circle-minus-icon.svg | 11 +++ icons-optimized/circle-plus-icon.svg | 12 +++ ...wn-2-fill-icon.svg => crown-fill-icon.svg} | 0 ...icon.svg => layout-sidebar-right-icon.svg} | 5 +- icons-optimized/scissors-icon.svg | 15 +++- icons-optimized/twitter-x-icon.svg | 6 ++ .../fill/{crown-2-fill.svg => crown-fill.svg} | 0 icons-original/fill/scissors.svg | 14 ---- icons-original/fill/twitter-x.svg | 3 + icons-original/mix/stack-double-fill.svg | 6 ++ icons-original/mix/stack-triple-fill.svg | 7 ++ ...right-mix.svg => layout-sidebar-right.svg} | 3 - icons-original/no-change/recull.svg | 14 ++-- icons-original/no-change/scissors.svg | 18 ++--- icons-original/outline/circle-close.svg | 11 +++ icons-original/outline/circle-minus.svg | 11 +++ icons-original/outline/circle-plus.svg | 12 +++ src/Icons/circle-close-icon.tsx | 30 ++++++++ src/Icons/circle-minus-icon.tsx | 30 ++++++++ src/Icons/circle-plus-icon.tsx | 31 ++++++++ ...wn-2-fill-icon.tsx => crown-fill-icon.tsx} | 6 +- src/Icons/index.ts | 8 +- ...icon.tsx => layout-sidebar-right-icon.tsx} | 19 +---- src/Icons/scissors-icon.tsx | 25 +++--- src/Icons/twitter-x-icon.tsx | 21 +++++ src/stories/CircleCloseIcon.stories.tsx | 70 +++++++++++++++++ src/stories/CircleMinusIcon.stories.tsx | 70 +++++++++++++++++ src/stories/CirclePlusIcon.stories.tsx | 70 +++++++++++++++++ ....stories.tsx => CrownFillIcon.stories.tsx} | 10 +-- ...tsx => LayoutSidebarRightIcon.stories.tsx} | 10 +-- src/stories/TwitterXIcon.stories.tsx | 77 +++++++++++++++++++ 39 files changed, 592 insertions(+), 88 deletions(-) create mode 100644 icons-metadata/circle-close-icon.json create mode 100644 icons-metadata/circle-minus-icon.json create mode 100644 icons-metadata/circle-plus-icon.json rename icons-metadata/{crown-2-fill-icon.json => crown-fill-icon.json} (71%) create mode 100644 icons-metadata/layout-sidebar-right-icon.json delete mode 100644 icons-metadata/layout-sidebar-right-mix-icon.json create mode 100644 icons-metadata/twitter-x-icon.json create mode 100644 icons-optimized/circle-close-icon.svg create mode 100644 icons-optimized/circle-minus-icon.svg create mode 100644 icons-optimized/circle-plus-icon.svg rename icons-optimized/{crown-2-fill-icon.svg => crown-fill-icon.svg} (100%) rename icons-optimized/{layout-sidebar-right-mix-icon.svg => layout-sidebar-right-icon.svg} (73%) create mode 100644 icons-optimized/twitter-x-icon.svg rename icons-original/fill/{crown-2-fill.svg => crown-fill.svg} (100%) delete mode 100644 icons-original/fill/scissors.svg create mode 100644 icons-original/fill/twitter-x.svg create mode 100644 icons-original/mix/stack-double-fill.svg create mode 100644 icons-original/mix/stack-triple-fill.svg rename icons-original/no-change/{layout-sidebar-right-mix.svg => layout-sidebar-right.svg} (82%) create mode 100644 icons-original/outline/circle-close.svg create mode 100644 icons-original/outline/circle-minus.svg create mode 100644 icons-original/outline/circle-plus.svg create mode 100644 src/Icons/circle-close-icon.tsx create mode 100644 src/Icons/circle-minus-icon.tsx create mode 100644 src/Icons/circle-plus-icon.tsx rename src/Icons/{crown-2-fill-icon.tsx => crown-fill-icon.tsx} (92%) rename src/Icons/{layout-sidebar-right-mix-icon.tsx => layout-sidebar-right-icon.tsx} (62%) create mode 100644 src/Icons/twitter-x-icon.tsx create mode 100644 src/stories/CircleCloseIcon.stories.tsx create mode 100644 src/stories/CircleMinusIcon.stories.tsx create mode 100644 src/stories/CirclePlusIcon.stories.tsx rename src/stories/{Crown2FillIcon.stories.tsx => CrownFillIcon.stories.tsx} (88%) rename src/stories/{LayoutSidebarRightMixIcon.stories.tsx => LayoutSidebarRightIcon.stories.tsx} (85%) create mode 100644 src/stories/TwitterXIcon.stories.tsx diff --git a/icons-metadata/circle-close-icon.json b/icons-metadata/circle-close-icon.json new file mode 100644 index 00000000..5df92a70 --- /dev/null +++ b/icons-metadata/circle-close-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-close-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-minus-icon.json b/icons-metadata/circle-minus-icon.json new file mode 100644 index 00000000..ec1e3f73 --- /dev/null +++ b/icons-metadata/circle-minus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-minus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/circle-plus-icon.json b/icons-metadata/circle-plus-icon.json new file mode 100644 index 00000000..6d831f31 --- /dev/null +++ b/icons-metadata/circle-plus-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "circle-plus-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/crown-2-fill-icon.json b/icons-metadata/crown-fill-icon.json similarity index 71% rename from icons-metadata/crown-2-fill-icon.json rename to icons-metadata/crown-fill-icon.json index bb20f98e..4f17ecf2 100644 --- a/icons-metadata/crown-2-fill-icon.json +++ b/icons-metadata/crown-fill-icon.json @@ -1,6 +1,6 @@ { "icon_type": "fill", - "name": "crown-2-fill-icon", + "name": "crown-fill-icon", "svg_process_option": { "fill": "#555555" } diff --git a/icons-metadata/layout-sidebar-right-icon.json b/icons-metadata/layout-sidebar-right-icon.json new file mode 100644 index 00000000..0fbfc466 --- /dev/null +++ b/icons-metadata/layout-sidebar-right-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "no-change", + "name": "layout-sidebar-right-icon" +} \ No newline at end of file diff --git a/icons-metadata/layout-sidebar-right-mix-icon.json b/icons-metadata/layout-sidebar-right-mix-icon.json deleted file mode 100644 index 83f40fe7..00000000 --- a/icons-metadata/layout-sidebar-right-mix-icon.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "no-change", - "name": "layout-sidebar-right-mix-icon" -} \ No newline at end of file diff --git a/icons-metadata/twitter-x-icon.json b/icons-metadata/twitter-x-icon.json new file mode 100644 index 00000000..c2224639 --- /dev/null +++ b/icons-metadata/twitter-x-icon.json @@ -0,0 +1,7 @@ +{ + "icon_type": "fill", + "name": "twitter-x-icon", + "svg_process_option": { + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/circle-close-icon.svg b/icons-optimized/circle-close-icon.svg new file mode 100644 index 00000000..59cc4b1c --- /dev/null +++ b/icons-optimized/circle-close-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-minus-icon.svg b/icons-optimized/circle-minus-icon.svg new file mode 100644 index 00000000..f74ae69b --- /dev/null +++ b/icons-optimized/circle-minus-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-optimized/circle-plus-icon.svg b/icons-optimized/circle-plus-icon.svg new file mode 100644 index 00000000..d67a8c22 --- /dev/null +++ b/icons-optimized/circle-plus-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons-optimized/crown-2-fill-icon.svg b/icons-optimized/crown-fill-icon.svg similarity index 100% rename from icons-optimized/crown-2-fill-icon.svg rename to icons-optimized/crown-fill-icon.svg diff --git a/icons-optimized/layout-sidebar-right-mix-icon.svg b/icons-optimized/layout-sidebar-right-icon.svg similarity index 73% rename from icons-optimized/layout-sidebar-right-mix-icon.svg rename to icons-optimized/layout-sidebar-right-icon.svg index 46c9197b..64163c5e 100644 --- a/icons-optimized/layout-sidebar-right-mix-icon.svg +++ b/icons-optimized/layout-sidebar-right-icon.svg @@ -1,8 +1,5 @@ - - - - + - + + - + diff --git a/icons-optimized/twitter-x-icon.svg b/icons-optimized/twitter-x-icon.svg new file mode 100644 index 00000000..7962b01b --- /dev/null +++ b/icons-optimized/twitter-x-icon.svg @@ -0,0 +1,6 @@ + + + diff --git a/icons-original/fill/crown-2-fill.svg b/icons-original/fill/crown-fill.svg similarity index 100% rename from icons-original/fill/crown-2-fill.svg rename to icons-original/fill/crown-fill.svg diff --git a/icons-original/fill/scissors.svg b/icons-original/fill/scissors.svg deleted file mode 100644 index 8c684acd..00000000 --- a/icons-original/fill/scissors.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/icons-original/fill/twitter-x.svg b/icons-original/fill/twitter-x.svg new file mode 100644 index 00000000..62cd30aa --- /dev/null +++ b/icons-original/fill/twitter-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons-original/mix/stack-double-fill.svg b/icons-original/mix/stack-double-fill.svg new file mode 100644 index 00000000..364ac789 --- /dev/null +++ b/icons-original/mix/stack-double-fill.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-original/mix/stack-triple-fill.svg b/icons-original/mix/stack-triple-fill.svg new file mode 100644 index 00000000..20e0fed3 --- /dev/null +++ b/icons-original/mix/stack-triple-fill.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons-original/no-change/layout-sidebar-right-mix.svg b/icons-original/no-change/layout-sidebar-right.svg similarity index 82% rename from icons-original/no-change/layout-sidebar-right-mix.svg rename to icons-original/no-change/layout-sidebar-right.svg index fe07984f..7a1a70df 100644 --- a/icons-original/no-change/layout-sidebar-right-mix.svg +++ b/icons-original/no-change/layout-sidebar-right.svg @@ -1,7 +1,4 @@ - - - diff --git a/icons-original/no-change/recull.svg b/icons-original/no-change/recull.svg index baec406e..0880684f 100644 --- a/icons-original/no-change/recull.svg +++ b/icons-original/no-change/recull.svg @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/icons-original/no-change/scissors.svg b/icons-original/no-change/scissors.svg index 9a3e4565..d6a6b84e 100644 --- a/icons-original/no-change/scissors.svg +++ b/icons-original/no-change/scissors.svg @@ -1,14 +1,8 @@ - - - + + + - - + + - + \ No newline at end of file diff --git a/icons-original/outline/circle-close.svg b/icons-original/outline/circle-close.svg new file mode 100644 index 00000000..1a9f87ff --- /dev/null +++ b/icons-original/outline/circle-close.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/circle-minus.svg b/icons-original/outline/circle-minus.svg new file mode 100644 index 00000000..e6ac470b --- /dev/null +++ b/icons-original/outline/circle-minus.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons-original/outline/circle-plus.svg b/icons-original/outline/circle-plus.svg new file mode 100644 index 00000000..83d442c0 --- /dev/null +++ b/icons-original/outline/circle-plus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/Icons/circle-close-icon.tsx b/src/Icons/circle-close-icon.tsx new file mode 100644 index 00000000..04324ee6 --- /dev/null +++ b/src/Icons/circle-close-icon.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleCloseIcon = createASIcon( + "CircleCloseIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default CircleCloseIcon; diff --git a/src/Icons/circle-minus-icon.tsx b/src/Icons/circle-minus-icon.tsx new file mode 100644 index 00000000..84d976cc --- /dev/null +++ b/src/Icons/circle-minus-icon.tsx @@ -0,0 +1,30 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CircleMinusIcon = createASIcon( + "CircleMinusIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + , + "outline", +); + +export default CircleMinusIcon; diff --git a/src/Icons/circle-plus-icon.tsx b/src/Icons/circle-plus-icon.tsx new file mode 100644 index 00000000..20c09181 --- /dev/null +++ b/src/Icons/circle-plus-icon.tsx @@ -0,0 +1,31 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const CirclePlusIcon = createASIcon( + "CirclePlusIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + + + + + + , + "outline", +); + +export default CirclePlusIcon; diff --git a/src/Icons/crown-2-fill-icon.tsx b/src/Icons/crown-fill-icon.tsx similarity index 92% rename from src/Icons/crown-2-fill-icon.tsx rename to src/Icons/crown-fill-icon.tsx index 1235110c..a24348a9 100644 --- a/src/Icons/crown-2-fill-icon.tsx +++ b/src/Icons/crown-fill-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const Crown2FillIcon = createASIcon( - "Crown2FillIcon", +const CrownFillIcon = createASIcon( + "CrownFillIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", @@ -25,4 +25,4 @@ const Crown2FillIcon = createASIcon( "fill", ); -export default Crown2FillIcon; +export default CrownFillIcon; diff --git a/src/Icons/index.ts b/src/Icons/index.ts index 2ac4c997..e19435de 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -60,9 +60,12 @@ export { default as ChevronsLeftIcon } from './chevrons-left-icon'; export { default as ChevronsRightIcon } from './chevrons-right-icon'; export { default as CircleCheck2Icon } from './circle-check-2-icon'; export { default as CircleCheckIcon } from './circle-check-icon'; +export { default as CircleCloseIcon } from './circle-close-icon'; export { default as CircleCrossAccentIcon } from './circle-cross-accent-icon'; export { default as CircleFillIcon } from './circle-fill-icon'; export { default as CircleIcon } from './circle-icon'; +export { default as CircleMinusIcon } from './circle-minus-icon'; +export { default as CirclePlusIcon } from './circle-plus-icon'; export { default as ClockIcon } from './clock-icon'; export { default as CloudUploadAccentIcon } from './cloud-upload-accent-icon'; export { default as CloudUploadIcon } from './cloud-upload-icon'; @@ -71,7 +74,7 @@ export { default as ColorSwatchIcon } from './color-swatch-icon'; export { default as ConfettiIcon } from './confetti-icon'; export { default as Copy2Icon } from './copy-2-icon'; export { default as CopyIcon } from './copy-icon'; -export { default as Crown2FillIcon } from './crown-2-fill-icon'; +export { default as CrownFillIcon } from './crown-fill-icon'; export { default as CrownIcon } from './crown-icon'; export { default as CurrencyDollarIcon } from './currency-dollar-icon'; export { default as CurrentLocationIcon } from './current-location-icon'; @@ -130,7 +133,7 @@ export { default as Info2Icon } from './info2-icon'; export { default as Key2Icon } from './key-2-icon'; export { default as KeyDuplicateIcon } from './key-duplicate-icon'; export { default as KeyIcon } from './key-icon'; -export { default as LayoutSidebarRightMixIcon } from './layout-sidebar-right-mix-icon'; +export { default as LayoutSidebarRightIcon } from './layout-sidebar-right-icon'; export { default as LinkIcon } from './link-icon'; export { default as ListFillIcon } from './list-fill-icon'; export { default as ListIcon } from './list-icon'; @@ -226,6 +229,7 @@ export { default as Trash2Icon } from './trash-2-icon'; export { default as Trash2OffIcon } from './trash-2-off-icon'; export { default as TrashIcon } from './trash-icon'; export { default as TriangleIcon } from './triangle-icon'; +export { default as TwitterXIcon } from './twitter-x-icon'; export { default as UnlinkIcon } from './unlink-icon'; export { default as Upload2Icon } from './upload-2-icon'; export { default as UploadAccentIcon } from './upload-accent-icon'; diff --git a/src/Icons/layout-sidebar-right-mix-icon.tsx b/src/Icons/layout-sidebar-right-icon.tsx similarity index 62% rename from src/Icons/layout-sidebar-right-mix-icon.tsx rename to src/Icons/layout-sidebar-right-icon.tsx index f1046f49..7544ee5e 100644 --- a/src/Icons/layout-sidebar-right-mix-icon.tsx +++ b/src/Icons/layout-sidebar-right-icon.tsx @@ -1,26 +1,15 @@ import createASIcon from "../createASIcon"; import React from "react"; -const LayoutSidebarRightMixIcon = createASIcon( - "LayoutSidebarRightMixIcon", +const LayoutSidebarRightIcon = createASIcon( + "LayoutSidebarRightIcon", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", }, - - - - + - + , "no-change", diff --git a/src/Icons/twitter-x-icon.tsx b/src/Icons/twitter-x-icon.tsx new file mode 100644 index 00000000..7faf0b7e --- /dev/null +++ b/src/Icons/twitter-x-icon.tsx @@ -0,0 +1,21 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const TwitterXIcon = createASIcon( + "TwitterXIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + , + "fill", +); + +export default TwitterXIcon; diff --git a/src/stories/CircleCloseIcon.stories.tsx b/src/stories/CircleCloseIcon.stories.tsx new file mode 100644 index 00000000..44607d5d --- /dev/null +++ b/src/stories/CircleCloseIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleCloseIcon from '../icons/circle-close-icon' + + const meta: Meta = { + component: CircleCloseIcon, + title: 'outline/CircleCloseIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CircleMinusIcon.stories.tsx b/src/stories/CircleMinusIcon.stories.tsx new file mode 100644 index 00000000..fa9e13a6 --- /dev/null +++ b/src/stories/CircleMinusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CircleMinusIcon from '../icons/circle-minus-icon' + + const meta: Meta = { + component: CircleMinusIcon, + title: 'outline/CircleMinusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/CirclePlusIcon.stories.tsx b/src/stories/CirclePlusIcon.stories.tsx new file mode 100644 index 00000000..2553a092 --- /dev/null +++ b/src/stories/CirclePlusIcon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import CirclePlusIcon from '../icons/circle-plus-icon' + + const meta: Meta = { + component: CirclePlusIcon, + title: 'outline/CirclePlusIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/Crown2FillIcon.stories.tsx b/src/stories/CrownFillIcon.stories.tsx similarity index 88% rename from src/stories/Crown2FillIcon.stories.tsx rename to src/stories/CrownFillIcon.stories.tsx index 0ff5f3a0..302ad9e6 100644 --- a/src/stories/Crown2FillIcon.stories.tsx +++ b/src/stories/CrownFillIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import Crown2FillIcon from '../icons/crown-2-fill-icon' + import CrownFillIcon from '../icons/crown-fill-icon' - const meta: Meta = { - component: Crown2FillIcon, - title: 'fill/Crown2FillIcon', + const meta: Meta = { + component: CrownFillIcon, + title: 'fill/CrownFillIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/LayoutSidebarRightMixIcon.stories.tsx b/src/stories/LayoutSidebarRightIcon.stories.tsx similarity index 85% rename from src/stories/LayoutSidebarRightMixIcon.stories.tsx rename to src/stories/LayoutSidebarRightIcon.stories.tsx index 2de6e569..15458066 100644 --- a/src/stories/LayoutSidebarRightMixIcon.stories.tsx +++ b/src/stories/LayoutSidebarRightIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import LayoutSidebarRightMixIcon from '../icons/layout-sidebar-right-mix-icon' + import LayoutSidebarRightIcon from '../icons/layout-sidebar-right-icon' - const meta: Meta = { - component: LayoutSidebarRightMixIcon, - title: 'no-change/LayoutSidebarRightMixIcon', + const meta: Meta = { + component: LayoutSidebarRightIcon, + title: 'no-change/LayoutSidebarRightIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/TwitterXIcon.stories.tsx b/src/stories/TwitterXIcon.stories.tsx new file mode 100644 index 00000000..86e1fa4f --- /dev/null +++ b/src/stories/TwitterXIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import TwitterXIcon from '../icons/twitter-x-icon' + + const meta: Meta = { + component: TwitterXIcon, + title: 'fill/TwitterXIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file From 0fa3c34cac414b7b6c95b1dab459c1e8dafc5821 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Thu, 6 Jun 2024 23:05:10 +0530 Subject: [PATCH 33/34] add: icons --- icons-metadata/edit-color-icon.json | 4 + icons-metadata/edit-icon-icon.json | 4 - icons-metadata/info-3-icon.json | 9 +++ icons-metadata/minus-icon.json | 6 +- icons-metadata/stack-double-fill-icon.json | 9 +++ icons-metadata/stack-triple-fill-icon.json | 9 +++ ...edit-icon-icon.svg => edit-color-icon.svg} | 0 icons-optimized/info-3-icon.svg | 9 +++ icons-optimized/minus-icon.svg | 2 +- icons-optimized/stack-double-fill-icon.svg | 6 ++ icons-optimized/stack-triple-fill-icon.svg | 12 +++ icons-original/accent/player.svg | 2 +- icons-original/{outline => fill}/minus.svg | 0 .../logo/{edit-icon.svg => edit-color.svg} | 0 icons-original/outline/info-3.svg | 4 + ...edit-icon-icon.tsx => edit-color-icon.tsx} | 6 +- src/Icons/index.ts | 5 +- src/Icons/info-3-icon.tsx | 29 +++++++ src/Icons/minus-icon.tsx | 4 +- src/Icons/stack-double-fill-icon.tsx | 29 +++++++ src/Icons/stack-triple-fill-icon.tsx | 27 +++++++ ....stories.tsx => EditColorIcon.stories.tsx} | 10 +-- src/stories/Info3Icon.stories.tsx | 70 +++++++++++++++++ src/stories/MinusIcon.stories.tsx | 15 +++- src/stories/StackDoubleFillIcon.stories.tsx | 77 +++++++++++++++++++ src/stories/StackTripleFillIcon.stories.tsx | 77 +++++++++++++++++++ 26 files changed, 400 insertions(+), 25 deletions(-) create mode 100644 icons-metadata/edit-color-icon.json delete mode 100644 icons-metadata/edit-icon-icon.json create mode 100644 icons-metadata/info-3-icon.json create mode 100644 icons-metadata/stack-double-fill-icon.json create mode 100644 icons-metadata/stack-triple-fill-icon.json rename icons-optimized/{edit-icon-icon.svg => edit-color-icon.svg} (100%) create mode 100644 icons-optimized/info-3-icon.svg create mode 100644 icons-optimized/stack-double-fill-icon.svg create mode 100644 icons-optimized/stack-triple-fill-icon.svg rename icons-original/{outline => fill}/minus.svg (100%) rename icons-original/logo/{edit-icon.svg => edit-color.svg} (100%) create mode 100644 icons-original/outline/info-3.svg rename src/Icons/{edit-icon-icon.tsx => edit-color-icon.tsx} (98%) create mode 100644 src/Icons/info-3-icon.tsx create mode 100644 src/Icons/stack-double-fill-icon.tsx create mode 100644 src/Icons/stack-triple-fill-icon.tsx rename src/stories/{EditIconIcon.stories.tsx => EditColorIcon.stories.tsx} (88%) create mode 100644 src/stories/Info3Icon.stories.tsx create mode 100644 src/stories/StackDoubleFillIcon.stories.tsx create mode 100644 src/stories/StackTripleFillIcon.stories.tsx diff --git a/icons-metadata/edit-color-icon.json b/icons-metadata/edit-color-icon.json new file mode 100644 index 00000000..c024c023 --- /dev/null +++ b/icons-metadata/edit-color-icon.json @@ -0,0 +1,4 @@ +{ + "icon_type": "logo", + "name": "edit-color-icon" +} \ No newline at end of file diff --git a/icons-metadata/edit-icon-icon.json b/icons-metadata/edit-icon-icon.json deleted file mode 100644 index 68fe72ca..00000000 --- a/icons-metadata/edit-icon-icon.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "icon_type": "logo", - "name": "edit-icon-icon" -} \ No newline at end of file diff --git a/icons-metadata/info-3-icon.json b/icons-metadata/info-3-icon.json new file mode 100644 index 00000000..2c905a4e --- /dev/null +++ b/icons-metadata/info-3-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "outline", + "name": "info-3-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "none" + } +} \ No newline at end of file diff --git a/icons-metadata/minus-icon.json b/icons-metadata/minus-icon.json index 874fad89..3d166f03 100644 --- a/icons-metadata/minus-icon.json +++ b/icons-metadata/minus-icon.json @@ -1,9 +1,7 @@ { - "icon_type": "outline", + "icon_type": "fill", "name": "minus-icon", "svg_process_option": { - "stroke": "#555555", - "stroke-width": 1.5, - "fill": "none" + "fill": "#555555" } } \ No newline at end of file diff --git a/icons-metadata/stack-double-fill-icon.json b/icons-metadata/stack-double-fill-icon.json new file mode 100644 index 00000000..7c93003b --- /dev/null +++ b/icons-metadata/stack-double-fill-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "stack-double-fill-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-metadata/stack-triple-fill-icon.json b/icons-metadata/stack-triple-fill-icon.json new file mode 100644 index 00000000..4e3ca581 --- /dev/null +++ b/icons-metadata/stack-triple-fill-icon.json @@ -0,0 +1,9 @@ +{ + "icon_type": "mix", + "name": "stack-triple-fill-icon", + "svg_process_option": { + "stroke": "#555555", + "stroke-width": 1.5, + "fill": "#555555" + } +} \ No newline at end of file diff --git a/icons-optimized/edit-icon-icon.svg b/icons-optimized/edit-color-icon.svg similarity index 100% rename from icons-optimized/edit-icon-icon.svg rename to icons-optimized/edit-color-icon.svg diff --git a/icons-optimized/info-3-icon.svg b/icons-optimized/info-3-icon.svg new file mode 100644 index 00000000..5e1ad2ee --- /dev/null +++ b/icons-optimized/info-3-icon.svg @@ -0,0 +1,9 @@ + + + + diff --git a/icons-optimized/minus-icon.svg b/icons-optimized/minus-icon.svg index 653783c0..58996d4c 100644 --- a/icons-optimized/minus-icon.svg +++ b/icons-optimized/minus-icon.svg @@ -1,3 +1,3 @@ - + diff --git a/icons-optimized/stack-double-fill-icon.svg b/icons-optimized/stack-double-fill-icon.svg new file mode 100644 index 00000000..c6da7d2e --- /dev/null +++ b/icons-optimized/stack-double-fill-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons-optimized/stack-triple-fill-icon.svg b/icons-optimized/stack-triple-fill-icon.svg new file mode 100644 index 00000000..f8ae9309 --- /dev/null +++ b/icons-optimized/stack-triple-fill-icon.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/icons-original/accent/player.svg b/icons-original/accent/player.svg index 90114d3f..6293c0a4 100644 --- a/icons-original/accent/player.svg +++ b/icons-original/accent/player.svg @@ -1,4 +1,4 @@ - + diff --git a/icons-original/outline/minus.svg b/icons-original/fill/minus.svg similarity index 100% rename from icons-original/outline/minus.svg rename to icons-original/fill/minus.svg diff --git a/icons-original/logo/edit-icon.svg b/icons-original/logo/edit-color.svg similarity index 100% rename from icons-original/logo/edit-icon.svg rename to icons-original/logo/edit-color.svg diff --git a/icons-original/outline/info-3.svg b/icons-original/outline/info-3.svg new file mode 100644 index 00000000..898f15ad --- /dev/null +++ b/icons-original/outline/info-3.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/Icons/edit-icon-icon.tsx b/src/Icons/edit-color-icon.tsx similarity index 98% rename from src/Icons/edit-icon-icon.tsx rename to src/Icons/edit-color-icon.tsx index 5abbc2d2..5d54fcb4 100644 --- a/src/Icons/edit-icon-icon.tsx +++ b/src/Icons/edit-color-icon.tsx @@ -1,8 +1,8 @@ import createASIcon from "../createASIcon"; import React from "react"; -const EditIconIcon = createASIcon( - "EditIconIcon", +const EditColorIcon = createASIcon( + "EditColorIcon", { width: "46", height: "12", @@ -97,4 +97,4 @@ const EditIconIcon = createASIcon( "logo", ); -export default EditIconIcon; +export default EditColorIcon; diff --git a/src/Icons/index.ts b/src/Icons/index.ts index e19435de..b4f7dbfc 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -90,7 +90,7 @@ export { default as DiskIcon } from './disk-icon'; export { default as DotsVerticalIcon } from './dots-vertical-icon'; export { default as DownloadAccentIcon } from './download-accent-icon'; export { default as DownloadIcon } from './download-icon'; -export { default as EditIconIcon } from './edit-icon-icon'; +export { default as EditColorIcon } from './edit-color-icon'; export { default as EditIcon } from './edit-icon'; export { default as ExternalLinkIcon } from './external-link-icon'; export { default as EyeCheckIcon } from './eye-check-icon'; @@ -125,6 +125,7 @@ export { default as HexagonIcon } from './hexagon-icon'; export { default as Home2Icon } from './home-2-icon'; export { default as HomeIcon } from './home-icon'; export { default as ImageBorderIcon } from './image-border-icon'; +export { default as Info3Icon } from './info-3-icon'; export { default as InfoCircleIcon } from './info-circle-icon'; export { default as InfoCirlce2Icon } from './info-cirlce-2-icon'; export { default as InfoIcon } from './info-icon'; @@ -209,7 +210,9 @@ export { default as SprayCanIcon } from './spray-can-icon'; export { default as SprayIcon } from './spray-icon'; export { default as Spray2Icon } from './spray_2-icon'; export { default as SquareIcon } from './square-icon'; +export { default as StackDoubleFillIcon } from './stack-double-fill-icon'; export { default as StackDoubleIcon } from './stack-double-icon'; +export { default as StackTripleFillIcon } from './stack-triple-fill-icon'; export { default as StackTripleIcon } from './stack-triple-icon'; export { default as Star0Icon } from './star - 0-icon'; export { default as Star1Icon } from './star - 1-icon'; diff --git a/src/Icons/info-3-icon.tsx b/src/Icons/info-3-icon.tsx new file mode 100644 index 00000000..08679937 --- /dev/null +++ b/src/Icons/info-3-icon.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const Info3Icon = createASIcon( + "Info3Icon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + , + "outline", +); + +export default Info3Icon; diff --git a/src/Icons/minus-icon.tsx b/src/Icons/minus-icon.tsx index c4d423df..ce62998b 100644 --- a/src/Icons/minus-icon.tsx +++ b/src/Icons/minus-icon.tsx @@ -9,9 +9,9 @@ const MinusIcon = createASIcon( viewBox: "0 0 24 24", }, - + , - "outline", + "fill", ); export default MinusIcon; diff --git a/src/Icons/stack-double-fill-icon.tsx b/src/Icons/stack-double-fill-icon.tsx new file mode 100644 index 00000000..d4b23362 --- /dev/null +++ b/src/Icons/stack-double-fill-icon.tsx @@ -0,0 +1,29 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackDoubleFillIcon = createASIcon( + "StackDoubleFillIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + , + "mix", +); + +export default StackDoubleFillIcon; diff --git a/src/Icons/stack-triple-fill-icon.tsx b/src/Icons/stack-triple-fill-icon.tsx new file mode 100644 index 00000000..92c5ff07 --- /dev/null +++ b/src/Icons/stack-triple-fill-icon.tsx @@ -0,0 +1,27 @@ +import createASIcon from "../createASIcon"; +import React from "react"; + +const StackTripleFillIcon = createASIcon( + "StackTripleFillIcon", + { + xmlns: "http://www.w3.org/2000/svg", + fill: "none", + viewBox: "0 0 24 24", + }, + + + + + + + , + "mix", +); + +export default StackTripleFillIcon; diff --git a/src/stories/EditIconIcon.stories.tsx b/src/stories/EditColorIcon.stories.tsx similarity index 88% rename from src/stories/EditIconIcon.stories.tsx rename to src/stories/EditColorIcon.stories.tsx index 0dead7b7..9f46413f 100644 --- a/src/stories/EditIconIcon.stories.tsx +++ b/src/stories/EditColorIcon.stories.tsx @@ -2,11 +2,11 @@ import type { Meta, StoryObj } from '@storybook/react' import React from 'react' import IconBorder from '../components/IconBorder' import IconBackground from '../components/IconBackground' - import EditIconIcon from '../icons/edit-icon-icon' + import EditColorIcon from '../icons/edit-color-icon' - const meta: Meta = { - component: EditIconIcon, - title: 'logo/EditIconIcon', + const meta: Meta = { + component: EditColorIcon, + title: 'logo/EditColorIcon', decorators: [ (Story) => (
@@ -29,7 +29,7 @@ import type { Meta, StoryObj } from '@storybook/react' } export default meta - type Story = StoryObj + type Story = StoryObj export const Default: Story = {} diff --git a/src/stories/Info3Icon.stories.tsx b/src/stories/Info3Icon.stories.tsx new file mode 100644 index 00000000..30b72348 --- /dev/null +++ b/src/stories/Info3Icon.stories.tsx @@ -0,0 +1,70 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import Info3Icon from '../icons/info-3-icon' + + const meta: Meta = { + component: Info3Icon, + title: 'outline/Info3Icon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + color: 'red', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/MinusIcon.stories.tsx b/src/stories/MinusIcon.stories.tsx index 8341c1ce..f65640bc 100644 --- a/src/stories/MinusIcon.stories.tsx +++ b/src/stories/MinusIcon.stories.tsx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/react' const meta: Meta = { component: MinusIcon, - title: 'outline/MinusIcon', + title: 'fill/MinusIcon', decorators: [ (Story) => (
@@ -33,14 +33,21 @@ import type { Meta, StoryObj } from '@storybook/react' export const Default: Story = {} - + export const Color: Story = { args: { - color: 'red', - }, + className: 'text-red-500', + }, } + + export const Fill: Story = { + args: { + className: 'text-green-600', + }, + } + export const inActive: Story = { diff --git a/src/stories/StackDoubleFillIcon.stories.tsx b/src/stories/StackDoubleFillIcon.stories.tsx new file mode 100644 index 00000000..1c442493 --- /dev/null +++ b/src/stories/StackDoubleFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackDoubleFillIcon from '../icons/stack-double-fill-icon' + + const meta: Meta = { + component: StackDoubleFillIcon, + title: 'mix/StackDoubleFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file diff --git a/src/stories/StackTripleFillIcon.stories.tsx b/src/stories/StackTripleFillIcon.stories.tsx new file mode 100644 index 00000000..a171143e --- /dev/null +++ b/src/stories/StackTripleFillIcon.stories.tsx @@ -0,0 +1,77 @@ +import type { Meta, StoryObj } from '@storybook/react' + import React from 'react' + import IconBorder from '../components/IconBorder' + import IconBackground from '../components/IconBackground' + import StackTripleFillIcon from '../icons/stack-triple-fill-icon' + + const meta: Meta = { + component: StackTripleFillIcon, + title: 'mix/StackTripleFillIcon', + decorators: [ + (Story) => ( +
+ + + + + + + + + + + + + +
+ ), + ], + } + + export default meta + type Story = StoryObj + + export const Default: Story = {} + + + export const Color: Story = { + args: { + className: 'text-red-500', + }, + } + + + export const Stroke: Story = { + args: { + className: 'stroke-[2px]', + }, + } + + + + + export const inActive: Story = { + args: { + inActive: true, + }, + } + + export const Large: Story = { + args: { + size: 30, + }, + } + + export const Hover: Story = { + args: { + className: 'group-hover:text-green-500 hover:text-green-500 cursor-pointer', + }, + } + + export const ClassName: Story = { + args: { + className: 'text-red-400 stroke-1 hover:text-blue-400', + }, + } + + \ No newline at end of file From 269feb54f924b72917ec4fa1aba21e8e0bc252f8 Mon Sep 17 00:00:00 2001 From: booi-dev Date: Fri, 7 Jun 2024 11:55:00 +0530 Subject: [PATCH 34/34] update: accent icons --- icons-optimized/alert-triangle-accent-icon.svg | 2 +- icons-optimized/player-icon.svg | 2 +- icons-original/accent/alert-triangle-accent.svg | 2 +- src/Icons/alert-triangle-accent-icon.tsx | 4 ++-- src/Icons/player-icon.tsx | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/icons-optimized/alert-triangle-accent-icon.svg b/icons-optimized/alert-triangle-accent-icon.svg index 1a796d10..877a7640 100644 --- a/icons-optimized/alert-triangle-accent-icon.svg +++ b/icons-optimized/alert-triangle-accent-icon.svg @@ -11,7 +11,7 @@ /> diff --git a/icons-original/accent/alert-triangle-accent.svg b/icons-original/accent/alert-triangle-accent.svg index 205210db..7842356f 100644 --- a/icons-original/accent/alert-triangle-accent.svg +++ b/icons-original/accent/alert-triangle-accent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/Icons/alert-triangle-accent-icon.tsx b/src/Icons/alert-triangle-accent-icon.tsx index a193b622..1656fe32 100644 --- a/src/Icons/alert-triangle-accent-icon.tsx +++ b/src/Icons/alert-triangle-accent-icon.tsx @@ -18,11 +18,11 @@ const AlertTriangleAccentIcon = createASIcon( /> , "accent", diff --git a/src/Icons/player-icon.tsx b/src/Icons/player-icon.tsx index 7f1b3287..1937fc54 100644 --- a/src/Icons/player-icon.tsx +++ b/src/Icons/player-icon.tsx @@ -18,8 +18,8 @@ const PlayerIcon = createASIcon( /> , "accent",