entangle-ui 0.8.0 → 0.8.1

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 (80) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/esm/context/KeyboardContext.js +35 -11
  3. package/dist/esm/context/KeyboardContext.js.map +1 -1
  4. package/dist/esm/hooks/useTheme/useTheme.js +1 -0
  5. package/dist/esm/hooks/useTheme/useTheme.js.map +1 -1
  6. package/dist/esm/index.js +65 -2
  7. package/dist/esm/index.js.map +1 -1
  8. package/dist/esm/theme/ThemeProvider.js +3 -2
  9. package/dist/esm/theme/ThemeProvider.js.map +1 -1
  10. package/dist/tokens/tokens.dark.css +1 -1
  11. package/dist/tokens/tokens.json +1 -1
  12. package/dist/tokens/tokens.light.css +1 -1
  13. package/dist/types/components/Icons/AddIcon.d.ts +33 -0
  14. package/dist/types/components/Icons/AiChatIcon.d.ts +34 -0
  15. package/dist/types/components/Icons/AiSparklesIcon.d.ts +34 -0
  16. package/dist/types/components/Icons/ArrowDownIcon.d.ts +33 -0
  17. package/dist/types/components/Icons/ArrowLeftIcon.d.ts +33 -0
  18. package/dist/types/components/Icons/ArrowRightIcon.d.ts +33 -0
  19. package/dist/types/components/Icons/ArrowUpIcon.d.ts +33 -0
  20. package/dist/types/components/Icons/BookmarkIcon.d.ts +33 -0
  21. package/dist/types/components/Icons/CalendarIcon.d.ts +33 -0
  22. package/dist/types/components/Icons/CheckIcon.d.ts +33 -0
  23. package/dist/types/components/Icons/ChevronDownIcon.d.ts +33 -0
  24. package/dist/types/components/Icons/ChevronUpIcon.d.ts +33 -0
  25. package/dist/types/components/Icons/CircleIcon.d.ts +33 -0
  26. package/dist/types/components/Icons/ClockIcon.d.ts +33 -0
  27. package/dist/types/components/Icons/CloseIcon.d.ts +33 -0
  28. package/dist/types/components/Icons/CodeIcon.d.ts +33 -0
  29. package/dist/types/components/Icons/CopyIcon.d.ts +33 -0
  30. package/dist/types/components/Icons/CutIcon.d.ts +33 -0
  31. package/dist/types/components/Icons/DownloadIcon.d.ts +33 -0
  32. package/dist/types/components/Icons/EditIcon.d.ts +33 -0
  33. package/dist/types/components/Icons/ErrorIcon.d.ts +33 -0
  34. package/dist/types/components/Icons/EyeDropperIcon.d.ts +34 -0
  35. package/dist/types/components/Icons/EyeIcon.d.ts +33 -0
  36. package/dist/types/components/Icons/FilterIcon.d.ts +33 -0
  37. package/dist/types/components/Icons/FolderIcon.d.ts +33 -0
  38. package/dist/types/components/Icons/FullscreenIcon.d.ts +33 -0
  39. package/dist/types/components/Icons/GridIcon.d.ts +33 -0
  40. package/dist/types/components/Icons/HeartIcon.d.ts +33 -0
  41. package/dist/types/components/Icons/HelpIcon.d.ts +33 -0
  42. package/dist/types/components/Icons/HomeIcon.d.ts +33 -0
  43. package/dist/types/components/Icons/InfoIcon.d.ts +33 -0
  44. package/dist/types/components/Icons/LinkIcon.d.ts +33 -0
  45. package/dist/types/components/Icons/ListIcon.d.ts +33 -0
  46. package/dist/types/components/Icons/LockIcon.d.ts +33 -0
  47. package/dist/types/components/Icons/MaximizeIcon.d.ts +33 -0
  48. package/dist/types/components/Icons/MenuIcon.d.ts +33 -0
  49. package/dist/types/components/Icons/MinimizeIcon.d.ts +33 -0
  50. package/dist/types/components/Icons/PasteIcon.d.ts +33 -0
  51. package/dist/types/components/Icons/PlayIcon.d.ts +33 -0
  52. package/dist/types/components/Icons/RedoIcon.d.ts +33 -0
  53. package/dist/types/components/Icons/RefreshIcon.d.ts +33 -0
  54. package/dist/types/components/Icons/RobotIcon.d.ts +33 -0
  55. package/dist/types/components/Icons/SaveIcon.d.ts +33 -0
  56. package/dist/types/components/Icons/SearchIcon.d.ts +33 -0
  57. package/dist/types/components/Icons/SettingsIcon.d.ts +33 -0
  58. package/dist/types/components/Icons/SortIcon.d.ts +33 -0
  59. package/dist/types/components/Icons/StarIcon.d.ts +33 -0
  60. package/dist/types/components/Icons/SuccessIcon.d.ts +33 -0
  61. package/dist/types/components/Icons/TagIcon.d.ts +33 -0
  62. package/dist/types/components/Icons/TangentAlignedIcon.d.ts +15 -0
  63. package/dist/types/components/Icons/TangentAutoIcon.d.ts +15 -0
  64. package/dist/types/components/Icons/TangentFreeIcon.d.ts +15 -0
  65. package/dist/types/components/Icons/TangentLinearIcon.d.ts +15 -0
  66. package/dist/types/components/Icons/TangentMirroredIcon.d.ts +15 -0
  67. package/dist/types/components/Icons/TangentStepIcon.d.ts +15 -0
  68. package/dist/types/components/Icons/TrashIcon.d.ts +33 -0
  69. package/dist/types/components/Icons/UndoIcon.d.ts +33 -0
  70. package/dist/types/components/Icons/UnlockIcon.d.ts +33 -0
  71. package/dist/types/components/Icons/UploadIcon.d.ts +33 -0
  72. package/dist/types/components/Icons/UserIcon.d.ts +33 -0
  73. package/dist/types/components/Icons/WarningIcon.d.ts +33 -0
  74. package/dist/types/components/Icons/ZoomInIcon.d.ts +33 -0
  75. package/dist/types/components/Icons/ZoomOutIcon.d.ts +33 -0
  76. package/dist/types/components/primitives/Button/Button.d.ts +1 -1
  77. package/dist/types/components/primitives/IconButton/IconButton.d.ts +1 -1
  78. package/dist/types/context/KeyboardContext.d.ts +20 -0
  79. package/dist/types/index.d.ts +64 -0
  80. package/package.json +1 -1
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Circle icon component for radio buttons and dot indicators.
6
+ *
7
+ * A standard circle icon commonly used for radio button selections,
8
+ * dot indicators, and circular markers in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <CircleIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <CircleIcon size="lg" color="primary" />
17
+ *
18
+ * // In a radio selection
19
+ * <Button icon={<CircleIcon />}>Option</Button>
20
+ * ```
21
+ */
22
+ declare const CircleIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { CircleIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Clock icon component for time and scheduling functionality.
6
+ *
7
+ * A standard clock icon commonly used for time displays,
8
+ * scheduling features, and temporal indicators in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <ClockIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <ClockIcon size="lg" color="primary" />
17
+ *
18
+ * // In a time picker
19
+ * <Button icon={<ClockIcon />}>Set Time</Button>
20
+ * ```
21
+ */
22
+ declare const ClockIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { ClockIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Close icon component for dismissing and closing actions.
6
+ *
7
+ * A standard X icon commonly used for closing modals,
8
+ * dismissing notifications, and cancel actions in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <CloseIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <CloseIcon size="sm" color="muted" />
17
+ *
18
+ * // In a close button
19
+ * <IconButton icon={<CloseIcon />} aria-label="Close" />
20
+ * ```
21
+ */
22
+ declare const CloseIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { CloseIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Code icon component for code and development actions.
6
+ *
7
+ * A standard code brackets icon commonly used for code editing,
8
+ * development tools, and programming features in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <CodeIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <CodeIcon size="md" color="accent" />
17
+ *
18
+ * // In a code context
19
+ * <Button icon={<CodeIcon />}>View Code</Button>
20
+ * ```
21
+ */
22
+ declare const CodeIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { CodeIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Copy icon component for duplication and clipboard actions.
6
+ *
7
+ * A standard copy icon commonly used for copying content,
8
+ * duplicating items, and clipboard operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <CopyIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <CopyIcon size="md" color="primary" />
17
+ *
18
+ * // In a copy button
19
+ * <Button icon={<CopyIcon />}>Copy</Button>
20
+ * ```
21
+ */
22
+ declare const CopyIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { CopyIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Cut icon component for cutting and removal actions.
6
+ *
7
+ * A standard scissors icon commonly used for cutting content,
8
+ * removing items, and clipboard cut operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <CutIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <CutIcon size="md" color="primary" />
17
+ *
18
+ * // In a cut button
19
+ * <Button icon={<CutIcon />}>Cut</Button>
20
+ * ```
21
+ */
22
+ declare const CutIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { CutIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Download icon component for file download actions.
6
+ *
7
+ * A standard download icon commonly used for downloading files,
8
+ * exporting content, and save-to-device actions in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <DownloadIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <DownloadIcon size="lg" color="success" />
17
+ *
18
+ * // In a download button
19
+ * <Button icon={<DownloadIcon />}>Download</Button>
20
+ * ```
21
+ */
22
+ declare const DownloadIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { DownloadIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Edit icon component for editing and modification actions.
6
+ *
7
+ * A standard pencil icon commonly used for editing content,
8
+ * modifying items, and entering edit mode in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <EditIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <EditIcon size="md" color="primary" />
17
+ *
18
+ * // In an edit button
19
+ * <Button icon={<EditIcon />}>Edit</Button>
20
+ * ```
21
+ */
22
+ declare const EditIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { EditIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Error icon component for error states.
6
+ *
7
+ * A standard X circle icon commonly used for error messages,
8
+ * failed operations, and critical alerts in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <ErrorIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <ErrorIcon size="sm" color="error" />
17
+ *
18
+ * // In an error context
19
+ * <Button icon={<ErrorIcon />}>Error</Button>
20
+ * ```
21
+ */
22
+ declare const ErrorIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { ErrorIcon };
@@ -0,0 +1,34 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * EyeDropper icon component for color sampling actions.
6
+ *
7
+ * A pipette/eyedropper icon commonly used for color picking,
8
+ * sampling colors from the canvas, and color-related tools
9
+ * in editor interfaces.
10
+ *
11
+ * @example
12
+ * ```tsx
13
+ * // Basic usage
14
+ * <EyeDropperIcon />
15
+ *
16
+ * // With custom size and color
17
+ * <EyeDropperIcon size="md" color="primary" />
18
+ *
19
+ * // In a color picker button
20
+ * <Button icon={<EyeDropperIcon />}>Pick Color</Button>
21
+ * ```
22
+ */
23
+ declare const EyeDropperIcon: React.NamedExoticComponent<Omit<{
24
+ children: React.ReactNode;
25
+ size?: IconSize | undefined;
26
+ color?: IconColor | undefined;
27
+ className?: string | undefined;
28
+ title?: string | undefined;
29
+ decorative?: boolean | undefined;
30
+ testId?: string | undefined;
31
+ ref?: React.Ref<SVGSVGElement> | undefined;
32
+ }, "children">>;
33
+
34
+ export { EyeDropperIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Eye icon component for visibility and view actions.
6
+ *
7
+ * A standard eye icon commonly used for showing content,
8
+ * toggling visibility, and preview actions in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <EyeIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <EyeIcon size="md" color="primary" />
17
+ *
18
+ * // In a visibility toggle
19
+ * <Button icon={<EyeIcon />}>Show</Button>
20
+ * ```
21
+ */
22
+ declare const EyeIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { EyeIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Filter icon component for filtering and sorting actions.
6
+ *
7
+ * A standard filter icon commonly used for filtering content,
8
+ * applying search filters, and data sorting in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <FilterIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <FilterIcon size="md" color="primary" />
17
+ *
18
+ * // In a filter button
19
+ * <Button icon={<FilterIcon />}>Filter</Button>
20
+ * ```
21
+ */
22
+ declare const FilterIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { FilterIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Folder icon component for directory and organization actions.
6
+ *
7
+ * A standard folder icon commonly used for file organization,
8
+ * directory navigation, and grouping content in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <FolderIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <FolderIcon size="lg" color="primary" />
17
+ *
18
+ * // In a folder browser
19
+ * <Button icon={<FolderIcon />}>Open Folder</Button>
20
+ * ```
21
+ */
22
+ declare const FolderIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { FolderIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Fullscreen icon component for expanding to fullscreen mode.
6
+ *
7
+ * A standard fullscreen icon commonly used for maximizing content,
8
+ * entering fullscreen mode, and expanding views in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <FullscreenIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <FullscreenIcon size="md" color="primary" />
17
+ *
18
+ * // In a fullscreen button
19
+ * <Button icon={<FullscreenIcon />}>Fullscreen</Button>
20
+ * ```
21
+ */
22
+ declare const FullscreenIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { FullscreenIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Grid icon component for grid view and layout actions.
6
+ *
7
+ * A standard grid icon commonly used for switching to grid view,
8
+ * layout options, and organizing content in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <GridIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <GridIcon size="md" color="primary" />
17
+ *
18
+ * // In a view toggle
19
+ * <Button icon={<GridIcon />}>Grid View</Button>
20
+ * ```
21
+ */
22
+ declare const GridIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { GridIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Heart icon component for favorites and like actions.
6
+ *
7
+ * A standard heart icon commonly used for favoriting content,
8
+ * like actions, and expressing preference in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <HeartIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <HeartIcon size="md" color="error" />
17
+ *
18
+ * // In a favorite button
19
+ * <Button icon={<HeartIcon />}>Favorite</Button>
20
+ * ```
21
+ */
22
+ declare const HeartIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { HeartIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Help icon component for help and support actions.
6
+ *
7
+ * A standard question mark icon commonly used for help documentation,
8
+ * support links, and information assistance in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <HelpIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <HelpIcon size="sm" color="muted" />
17
+ *
18
+ * // In a help context
19
+ * <Button icon={<HelpIcon />}>Help</Button>
20
+ * ```
21
+ */
22
+ declare const HelpIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { HelpIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Home icon component for home and main navigation.
6
+ *
7
+ * A standard house icon commonly used for home navigation,
8
+ * main page links, and dashboard access in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <HomeIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <HomeIcon size="md" color="primary" />
17
+ *
18
+ * // In a home button
19
+ * <Button icon={<HomeIcon />}>Home</Button>
20
+ * ```
21
+ */
22
+ declare const HomeIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { HomeIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Info icon component for information display.
6
+ *
7
+ * A standard information circle icon commonly used for showing information,
8
+ * details, and contextual help in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <InfoIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <InfoIcon size="lg" color="accent" />
17
+ *
18
+ * // In an info context
19
+ * <Button icon={<InfoIcon />}>Info</Button>
20
+ * ```
21
+ */
22
+ declare const InfoIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { InfoIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Link icon component for linking and connection actions.
6
+ *
7
+ * A standard link icon commonly used for creating links,
8
+ * connecting content, and URL-related features in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <LinkIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <LinkIcon size="md" color="primary" />
17
+ *
18
+ * // In a link button
19
+ * <Button icon={<LinkIcon />}>Add Link</Button>
20
+ * ```
21
+ */
22
+ declare const LinkIcon: React.NamedExoticComponent<Omit<{
23
+ children: React.ReactNode;
24
+ size?: IconSize | undefined;
25
+ color?: IconColor | undefined;
26
+ className?: string | undefined;
27
+ title?: string | undefined;
28
+ decorative?: boolean | undefined;
29
+ testId?: string | undefined;
30
+ ref?: React.Ref<SVGSVGElement> | undefined;
31
+ }, "children">>;
32
+
33
+ export { LinkIcon };