@itcase/types 1.1.4 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/appearance/index.d.ts +2 -2
- package/dist/icon/iconSize.d.ts +1 -1
- package/dist/icon/index.d.ts +0 -6
- package/dist/item/index.d.ts +4 -0
- package/dist/item/itemFillActive.d.ts +3 -0
- package/dist/item/itemFillActiveHover.d.ts +3 -0
- package/dist/item/itemFillDisabled.d.ts +3 -0
- package/dist/item/itemFillHover.d.ts +3 -0
- package/dist/text/textStyle.d.ts +3 -3
- package/package.json +1 -1
- package/dist/icon/iconFill.d.ts +0 -3
- package/dist/icon/iconFillActive.d.ts +0 -3
- package/dist/icon/iconFillActiveHover.d.ts +0 -3
- package/dist/icon/iconFillDisabled.d.ts +0 -3
- package/dist/icon/iconFillHover.d.ts +0 -3
- package/dist/icon/iconFillItem.d.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.1.7](https://github.com/ITCase/itcase-types/compare/v1.1.6...v1.1.7) (2025-12-23)
|
|
2
|
+
|
|
3
|
+
## [1.1.6](https://github.com/ITCase/itcase-types/compare/v1.1.5...v1.1.6) (2025-12-23)
|
|
4
|
+
|
|
5
|
+
## [1.1.5](https://github.com/ITCase/itcase-types/compare/v1.1.4...v1.1.5) (2025-12-23)
|
|
6
|
+
|
|
1
7
|
## [1.1.4](https://github.com/ITCase/itcase-types/compare/v1.1.3...v1.1.4) (2025-12-23)
|
|
2
8
|
|
|
3
9
|
## [1.1.3](https://github.com/ITCase/itcase-types/compare/v1.1.2...v1.1.3) (2025-12-11)
|
|
@@ -23,5 +23,5 @@ type CompositeAppearanceTitleKey = `${AppearanceKeysDefault} ${AppearanceTitleSi
|
|
|
23
23
|
type CompositeAppearanceSizePxKey = `${AppearanceKeysDefault} ${AppearanceSizePxKey} ${AppearanceStyleKey} ${AppearanceShapeKey}` | `${AppearanceKeysDefault} ${AppearanceSizePxKey} ${AppearanceStyleKey}` | `${AppearanceKeysDefault} ${AppearanceSizePxKey}` | AppearanceKeysDefault;
|
|
24
24
|
type CompositeAppearanceStateKeys = `${AppearanceStateKeysDefault} ${AppearanceSizeOrEqualKey} ${AppearanceStyleKey} ${AppearanceShapeKey}` | `${AppearanceStateKeysDefault} ${AppearanceSizeOrEqualKey} ${AppearanceStyleKey}` | `${AppearanceStateKeysDefault} ${AppearanceSizeOrEqualKey}` | AppearanceStateKeysDefault;
|
|
25
25
|
type CompositeAppearanceResponseKeys = `${AppearanceResponseKeysDefault} ${AppearanceSizeOrEqualKey} ${AppearanceStyleKey} ${AppearanceShapeKey}` | `${AppearanceResponseKeysDefault} ${AppearanceSizeOrEqualKey} ${AppearanceStyleKey}` | `${AppearanceResponseKeysDefault} ${AppearanceSizeOrEqualKey}` | AppearanceResponseKeysDefault;
|
|
26
|
-
type CompositeAppearanceIconKeys = `${
|
|
27
|
-
export type { AppearanceKeysDefault, AppearanceOverlayKey, AppearanceShapeKey, AppearanceSizeKey, AppearanceSizePxKey, AppearanceStateKeysDefault, AppearanceStyleKey, AppearanceTitleSizeKey, CompositeAppearanceDefaultKey, CompositeAppearanceDefaultSizeKey, CompositeAppearanceDefaultSizeShapeKey, CompositeAppearanceDefaultSizeStyleKey, CompositeAppearanceDefaultStyleShapeKey, CompositeAppearanceIconKeys, CompositeAppearanceKey, CompositeAppearanceResponseKeys, CompositeAppearanceSizePxKey, CompositeAppearanceStateKeys, CompositeAppearanceTitleKey, };
|
|
26
|
+
type CompositeAppearanceIconKeys = `${AppearanceKeysDefault} ${AppearanceIconSizeKey} ${AppearanceStyleKey} ${AppearanceShapeKey}` | `${AppearanceKeysDefault} ${AppearanceIconSizeKey} ${AppearanceStyleKey}` | `${AppearanceKeysDefault} ${AppearanceIconSizeKey}` | AppearanceKeysDefault;
|
|
27
|
+
export type { AppearanceKeysDefault, AppearanceOverlayKey, AppearanceShapeKey, AppearanceIconSizeKey, AppearanceSizeKey, AppearanceSizePxKey, AppearanceStateKeysDefault, AppearanceStyleKey, AppearanceTitleSizeKey, CompositeAppearanceDefaultKey, CompositeAppearanceDefaultSizeKey, CompositeAppearanceDefaultSizeShapeKey, CompositeAppearanceDefaultSizeStyleKey, CompositeAppearanceDefaultStyleShapeKey, CompositeAppearanceIconKeys, CompositeAppearanceKey, CompositeAppearanceResponseKeys, CompositeAppearanceSizePxKey, CompositeAppearanceStateKeys, CompositeAppearanceTitleKey, };
|
package/dist/icon/iconSize.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const iconSizeProps: readonly ["12", "14", "16", "20", "24", "32", "40"
|
|
1
|
+
declare const iconSizeProps: readonly ["12", "14", "16", "20", "24", "32", "40"];
|
|
2
2
|
type IconSizeProps = (typeof iconSizeProps)[number];
|
|
3
3
|
export { iconSizeProps };
|
|
4
4
|
export type { IconSizeProps };
|
package/dist/icon/index.d.ts
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
export * from './iconFill';
|
|
2
|
-
export * from './iconFillActive';
|
|
3
|
-
export * from './iconFillActiveHover';
|
|
4
|
-
export * from './iconFillDisabled';
|
|
5
|
-
export * from './iconFillHover';
|
|
6
|
-
export * from './iconFillItem';
|
|
7
1
|
export * from './iconFillSize';
|
|
8
2
|
export * from './iconSize';
|
package/dist/item/index.d.ts
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const itemFillActiveProps: readonly ["accentItemActivePrimary", "accentItemActiveSecondary", "accentItemActiveTertiary", "accentItemActiveQuaternary", "specialItemActivePrimary", "specialItemActiveSecondary", "specialItemActiveTertiary", "specialItemActiveQuaternary", "extraItemActivePrimary", "extraItemActiveSecondary", "extraItemActiveTertiary", "extraItemActiveQuaternary", "surfaceItemActivePrimary", "surfaceItemActiveSecondary", "surfaceItemActiveTertiary", "surfaceItemActiveQuaternary", "errorItemActivePrimary", "errorItemActiveSecondary", "errorItemActiveTertiary", "errorItemActiveQuaternary", "warningItemActivePrimary", "warningItemActiveSecondary", "warningItemActiveTertiary", "warningItemActiveQuaternary", "successItemActivePrimary", "successItemActiveSecondary", "successItemActiveTertiary", "successItemActiveQuaternary", "infoItemActivePrimary", "infoItemActiveSecondary", "infoItemActiveTertiary", "infoItemActiveQuaternary", "dangerItemActivePrimary", "dangerItemActiveSecondary", "dangerItemActiveTertiary", "dangerItemActiveQuaternary", "disabledItemActivePrimary", "disabledItemActiveSecondary", "disabledItemActiveTertiary", "disabledItemActiveQuaternary", "none"];
|
|
2
|
+
export type ItemFillActiveProps = (typeof itemFillActiveProps)[number];
|
|
3
|
+
export { itemFillActiveProps };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const itemFillActiveHoverProps: readonly ["accentItemActiveHoverPrimary", "accentItemActiveHoverSecondary", "accentItemActiveHoverTertiary", "accentItemActiveHoverQuaternary", "specialItemActiveHoverPrimary", "specialItemActiveHoverSecondary", "specialItemActiveHoverTertiary", "specialItemActiveHoverQuaternary", "extraItemActiveHoverPrimary", "extraItemActiveHoverSecondary", "extraItemActiveHoverTertiary", "extraItemActiveHoverQuaternary", "surfaceItemActiveHoverPrimary", "surfaceItemActiveHoverSecondary", "surfaceItemActiveHoverTertiary", "surfaceItemActiveHoverQuaternary", "errorItemActiveHoverPrimary", "errorItemActiveHoverSecondary", "errorItemActiveHoverTertiary", "errorItemActiveHoverQuaternary", "warningItemActiveHoverPrimary", "warningItemActiveHoverSecondary", "warningItemActiveHoverTertiary", "warningItemActiveHoverQuaternary", "successItemActiveHoverPrimary", "successItemActiveHoverSecondary", "successItemActiveHoverTertiary", "successItemActiveHoverQuaternary", "infoItemActiveHoverPrimary", "infoItemActiveHoverSecondary", "infoItemActiveHoverTertiary", "infoItemActiveHoverQuaternary", "dangerItemActiveHoverPrimary", "dangerItemActiveHoverSecondary", "dangerItemActiveHoverTertiary", "dangerItemActiveHoverQuaternary", "disabledItemActiveHoverPrimary", "disabledItemActiveHoverSecondary", "disabledItemActiveHoverTertiary", "disabledItemActiveHoverQuaternary", "none"];
|
|
2
|
+
export type ItemFillActiveHoverProps = (typeof itemFillActiveHoverProps)[number];
|
|
3
|
+
export { itemFillActiveHoverProps };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const itemFillDisabledProps: readonly ["disabledItemDisabledPrimary", "disabledItemDisabledSecondary", "disabledItemDisabledTertiary", "disabledItemDisabledQuaternary", "none"];
|
|
2
|
+
export type ItemFillDisabledProps = (typeof itemFillDisabledProps)[number];
|
|
3
|
+
export { itemFillDisabledProps };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const itemFillHoverProps: readonly ["accentHoverPrimary", "accentHoverSecondary", "accentHoverTertiary", "accentHoverQuaternary", "specialHoverPrimary", "specialHoverSecondary", "specialHoverTertiary", "specialHoverQuaternary", "extraHoverPrimary", "extraHoverSecondary", "extraHoverTertiary", "extraHoverQuaternary", "surfaceHoverPrimary", "surfaceHoverSecondary", "surfaceHoverTertiary", "surfaceHoverQuaternary", "errorHoverPrimary", "errorHoverSecondary", "errorHoverTertiary", "errorHoverQuaternary", "warningHoverPrimary", "warningHoverSecondary", "warningHoverTertiary", "warningHoverQuaternary", "successHoverPrimary", "successHoverSecondary", "successHoverTertiary", "successHoverQuaternary", "infoHoverPrimary", "infoHoverSecondary", "infoHoverTertiary", "infoHoverQuaternary", "dangerHoverPrimary", "dangerHoverSecondary", "dangerHoverTertiary", "dangerHoverQuaternary", "disabledHoverPrimary", "disabledHoverSecondary", "disabledHoverTertiary", "disabledHoverQuaternary", "none"];
|
|
2
|
+
export type ItemFillHoverProps = (typeof itemFillHoverProps)[number];
|
|
3
|
+
export { itemFillHoverProps };
|
package/dist/text/textStyle.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export type
|
|
3
|
-
export {
|
|
1
|
+
declare const textStyleProps: readonly ["normal", "italic"];
|
|
2
|
+
export type TextStyleProps = (typeof textStyleProps)[number];
|
|
3
|
+
export { textStyleProps };
|
package/package.json
CHANGED
package/dist/icon/iconFill.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const iconFillProps: readonly ["accentPrimary", "accentSecondary", "accentTertiary", "accentQuaternary", "specialPrimary", "specialSecondary", "specialTertiary", "specialQuaternary", "extraPrimary", "extraSecondary", "extraTertiary", "extraQuaternary", "surfacePrimary", "surfaceSecondary", "surfaceTertiary", "surfaceQuaternary", "errorPrimary", "errorSecondary", "errorTertiary", "errorQuaternary", "warningPrimary", "warningSecondary", "warningTertiary", "warningQuaternary", "successPrimary", "successSecondary", "successTertiary", "successQuaternary", "infoPrimary", "infoSecondary", "infoTertiary", "infoQuaternary", "dangerPrimary", "dangerSecondary", "dangerTertiary", "dangerQuaternary", "disabledPrimary", "disabledSecondary", "disabledTertiary", "disabledQuaternary", "none", "alaskan-blue", "alto", "antique-white", "apricot", "athens-gray", "azure", "beryl", "black", "blue", "blue-cobalt", "blue-horizon", "cactus", "camel", "camellia", "canary-yellow", "cerulean", "clementine", "coastal-gray", "cocoa", "cream", "cyprus-green", "dark-green", "dark-olive", "dark-teal", "deep-navy", "delft-blue", "denim-blue", "dragon-fruit", "flamingo", "flash", "flash-light", "gold", "grapefruit", "green", "indigo", "khaki", "kumquat", "lavender", "lavender-gray", "lemon-cream", "light-blue", "light-orange", "lilac", "linen-blue", "mellow-yellow", "midnight-blue", "mint", "mist-blue", "northern-blue", "ocean-blue", "orange", "pacific-green", "papaya", "peach", "pebble", "pine-green", "pink-sand", "plum", "pollen", "pomegranate", "purple", "red-rose", "rose-gold", "sea-foam", "soft-white", "sonic-silver", "spearmint", "stone", "storm-gray", "surf-blue", "turquoise", "ultra-violet", "vintage-rose", "walnut", "white", "yellow-gold", "electric-pink", "hibiscus", "neon-pink", "pink", "pink-citrus", "red"];
|
|
2
|
-
export type IconFillProps = (typeof iconFillProps)[number];
|
|
3
|
-
export { iconFillProps };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const iconFillActiveProps: readonly ["accentActivePrimary", "accentActiveSecondary", "accentActiveTertiary", "accentActiveQuaternary", "specialActivePrimary", "specialActiveSecondary", "specialActiveTertiary", "specialActiveQuaternary", "extraActivePrimary", "extraActiveSecondary", "extraActiveTertiary", "extraActiveQuaternary", "surfaceActivePrimary", "surfaceActiveSecondary", "surfaceActiveTertiary", "surfaceActiveQuaternary", "errorActivePrimary", "errorActiveSecondary", "errorActiveTertiary", "errorActiveQuaternary", "warningActivePrimary", "warningActiveSecondary", "warningActiveTertiary", "warningActiveQuaternary", "successActivePrimary", "successActiveSecondary", "successActiveTertiary", "successActiveQuaternary", "infoActivePrimary", "infoActiveSecondary", "infoActiveTertiary", "infoActiveQuaternary", "dangerActivePrimary", "dangerActiveSecondary", "dangerActiveTertiary", "dangerActiveQuaternary", "disabledActivePrimary", "disabledActiveSecondary", "disabledActiveTertiary", "disabledActiveQuaternary", "none", "alaskan-blue", "alto", "antique-white", "apricot", "athens-gray", "azure", "beryl", "black", "blue", "blue-cobalt", "blue-horizon", "cactus", "camel", "camellia", "canary-yellow", "cerulean", "clementine", "coastal-gray", "cocoa", "cream", "cyprus-green", "dark-green", "dark-olive", "dark-teal", "deep-navy", "delft-blue", "denim-blue", "dragon-fruit", "flamingo", "flash", "flash-light", "gold", "grapefruit", "green", "indigo", "khaki", "kumquat", "lavender", "lavender-gray", "lemon-cream", "light-blue", "light-orange", "lilac", "linen-blue", "mellow-yellow", "midnight-blue", "mint", "mist-blue", "northern-blue", "ocean-blue", "orange", "pacific-green", "papaya", "peach", "pebble", "pine-green", "pink-sand", "plum", "pollen", "pomegranate", "purple", "red-rose", "rose-gold", "sea-foam", "soft-white", "sonic-silver", "spearmint", "stone", "storm-gray", "surf-blue", "turquoise", "ultra-violet", "vintage-rose", "walnut", "white", "yellow-gold", "electric-pink", "hibiscus", "neon-pink", "pink", "pink-citrus", "red"];
|
|
2
|
-
export type IconFillActiveProps = (typeof iconFillActiveProps)[number];
|
|
3
|
-
export { iconFillActiveProps };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const iconFillActiveHoverProps: readonly ["accentActiveHoverPrimary", "accentActiveHoverSecondary", "accentActiveHoverTertiary", "accentActiveHoverQuaternary", "specialActiveHoverPrimary", "specialActiveHoverSecondary", "specialActiveHoverTertiary", "specialActiveHoverQuaternary", "extraActiveHoverPrimary", "extraActiveHoverSecondary", "extraActiveHoverTertiary", "extraActiveHoverQuaternary", "surfaceActiveHoverPrimary", "surfaceActiveHoverSecondary", "surfaceActiveHoverTertiary", "surfaceActiveHoverQuaternary", "errorActiveHoverPrimary", "errorActiveHoverSecondary", "errorActiveHoverTertiary", "errorActiveHoverQuaternary", "warningActiveHoverPrimary", "warningActiveHoverSecondary", "warningActiveHoverTertiary", "warningActiveHoverQuaternary", "successActiveHoverPrimary", "successActiveHoverSecondary", "successActiveHoverTertiary", "successActiveHoverQuaternary", "infoActiveHoverPrimary", "infoActiveHoverSecondary", "infoActiveHoverTertiary", "infoActiveHoverQuaternary", "dangerActiveHoverPrimary", "dangerActiveHoverSecondary", "dangerActiveHoverTertiary", "dangerActiveHoverQuaternary", "disabledActiveHoverPrimary", "disabledActiveHoverSecondary", "disabledActiveHoverTertiary", "disabledActiveHoverQuaternary", "none", "alaskan-blue", "alto", "antique-white", "apricot", "athens-gray", "azure", "beryl", "black", "blue", "blue-cobalt", "blue-horizon", "cactus", "camel", "camellia", "canary-yellow", "cerulean", "clementine", "coastal-gray", "cocoa", "cream", "cyprus-green", "dark-green", "dark-olive", "dark-teal", "deep-navy", "delft-blue", "denim-blue", "dragon-fruit", "flamingo", "flash", "flash-light", "gold", "grapefruit", "green", "indigo", "khaki", "kumquat", "lavender", "lavender-gray", "lemon-cream", "light-blue", "light-orange", "lilac", "linen-blue", "mellow-yellow", "midnight-blue", "mint", "mist-blue", "northern-blue", "ocean-blue", "orange", "pacific-green", "papaya", "peach", "pebble", "pine-green", "pink-sand", "plum", "pollen", "pomegranate", "purple", "red-rose", "rose-gold", "sea-foam", "soft-white", "sonic-silver", "spearmint", "stone", "storm-gray", "surf-blue", "turquoise", "ultra-violet", "vintage-rose", "walnut", "white", "yellow-gold", "electric-pink", "hibiscus", "neon-pink", "pink", "pink-citrus", "red"];
|
|
2
|
-
export type IconFillActiveHoverProps = (typeof iconFillActiveHoverProps)[number];
|
|
3
|
-
export { iconFillActiveHoverProps };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const iconFillHoverProps: readonly ["accentHoverPrimary", "accentHoverSecondary", "accentHoverTertiary", "accentHoverQuaternary", "specialHoverPrimary", "specialHoverSecondary", "specialHoverTertiary", "specialHoverQuaternary", "extraHoverPrimary", "extraHoverSecondary", "extraHoverTertiary", "extraHoverQuaternary", "surfaceHoverPrimary", "surfaceHoverSecondary", "surfaceHoverTertiary", "surfaceHoverQuaternary", "errorHoverPrimary", "errorHoverSecondary", "errorHoverTertiary", "errorHoverQuaternary", "warningHoverPrimary", "warningHoverSecondary", "warningHoverTertiary", "warningHoverQuaternary", "successHoverPrimary", "successHoverSecondary", "successHoverTertiary", "successHoverQuaternary", "infoHoverPrimary", "infoHoverSecondary", "infoHoverTertiary", "infoHoverQuaternary", "dangerHoverPrimary", "dangerHoverSecondary", "dangerHoverTertiary", "dangerHoverQuaternary", "disabledHoverPrimary", "disabledHoverSecondary", "disabledHoverTertiary", "disabledHoverQuaternary", "none", "alaskan-blue", "alto", "antique-white", "apricot", "athens-gray", "azure", "beryl", "black", "blue", "blue-cobalt", "blue-horizon", "cactus", "camel", "camellia", "canary-yellow", "cerulean", "clementine", "coastal-gray", "cocoa", "cream", "cyprus-green", "dark-green", "dark-olive", "dark-teal", "deep-navy", "delft-blue", "denim-blue", "dragon-fruit", "flamingo", "flash", "flash-light", "gold", "grapefruit", "green", "indigo", "khaki", "kumquat", "lavender", "lavender-gray", "lemon-cream", "light-blue", "light-orange", "lilac", "linen-blue", "mellow-yellow", "midnight-blue", "mint", "mist-blue", "northern-blue", "ocean-blue", "orange", "pacific-green", "papaya", "peach", "pebble", "pine-green", "pink-sand", "plum", "pollen", "pomegranate", "purple", "red-rose", "rose-gold", "sea-foam", "soft-white", "sonic-silver", "spearmint", "stone", "storm-gray", "surf-blue", "turquoise", "ultra-violet", "vintage-rose", "walnut", "white", "yellow-gold", "electric-pink", "hibiscus", "neon-pink", "pink", "pink-citrus", "red"];
|
|
2
|
-
export type IconFillHoverProps = (typeof iconFillHoverProps)[number];
|
|
3
|
-
export { iconFillHoverProps };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const iconFillItemProps: readonly ["accentItemPrimary", "accentItemSecondary", "accentItemTertiary", "accentItemQuaternary", "specialItemPrimary", "specialItemSecondary", "specialItemTertiary", "specialItemQuaternary", "extraItemPrimary", "extraItemSecondary", "extraItemTertiary", "extraItemQuaternary", "surfaceItemPrimary", "surfaceItemSecondary", "surfaceItemTertiary", "surfaceItemQuaternary", "errorItemPrimary", "errorItemSecondary", "errorItemTertiary", "errorItemQuaternary", "warningItemPrimary", "warningItemSecondary", "warningItemTertiary", "warningItemQuaternary", "successItemPrimary", "successItemSecondary", "successItemTertiary", "successItemQuaternary", "infoItemPrimary", "infoItemSecondary", "infoItemTertiary", "infoItemQuaternary", "dangerItemPrimary", "dangerItemSecondary", "dangerItemTertiary", "dangerItemQuaternary", "disabledItemPrimary", "disabledItemSecondary", "disabledItemTertiary", "disabledItemQuaternary", "none", "alaskan-blue", "alto", "antique-white", "apricot", "athens-gray", "azure", "beryl", "black", "blue", "blue-cobalt", "blue-horizon", "cactus", "camel", "camellia", "canary-yellow", "cerulean", "clementine", "coastal-gray", "cocoa", "cream", "cyprus-green", "dark-green", "dark-olive", "dark-teal", "deep-navy", "delft-blue", "denim-blue", "dragon-fruit", "flamingo", "flash", "flash-light", "gold", "grapefruit", "green", "indigo", "khaki", "kumquat", "lavender", "lavender-gray", "lemon-cream", "light-blue", "light-orange", "lilac", "linen-blue", "mellow-yellow", "midnight-blue", "mint", "mist-blue", "northern-blue", "ocean-blue", "orange", "pacific-green", "papaya", "peach", "pebble", "pine-green", "pink-sand", "plum", "pollen", "pomegranate", "purple", "red-rose", "rose-gold", "sea-foam", "soft-white", "sonic-silver", "spearmint", "stone", "storm-gray", "surf-blue", "turquoise", "ultra-violet", "vintage-rose", "walnut", "white", "yellow-gold", "electric-pink", "hibiscus", "neon-pink", "pink", "pink-citrus", "red"];
|
|
2
|
-
export type IconFillItemProps = (typeof iconFillItemProps)[number];
|
|
3
|
-
export { iconFillItemProps };
|