diff --git a/package.json b/package.json index 22eced4e..04ee87c7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "author": "Corca ", "description": "Design System for Corca, Inc.", "private": false, - "version": "0.0.34", + "version": "0.0.35", "packageManager": "pnpm@8.15.4", "type": "module", "exports": { diff --git a/src/icon/generated-default/IconCode.tsx b/src/icon/generated-default/IconCode.tsx new file mode 100644 index 00000000..c3016ba4 --- /dev/null +++ b/src/icon/generated-default/IconCode.tsx @@ -0,0 +1,35 @@ +import type { SVGProps } from 'react'; +import { Ref, forwardRef } from 'react'; +import type { IconProps } from '../share/props'; +const IconCode = ( + { + title = 'IconCode', + titleId = 'CDS-IconCodeIcon', + size = 20, + color = '#363738', + ...props + }: SVGProps & IconProps, + ref: Ref, +) => ( + + {title ? {title} : null} + + +); +const ForwardRef = forwardRef(IconCode); +export { ForwardRef as IconCode }; diff --git a/src/icon/generated-default/IconCoins.tsx b/src/icon/generated-default/IconCoins.tsx new file mode 100644 index 00000000..c6e0c727 --- /dev/null +++ b/src/icon/generated-default/IconCoins.tsx @@ -0,0 +1,35 @@ +import type { SVGProps } from 'react'; +import { Ref, forwardRef } from 'react'; +import type { IconProps } from '../share/props'; +const IconCoins = ( + { + title = 'IconCoins', + titleId = 'CDS-IconCoinsIcon', + size = 20, + color = '#363738', + ...props + }: SVGProps & IconProps, + ref: Ref, +) => ( + + {title ? {title} : null} + + +); +const ForwardRef = forwardRef(IconCoins); +export { ForwardRef as IconCoins }; diff --git a/src/icon/generated-default/IconDownload.tsx b/src/icon/generated-default/IconDownload.tsx new file mode 100644 index 00000000..fdf171ad --- /dev/null +++ b/src/icon/generated-default/IconDownload.tsx @@ -0,0 +1,35 @@ +import type { SVGProps } from 'react'; +import { Ref, forwardRef } from 'react'; +import type { IconProps } from '../share/props'; +const IconDownload = ( + { + title = 'IconDownload', + titleId = 'CDS-IconDownloadIcon', + size = 20, + color = '#363738', + ...props + }: SVGProps & IconProps, + ref: Ref, +) => ( + + {title ? {title} : null} + + +); +const ForwardRef = forwardRef(IconDownload); +export { ForwardRef as IconDownload }; diff --git a/src/icon/generated-default/IconReceipt.tsx b/src/icon/generated-default/IconReceipt.tsx new file mode 100644 index 00000000..12a4c854 --- /dev/null +++ b/src/icon/generated-default/IconReceipt.tsx @@ -0,0 +1,35 @@ +import type { SVGProps } from 'react'; +import { Ref, forwardRef } from 'react'; +import type { IconProps } from '../share/props'; +const IconReceipt = ( + { + title = 'IconReceipt', + titleId = 'CDS-IconReceiptIcon', + size = 20, + color = '#363738', + ...props + }: SVGProps & IconProps, + ref: Ref, +) => ( + + {title ? {title} : null} + + +); +const ForwardRef = forwardRef(IconReceipt); +export { ForwardRef as IconReceipt }; diff --git a/src/icon/generated-default/index.ts b/src/icon/generated-default/index.ts index 90f56fd5..7b96226e 100644 --- a/src/icon/generated-default/index.ts +++ b/src/icon/generated-default/index.ts @@ -16,11 +16,14 @@ export { IconChevronLeftSmall } from './IconChevronLeftSmall'; export { IconChevronRighSmall } from './IconChevronRighSmall'; export { IconChevronUpSmall } from './IconChevronUpSmall'; export { IconClock } from './IconClock'; +export { IconCode } from './IconCode'; +export { IconCoins } from './IconCoins'; export { IconCopy } from './IconCopy'; export { IconCurrencyWon } from './IconCurrencyWon'; export { IconDashboardbar } from './IconDashboardbar'; export { IconDotsHor } from './IconDotsHor'; export { IconDotsVert } from './IconDotsVert'; +export { IconDownload } from './IconDownload'; export { IconEarth } from './IconEarth'; export { IconEditSquare } from './IconEditSquare'; export { IconEdit } from './IconEdit'; @@ -36,6 +39,7 @@ export { IconMegaphone } from './IconMegaphone'; export { IconMinus } from './IconMinus'; export { IconPictureSearch } from './IconPictureSearch'; export { IconQuestionCircle } from './IconQuestionCircle'; +export { IconReceipt } from './IconReceipt'; export { IconSearch } from './IconSearch'; export { IconSetting } from './IconSetting'; export { IconShop } from './IconShop';