@openfin/ui-library 0.31.3-alpha.20251106164713 → 0.31.3

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.
Files changed (178) hide show
  1. package/README.md +2 -2
  2. package/dist/assets/fonts/Inter-Italic.woff2 +0 -0
  3. package/dist/assets/fonts/Inter-Regular.woff2 +0 -0
  4. package/dist/assets/fonts/Inter-SemiBold.woff2 +0 -0
  5. package/dist/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  6. package/dist/assets/fonts/index.d.ts +2 -0
  7. package/dist/assets/index.d.ts +1 -0
  8. package/dist/components/controls/Button/button.d.ts +35 -0
  9. package/dist/components/controls/Button/button.variants.d.ts +64 -0
  10. package/dist/components/controls/Button/index.d.ts +2 -0
  11. package/dist/components/controls/ClickableNavigation/clickableNavigation.d.ts +11 -0
  12. package/dist/components/controls/ClickableNavigation/index.d.ts +1 -0
  13. package/dist/components/controls/CollapsibleCard/cardContainer.d.ts +6 -0
  14. package/dist/components/controls/CollapsibleCard/collapsibleCard.d.ts +19 -0
  15. package/dist/components/controls/CollapsibleCard/index.d.ts +1 -0
  16. package/dist/components/controls/ExpandableButton/expandDirection.d.ts +4 -0
  17. package/dist/components/controls/ExpandableButton/expandableButton.d.ts +16 -0
  18. package/dist/components/controls/ExpandableButton/expandablePanel.d.ts +14 -0
  19. package/dist/components/controls/ExpandableButton/expandablePanel.setup.d.ts +2 -0
  20. package/dist/components/controls/ExpandableButton/index.d.ts +2 -0
  21. package/dist/components/controls/Menus/ContentMenu/ContentMenu.d.ts +52 -0
  22. package/dist/components/controls/Menus/ContentMenu/ContentMenuColumn/ContentMenuColumn.d.ts +17 -0
  23. package/dist/components/controls/Menus/ContentMenu/ContentMenuContext.d.ts +5 -0
  24. package/dist/components/controls/Menus/ContentMenu/ContentMenuItem/ContentMenuItem.d.ts +56 -0
  25. package/dist/components/controls/Menus/ContentMenu/ContentMenuItem/IconWithFallback.d.ts +7 -0
  26. package/dist/components/controls/Menus/ContentMenu/ContentMenuItem/useImageLoader.d.ts +8 -0
  27. package/dist/components/controls/Menus/ContentMenu/Tooltip/Tooltip.d.ts +7 -0
  28. package/dist/components/controls/Menus/ContentMenu/index.d.ts +1 -0
  29. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenu.d.ts +96 -0
  30. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/ColorLinkingContextMenuWidget.d.ts +10 -0
  31. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/CustomContextMenuItem.d.ts +11 -0
  32. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/NormalCustomContextMenuItem.d.ts +6 -0
  33. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/RootMenuHeader.d.ts +5 -0
  34. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/SeparatorCustomContextMenuItem.d.ts +2 -0
  35. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/SubmenuHeaderCustomContextMenuItem.d.ts +8 -0
  36. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/WidgetCustomContextMenuItem.d.ts +5 -0
  37. package/dist/components/controls/Menus/CustomContextMenu/index.d.ts +1 -0
  38. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuKeyboardNavigation.d.ts +17 -0
  39. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuKeyboardNavigation.test.d.ts +1 -0
  40. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuNavigation.d.ts +25 -0
  41. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuNavigation.test.d.ts +1 -0
  42. package/dist/components/controls/Menus/CustomContextMenu/useResizeContextMenu.d.ts +10 -0
  43. package/dist/components/controls/Menus/CustomContextMenu/useResizeContextMenu.test.d.ts +1 -0
  44. package/dist/components/controls/Menus/CustomContextMenu/utils.d.ts +3 -0
  45. package/dist/components/controls/Menus/common.d.ts +80 -0
  46. package/dist/components/controls/Toggle/index.d.ts +1 -0
  47. package/dist/components/controls/Toggle/toggle.d.ts +10 -0
  48. package/dist/components/elements/Badge/badge.d.ts +18 -0
  49. package/dist/components/elements/Badge/index.d.ts +1 -0
  50. package/dist/components/elements/Calendar/calendar.d.ts +8 -0
  51. package/dist/components/elements/Calendar/index.d.ts +1 -0
  52. package/dist/components/elements/DropdownMenu/dropdownButton.d.ts +15 -0
  53. package/dist/components/elements/DropdownMenu/dropdownMenu.d.ts +16 -0
  54. package/dist/components/elements/DropdownMenu/index.d.ts +3 -0
  55. package/dist/components/elements/DropdownMenu/menu.d.ts +67 -0
  56. package/dist/components/elements/DropdownMenu/optionTitle.d.ts +15 -0
  57. package/dist/components/elements/Icon/icon.d.ts +19 -0
  58. package/dist/components/elements/Icon/icon.variants.d.ts +28 -0
  59. package/dist/components/elements/Icon/index.d.ts +1 -0
  60. package/dist/components/elements/Icon/openfin/BellFilledIcon.d.ts +2 -0
  61. package/dist/components/elements/Icon/openfin/BellIcon.d.ts +6 -0
  62. package/dist/components/elements/Icon/openfin/BlockedIcon.d.ts +2 -0
  63. package/dist/components/elements/Icon/openfin/BookmarkFilled.d.ts +2 -0
  64. package/dist/components/elements/Icon/openfin/BookmarkOutlined.d.ts +2 -0
  65. package/dist/components/elements/Icon/openfin/BrokenLinkIcon.d.ts +2 -0
  66. package/dist/components/elements/Icon/openfin/ChevronDownIcon.d.ts +2 -0
  67. package/dist/components/elements/Icon/openfin/ChevronLeftIcon.d.ts +2 -0
  68. package/dist/components/elements/Icon/openfin/ChevronRightIcon.d.ts +2 -0
  69. package/dist/components/elements/Icon/openfin/ChevronUpIcon.d.ts +2 -0
  70. package/dist/components/elements/Icon/openfin/CollectionIcon.d.ts +2 -0
  71. package/dist/components/elements/Icon/openfin/ContentAppIcon.d.ts +2 -0
  72. package/dist/components/elements/Icon/openfin/EnterpriseGlobeIcon.d.ts +2 -0
  73. package/dist/components/elements/Icon/openfin/ExclamationCircledFilledIcon.d.ts +4 -0
  74. package/dist/components/elements/Icon/openfin/FallbackGlobeIcon.d.ts +2 -0
  75. package/dist/components/elements/Icon/openfin/FilledCircleIcon.d.ts +2 -0
  76. package/dist/components/elements/Icon/openfin/FilterIcon.d.ts +2 -0
  77. package/dist/components/elements/Icon/openfin/FloppyDiskIcon.d.ts +5 -0
  78. package/dist/components/elements/Icon/openfin/FragmentsIcon.d.ts +2 -0
  79. package/dist/components/elements/Icon/openfin/LightBulbFilledIcon.d.ts +2 -0
  80. package/dist/components/elements/Icon/openfin/LightBulbOutlinedIcon.d.ts +2 -0
  81. package/dist/components/elements/Icon/openfin/LockedClosedFilledIcon.d.ts +5 -0
  82. package/dist/components/elements/Icon/openfin/MinimizeIcon.d.ts +5 -0
  83. package/dist/components/elements/Icon/openfin/OpenFinIcon.d.ts +5 -0
  84. package/dist/components/elements/Icon/openfin/PageIcon.d.ts +5 -0
  85. package/dist/components/elements/Icon/openfin/RedDotIcon.d.ts +2 -0
  86. package/dist/components/elements/Icon/openfin/StackIcon.d.ts +2 -0
  87. package/dist/components/elements/Icon/openfin/StorefrontIcon.d.ts +2 -0
  88. package/dist/components/elements/Icon/openfin/SupertabIcon.d.ts +5 -0
  89. package/dist/components/elements/Icon/openfin/WorkspaceIcon.d.ts +5 -0
  90. package/dist/components/elements/Icon/openfin/index.d.ts +30 -0
  91. package/dist/components/elements/IconWithBadge/iconWithBadge.d.ts +5 -0
  92. package/dist/components/elements/IconWithBadge/index.d.ts +1 -0
  93. package/dist/components/elements/Label/label.d.ts +11 -0
  94. package/dist/components/elements/Loader/index.d.ts +2 -0
  95. package/dist/components/elements/Loader/loader.d.ts +4 -0
  96. package/dist/components/elements/Loader/openfinLoader.d.ts +4 -0
  97. package/dist/components/helper/ValidationError.d.ts +6 -0
  98. package/dist/components/input/BaseInput/baseInput.d.ts +29 -0
  99. package/dist/components/input/BaseInput/index.d.ts +1 -0
  100. package/dist/components/input/Checkbox/checkbox.d.ts +12 -0
  101. package/dist/components/input/Checkbox/checkbox.variants.d.ts +21 -0
  102. package/dist/components/input/Checkbox/index.d.ts +1 -0
  103. package/dist/components/input/CheckboxGroup/checkboxGroup.d.ts +15 -0
  104. package/dist/components/input/CheckboxGroup/index.d.ts +1 -0
  105. package/dist/components/input/DateInput/dateInput.d.ts +14 -0
  106. package/dist/components/input/DateInput/index.d.ts +1 -0
  107. package/dist/components/input/NumberInput/index.d.ts +1 -0
  108. package/dist/components/input/NumberInput/numberInput.d.ts +27 -0
  109. package/dist/components/input/RadioGroup/index.d.ts +1 -0
  110. package/dist/components/input/RadioGroup/radioGroup.d.ts +15 -0
  111. package/dist/components/input/RadioInput/index.d.ts +1 -0
  112. package/dist/components/input/RadioInput/radioInput.d.ts +14 -0
  113. package/dist/components/input/RawInput/index.d.ts +1 -0
  114. package/dist/components/input/RawInput/rawInput.d.ts +4 -0
  115. package/dist/components/input/TextArea/index.d.ts +1 -0
  116. package/dist/components/input/TextArea/textArea.d.ts +12 -0
  117. package/dist/components/input/TextInput/index.d.ts +1 -0
  118. package/dist/components/input/TextInput/textInput.d.ts +14 -0
  119. package/dist/components/layout/Box/box.d.ts +41 -0
  120. package/dist/components/layout/Box/index.d.ts +1 -0
  121. package/dist/components/layout/Box/types.d.ts +7 -0
  122. package/dist/components/layout/DefinitionList/definitionList.d.ts +10 -0
  123. package/dist/components/layout/DefinitionList/index.d.ts +1 -0
  124. package/dist/components/layout/HamburgerNavigation/hamburgerNavigation.d.ts +13 -0
  125. package/dist/components/layout/HamburgerNavigation/index.d.ts +2 -0
  126. package/dist/components/layout/HamburgerNavigation/sidebarMenu.d.ts +12 -0
  127. package/dist/components/layout/TabList/index.d.ts +1 -0
  128. package/dist/components/layout/TabList/tab.d.ts +8 -0
  129. package/dist/components/layout/TabList/tabList.d.ts +13 -0
  130. package/dist/components/system/GlobalStyles/globalStyles.d.ts +5 -0
  131. package/dist/components/system/GlobalStyles/globalStyles.spec.d.ts +1 -0
  132. package/dist/components/system/GlobalStyles/index.d.ts +1 -0
  133. package/dist/components/system/HOC/index.d.ts +4 -0
  134. package/dist/components/system/ThemeProvider/index.d.ts +2 -0
  135. package/dist/components/system/ThemeProvider/lib/colors.d.ts +4 -0
  136. package/dist/components/system/ThemeProvider/lib/constants.d.ts +214 -0
  137. package/dist/components/system/ThemeProvider/lib/createFontFaceCss.d.ts +11 -0
  138. package/dist/components/system/ThemeProvider/lib/createTheme.d.ts +9 -0
  139. package/dist/components/system/ThemeProvider/lib/helpers.d.ts +35 -0
  140. package/dist/components/system/ThemeProvider/lib/iconSet.d.ts +355 -0
  141. package/dist/components/system/ThemeProvider/lib/index.d.ts +10 -0
  142. package/dist/components/system/ThemeProvider/lib/interface.d.ts +23 -0
  143. package/dist/components/system/ThemeProvider/lib/mixins.d.ts +16 -0
  144. package/dist/components/system/ThemeProvider/lib/palette.d.ts +42 -0
  145. package/dist/components/system/ThemeProvider/lib/types.d.ts +42 -0
  146. package/dist/components/system/ThemeProvider/theme/index.d.ts +1 -0
  147. package/dist/components/system/ThemeProvider/theme/openfin.d.ts +9 -0
  148. package/dist/components/system/ThemeProvider/themeProvider.d.ts +20 -0
  149. package/dist/components/system/ThemeProvider/themeProvider.spec.d.ts +1 -0
  150. package/dist/components/system/index.d.ts +3 -0
  151. package/dist/components/templates/CascadingDropdownMenu/cascadingDropdownMenu.d.ts +1 -0
  152. package/dist/components/templates/ContactCard/ContactStatusIcon.d.ts +7 -0
  153. package/dist/components/templates/ContactCard/PresenceIcons.d.ts +4 -0
  154. package/dist/components/templates/ContactCard/contactCard.d.ts +30 -0
  155. package/dist/components/templates/ContactCard/index.d.ts +1 -0
  156. package/dist/components/templates/utils/name.d.ts +1 -0
  157. package/dist/components/typography/Heading/heading.d.ts +1668 -0
  158. package/dist/components/typography/Heading/index.d.ts +1 -0
  159. package/dist/components/typography/Text/index.d.ts +1 -0
  160. package/dist/components/typography/Text/text.d.ts +21 -0
  161. package/dist/hooks/useColorScheme.d.ts +19 -0
  162. package/dist/hooks/useDropdownKeyboardNavigation.d.ts +16 -0
  163. package/dist/hooks/useMediaQuery.d.ts +12 -0
  164. package/dist/hooks/usePrevious.d.ts +1 -0
  165. package/dist/hooks/useTheme.d.ts +8 -0
  166. package/dist/index.d.ts +36 -0
  167. package/dist/index.js +1565 -0
  168. package/dist/index.js.LICENSE.txt +19 -0
  169. package/dist/lib/color-generator.d.ts +7 -0
  170. package/dist/lib/color-generator.spec.d.ts +1 -0
  171. package/dist/lib/math.d.ts +13 -0
  172. package/dist/lib/whenFin.d.ts +6 -0
  173. package/dist/lib/whenFin.spec.d.ts +1 -0
  174. package/dist/storybookHelpers.d.ts +78 -0
  175. package/dist/theme.d.ts +3 -0
  176. package/dist/theme.js +1 -0
  177. package/dist/types/index.d.ts +3 -0
  178. package/package.json +46 -12
@@ -0,0 +1,35 @@
1
+ import { DefaultTheme, StyledProps } from 'styled-components';
2
+ import { StatusType } from '../../HOC';
3
+ import { Palette } from './palette';
4
+ export type ComponentVariants = {
5
+ [key: string]: {
6
+ [key: string]: any;
7
+ };
8
+ };
9
+ /**
10
+ * Get the CSS associated with a variant key
11
+ * @param variants -- Component variants data structure
12
+ * @param variantProp -- The key (enum) for looking up the variant value
13
+ * @todo This needs to be typed better
14
+ */
15
+ export declare const getVariantCSS: (variants: ComponentVariants, variantProp: string) => (props: StyledProps<any>) => any;
16
+ /**
17
+ * Build :root { --var } key value pairs from Palette
18
+ */
19
+ export declare const getRootCssVars: ({ theme }: {
20
+ theme: DefaultTheme;
21
+ }) => string;
22
+ /**
23
+ * Retrive the correct palette value based on the provided status type.
24
+ * Falls back to optionally provided palette key, then to 'inherit'.
25
+ */
26
+ export declare const getStatusColor: (theme: DefaultTheme, status?: StatusType, defaultKey?: keyof typeof Palette) => string;
27
+ /**
28
+ * A list of languages supported by the OpenFin UI.
29
+ */
30
+ export declare const SUPPORTED_LANGUAGES: readonly ["en-US", "ja-JP", "zh-CN", "ko-KR", "ru-RU", "de-DE", "zh-Hant"];
31
+ /**
32
+ * The type of the supported languages.
33
+ * @link supportedLanguages
34
+ */
35
+ export type Languages = typeof SUPPORTED_LANGUAGES[number];
@@ -0,0 +1,355 @@
1
+ /// <reference types="react" />
2
+ /**
3
+ * IconSet --
4
+ * Design System uses Radix Icons `@modulz/radix-icons`
5
+ * @link https://icons.modulz.app/
6
+ * @link https://github.com/radix-ui/icons
7
+ *
8
+ * This exposes them as a named set through OpenFin UI Library
9
+ */
10
+ export declare const IconSet: {
11
+ readonly ContentAppIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
12
+ readonly OpenFinIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
13
+ readonly BellIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
14
+ readonly WorkspaceIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
15
+ readonly LockedClosedFilledIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
16
+ readonly MinimizeIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
17
+ readonly LightBulbFilledIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
18
+ readonly LightBulbOutlinedIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
19
+ readonly FilterIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
20
+ readonly BrokenLinkIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
21
+ readonly FloppyDiskIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
22
+ readonly StackIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
23
+ readonly BellFilledIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
24
+ readonly StorefrontIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
25
+ readonly FragmentsIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
26
+ readonly ChevronRightIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
27
+ readonly ChevronLeftIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
28
+ readonly ChevronUpIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
29
+ readonly ChevronDownIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
30
+ readonly ExclamationCircledFilledIcon: (props: import("@radix-ui/react-icons/dist/types").IconProps & {
31
+ secondaryColor?: string | undefined;
32
+ }) => import("react/jsx-runtime").JSX.Element;
33
+ readonly FilledCircleIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
34
+ readonly PageIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
35
+ readonly RedDotIcon: ({ ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
36
+ readonly BookmarkFilled: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
37
+ readonly BookmarkOutlined: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
38
+ readonly FallbackGlobeIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
39
+ readonly BlockedIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
40
+ readonly EnterpriseGlobeIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
41
+ readonly SupertabIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
42
+ readonly CollectionIcon: ({ color, ...props }: import("@radix-ui/react-icons/dist/types").IconProps) => import("react/jsx-runtime").JSX.Element;
43
+ readonly AccessibilityIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
44
+ readonly ActivityLogIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
45
+ readonly AlignBaselineIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
46
+ readonly AlignBottomIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
47
+ readonly AlignCenterHorizontallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
48
+ readonly AlignCenterVerticallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
49
+ readonly AlignLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
50
+ readonly AlignRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
51
+ readonly AlignTopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
52
+ readonly AllSidesIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
53
+ readonly AngleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
54
+ readonly ArchiveIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
55
+ readonly ArrowBottomLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
56
+ readonly ArrowBottomRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
57
+ readonly ArrowDownIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
58
+ readonly ArrowLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
59
+ readonly ArrowRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
60
+ readonly ArrowTopLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
61
+ readonly ArrowTopRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
62
+ readonly ArrowUpIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
63
+ readonly AspectRatioIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
64
+ readonly AvatarIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
65
+ readonly BackpackIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
66
+ readonly BadgeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
67
+ readonly BarChartIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
68
+ readonly BlendingModeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
69
+ readonly BookmarkIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
70
+ readonly BookmarkFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
71
+ readonly BorderAllIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
72
+ readonly BorderBottomIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
73
+ readonly BorderDashedIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
74
+ readonly BorderDottedIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
75
+ readonly BorderLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
76
+ readonly BorderNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
77
+ readonly BorderRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
78
+ readonly BorderSolidIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
79
+ readonly BorderSplitIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
80
+ readonly BorderStyleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
81
+ readonly BorderTopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
82
+ readonly BorderWidthIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
83
+ readonly BoxIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
84
+ readonly BoxModelIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
85
+ readonly ButtonIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
86
+ readonly CalendarIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
87
+ readonly CameraIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
88
+ readonly CardStackIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
89
+ readonly CardStackMinusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
90
+ readonly CardStackPlusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
91
+ readonly CaretDownIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
92
+ readonly CaretLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
93
+ readonly CaretRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
94
+ readonly CaretSortIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
95
+ readonly CaretUpIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
96
+ readonly ChatBubbleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
97
+ readonly CheckIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
98
+ readonly CheckCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
99
+ readonly CheckboxIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
100
+ readonly CircleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
101
+ readonly CircleBackslashIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
102
+ readonly ClipboardIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
103
+ readonly ClipboardCopyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
104
+ readonly ClockIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
105
+ readonly CodeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
106
+ readonly CodeSandboxLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
107
+ readonly ColorWheelIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
108
+ readonly ColumnSpacingIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
109
+ readonly ColumnsIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
110
+ readonly CommitIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
111
+ readonly Component1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
112
+ readonly Component2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
113
+ readonly ComponentBooleanIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
114
+ readonly ComponentInstanceIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
115
+ readonly ComponentNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
116
+ readonly ComponentPlaceholderIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
117
+ readonly ContainerIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
118
+ readonly CookieIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
119
+ readonly CopyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
120
+ readonly CornerBottomLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
121
+ readonly CornerBottomRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
122
+ readonly CornerTopLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
123
+ readonly CornerTopRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
124
+ readonly CornersIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
125
+ readonly CountdownTimerIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
126
+ readonly CounterClockwiseClockIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
127
+ readonly CropIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
128
+ readonly Cross1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
129
+ readonly Cross2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
130
+ readonly CrossCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
131
+ readonly Crosshair1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
132
+ readonly Crosshair2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
133
+ readonly CrumpledPaperIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
134
+ readonly CubeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
135
+ readonly CursorArrowIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
136
+ readonly CursorTextIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
137
+ readonly DashIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
138
+ readonly DashboardIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
139
+ readonly DesktopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
140
+ readonly DimensionsIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
141
+ readonly DiscIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
142
+ readonly DiscordLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
143
+ readonly DividerHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
144
+ readonly DividerVerticalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
145
+ readonly DotIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
146
+ readonly DotFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
147
+ readonly DotsHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
148
+ readonly DotsVerticalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
149
+ readonly DoubleArrowDownIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
150
+ readonly DoubleArrowLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
151
+ readonly DoubleArrowRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
152
+ readonly DoubleArrowUpIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
153
+ readonly DownloadIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
154
+ readonly DragHandleDots1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
155
+ readonly DragHandleDots2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
156
+ readonly DragHandleHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
157
+ readonly DragHandleVerticalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
158
+ readonly DrawingPinIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
159
+ readonly DrawingPinFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
160
+ readonly DropdownMenuIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
161
+ readonly EnterIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
162
+ readonly EnterFullScreenIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
163
+ readonly EnvelopeClosedIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
164
+ readonly EnvelopeOpenIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
165
+ readonly EraserIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
166
+ readonly ExclamationTriangleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
167
+ readonly ExitIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
168
+ readonly ExitFullScreenIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
169
+ readonly ExternalLinkIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
170
+ readonly EyeClosedIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
171
+ readonly EyeNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
172
+ readonly EyeOpenIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
173
+ readonly FaceIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
174
+ readonly FigmaLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
175
+ readonly FileIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
176
+ readonly FileMinusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
177
+ readonly FilePlusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
178
+ readonly FileTextIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
179
+ readonly FontBoldIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
180
+ readonly FontFamilyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
181
+ readonly FontItalicIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
182
+ readonly FontRomanIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
183
+ readonly FontSizeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
184
+ readonly FontStyleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
185
+ readonly FrameIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
186
+ readonly FramerLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
187
+ readonly GearIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
188
+ readonly GitHubLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
189
+ readonly GlobeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
190
+ readonly GridIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
191
+ readonly GroupIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
192
+ readonly Half1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
193
+ readonly Half2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
194
+ readonly HamburgerMenuIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
195
+ readonly HandIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
196
+ readonly HeadingIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
197
+ readonly HeartIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
198
+ readonly HeartFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
199
+ readonly HeightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
200
+ readonly HobbyKnifeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
201
+ readonly HomeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
202
+ readonly IconJarLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
203
+ readonly IdCardIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
204
+ readonly ImageIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
205
+ readonly InfoCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
206
+ readonly InputIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
207
+ readonly InstagramLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
208
+ readonly KeyboardIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
209
+ readonly LapTimerIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
210
+ readonly LaptopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
211
+ readonly LayersIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
212
+ readonly LayoutIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
213
+ readonly LetterCaseCapitalizeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
214
+ readonly LetterCaseLowercaseIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
215
+ readonly LetterCaseToggleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
216
+ readonly LetterCaseUppercaseIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
217
+ readonly LetterSpacingIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
218
+ readonly LightningBoltIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
219
+ readonly LineHeightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
220
+ readonly Link1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
221
+ readonly Link2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
222
+ readonly LinkBreak1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
223
+ readonly LinkBreak2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
224
+ readonly LinkNone1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
225
+ readonly LinkNone2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
226
+ readonly LinkedInLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
227
+ readonly ListBulletIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
228
+ readonly LockClosedIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
229
+ readonly LockOpen1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
230
+ readonly LockOpen2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
231
+ readonly LoopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
232
+ readonly MagicWandIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
233
+ readonly MagnifyingGlassIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
234
+ readonly MarginIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
235
+ readonly MaskOffIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
236
+ readonly MaskOnIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
237
+ readonly MinusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
238
+ readonly MinusCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
239
+ readonly MixIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
240
+ readonly MixerHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
241
+ readonly MixerVerticalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
242
+ readonly MobileIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
243
+ readonly ModulzLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
244
+ readonly MoonIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
245
+ readonly MoveIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
246
+ readonly NotionLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
247
+ readonly OpacityIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
248
+ readonly OpenInNewWindowIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
249
+ readonly OverlineIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
250
+ readonly PaddingIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
251
+ readonly PaperPlaneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
252
+ readonly PauseIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
253
+ readonly Pencil1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
254
+ readonly Pencil2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
255
+ readonly PersonIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
256
+ readonly PieChartIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
257
+ readonly PilcrowIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
258
+ readonly PinBottomIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
259
+ readonly PinLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
260
+ readonly PinRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
261
+ readonly PinTopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
262
+ readonly PlayIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
263
+ readonly PlusIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
264
+ readonly PlusCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
265
+ readonly QuestionMarkIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
266
+ readonly QuestionMarkCircledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
267
+ readonly QuoteIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
268
+ readonly RadiobuttonIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
269
+ readonly ReaderIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
270
+ readonly ReloadIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
271
+ readonly ResetIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
272
+ readonly ResumeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
273
+ readonly RocketIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
274
+ readonly RotateCounterClockwiseIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
275
+ readonly RowSpacingIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
276
+ readonly RowsIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
277
+ readonly RulerHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
278
+ readonly RulerSquareIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
279
+ readonly ScissorsIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
280
+ readonly SectionIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
281
+ readonly SewingPinIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
282
+ readonly SewingPinFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
283
+ readonly ShadowIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
284
+ readonly ShadowInnerIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
285
+ readonly ShadowNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
286
+ readonly ShadowOuterIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
287
+ readonly Share1Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
288
+ readonly Share2Icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
289
+ readonly ShuffleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
290
+ readonly SizeIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
291
+ readonly SketchLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
292
+ readonly SlashIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
293
+ readonly SliderIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
294
+ readonly SpaceBetweenHorizontallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
295
+ readonly SpaceBetweenVerticallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
296
+ readonly SpaceEvenlyHorizontallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
297
+ readonly SpaceEvenlyVerticallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
298
+ readonly SpeakerLoudIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
299
+ readonly SpeakerModerateIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
300
+ readonly SpeakerOffIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
301
+ readonly SpeakerQuietIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
302
+ readonly SquareIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
303
+ readonly StarIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
304
+ readonly StarFilledIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
305
+ readonly StitchesLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
306
+ readonly StopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
307
+ readonly StopwatchIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
308
+ readonly StretchHorizontallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
309
+ readonly StretchVerticallyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
310
+ readonly StrikethroughIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
311
+ readonly SunIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
312
+ readonly SwitchIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
313
+ readonly SymbolIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
314
+ readonly TableIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
315
+ readonly TargetIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
316
+ readonly TextIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
317
+ readonly TextAlignBottomIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
318
+ readonly TextAlignCenterIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
319
+ readonly TextAlignJustifyIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
320
+ readonly TextAlignLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
321
+ readonly TextAlignMiddleIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
322
+ readonly TextAlignRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
323
+ readonly TextAlignTopIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
324
+ readonly TextNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
325
+ readonly ThickArrowDownIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
326
+ readonly ThickArrowLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
327
+ readonly ThickArrowRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
328
+ readonly ThickArrowUpIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
329
+ readonly TimerIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
330
+ readonly TokensIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
331
+ readonly TrackNextIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
332
+ readonly TrackPreviousIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
333
+ readonly TransformIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
334
+ readonly TransparencyGridIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
335
+ readonly TrashIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
336
+ readonly TriangleDownIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
337
+ readonly TriangleLeftIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
338
+ readonly TriangleRightIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
339
+ readonly TriangleUpIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
340
+ readonly TwitterLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
341
+ readonly UnderlineIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
342
+ readonly UpdateIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
343
+ readonly UploadIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
344
+ readonly ValueIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
345
+ readonly ValueNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
346
+ readonly VercelLogoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
347
+ readonly VideoIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
348
+ readonly ViewGridIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
349
+ readonly ViewHorizontalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
350
+ readonly ViewNoneIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
351
+ readonly ViewVerticalIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
352
+ readonly WidthIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
353
+ readonly ZoomInIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
354
+ readonly ZoomOutIcon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
355
+ };
@@ -0,0 +1,10 @@
1
+ export * from './colors';
2
+ export * from './constants';
3
+ export * from './iconSet';
4
+ export * from './createFontFaceCss';
5
+ export * from './createTheme';
6
+ export * from './helpers';
7
+ export * from './interface';
8
+ export * from './mixins';
9
+ export * from './palette';
10
+ export * from './types';
@@ -0,0 +1,23 @@
1
+ import { FontFamily, FontSize, FontWeight, IconSize, LineHeight, Radius, Shadow, Transition, Unit, UnitPx } from './constants';
2
+ import { Palette } from './palette';
3
+ declare module 'styled-components' {
4
+ interface DefaultTheme {
5
+ /**
6
+ * Register top-level theme keys here and their types
7
+ * to construct the Theme schema from discrete parts
8
+ * - Provides some validation when providing an external theme
9
+ * - Enables auto-completion in styled components.
10
+ */
11
+ fontFamily: typeof FontFamily;
12
+ fontSize: typeof FontSize;
13
+ fontWeight: typeof FontWeight;
14
+ lineHeight: typeof LineHeight;
15
+ iconSize: typeof IconSize;
16
+ radius: typeof Radius;
17
+ shadow: typeof Shadow;
18
+ transition: typeof Transition;
19
+ unit: typeof Unit;
20
+ px: typeof UnitPx;
21
+ palette: Record<keyof typeof Palette, string>;
22
+ }
23
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Mixins --
3
+ * Reusable utility fragments of CSS that make sense to express once (for consistency, maintainability).
4
+ */
5
+ export declare const Mixins: {
6
+ readonly noSelect: import("styled-components").FlattenSimpleInterpolation;
7
+ readonly textOverflow: import("styled-components").FlattenSimpleInterpolation;
8
+ readonly scrollbar: {
9
+ readonly base: import("styled-components").FlattenSimpleInterpolation;
10
+ readonly small: import("styled-components").FlattenSimpleInterpolation;
11
+ };
12
+ readonly appRegion: {
13
+ readonly drag: import("styled-components").FlattenSimpleInterpolation;
14
+ readonly noDrag: import("styled-components").FlattenSimpleInterpolation;
15
+ };
16
+ };
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Theme Palette -- Canonical list of names we use to reference color values within a theme
3
+ */
4
+ export declare const Palette: {
5
+ readonly background1: "background1";
6
+ readonly background2: "background2";
7
+ readonly background3: "background3";
8
+ readonly background4: "background4";
9
+ readonly background5: "background5";
10
+ readonly background6: "background6";
11
+ readonly brandPrimary: "brandPrimary";
12
+ readonly brandSecondary: "brandSecondary";
13
+ readonly brandPrimaryActive: "brandPrimaryActive";
14
+ readonly brandPrimaryHover: "brandPrimaryHover";
15
+ readonly brandPrimaryFocused: "brandPrimaryFocused";
16
+ readonly brandPrimaryText: "brandPrimaryText";
17
+ readonly brandSecondaryActive: "brandSecondaryActive";
18
+ readonly brandSecondaryHover: "brandSecondaryHover";
19
+ readonly brandSecondaryFocused: "brandSecondaryFocused";
20
+ readonly brandSecondaryText: "brandSecondaryText";
21
+ readonly inputBackground: "inputBackground";
22
+ readonly inputColor: "inputColor";
23
+ readonly inputPlaceholder: "inputPlaceholder";
24
+ readonly inputDisabled: "inputDisabled";
25
+ readonly inputFocused: "inputFocused";
26
+ readonly inputBorder: "inputBorder";
27
+ readonly statusSuccess: "statusSuccess";
28
+ readonly statusWarning: "statusWarning";
29
+ readonly statusCritical: "statusCritical";
30
+ readonly statusActive: "statusActive";
31
+ readonly textDefault: "textDefault";
32
+ readonly textHelp: "textHelp";
33
+ readonly textInactive: "textInactive";
34
+ readonly borderNeutral: "borderNeutral";
35
+ readonly contentBackground1: "contentBackground1";
36
+ readonly contentBackground2: "contentBackground2";
37
+ readonly contentBackground3: "contentBackground3";
38
+ readonly contentBackground4: "contentBackground4";
39
+ readonly contentBackground5: "contentBackground5";
40
+ readonly linkDefault: "linkDefault";
41
+ readonly linkHover: "linkHover";
42
+ };