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
+ * List icon component for list view layouts.
6
+ *
7
+ * A standard list lines icon commonly used for switching to list view,
8
+ * linear data display, and structured content in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <ListIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <ListIcon size="md" color="primary" />
17
+ *
18
+ * // In a view toggle
19
+ * <Button icon={<ListIcon />}>List View</Button>
20
+ * ```
21
+ */
22
+ declare const ListIcon: 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 { ListIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Lock icon component for security and locked states.
6
+ *
7
+ * A standard padlock icon commonly used for indicating locked content,
8
+ * security features, and protected operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <LockIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <LockIcon size="sm" color="warning" />
17
+ *
18
+ * // In a security context
19
+ * <Button icon={<LockIcon />}>Lock</Button>
20
+ * ```
21
+ */
22
+ declare const LockIcon: 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 { LockIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Maximize icon component for maximize actions.
6
+ *
7
+ * A standard expand square icon commonly used for maximizing windows,
8
+ * expanding panels, and enlarging content areas in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <MaximizeIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <MaximizeIcon size="sm" color="secondary" />
17
+ *
18
+ * // In a window control context
19
+ * <Button icon={<MaximizeIcon />}>Maximize</Button>
20
+ * ```
21
+ */
22
+ declare const MaximizeIcon: 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 { MaximizeIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Menu icon component for menu/hamburger navigation.
6
+ *
7
+ * A standard three-line hamburger icon commonly used for opening menus,
8
+ * navigation drawers, and mobile menu toggles in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <MenuIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <MenuIcon size="md" color="secondary" />
17
+ *
18
+ * // In a navigation context
19
+ * <Button icon={<MenuIcon />}>Menu</Button>
20
+ * ```
21
+ */
22
+ declare const MenuIcon: 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 { MenuIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Minimize icon component for minimize actions.
6
+ *
7
+ * A standard compress square icon commonly used for minimizing windows,
8
+ * collapsing panels, and reducing content areas in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <MinimizeIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <MinimizeIcon size="md" color="muted" />
17
+ *
18
+ * // In a window control context
19
+ * <Button icon={<MinimizeIcon />}>Minimize</Button>
20
+ * ```
21
+ */
22
+ declare const MinimizeIcon: 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 { MinimizeIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Paste icon component for paste actions.
6
+ *
7
+ * A standard clipboard icon commonly used for pasting content,
8
+ * inserting items, and clipboard operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <PasteIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <PasteIcon size="lg" color="primary" />
17
+ *
18
+ * // In a paste button
19
+ * <Button icon={<PasteIcon />}>Paste</Button>
20
+ * ```
21
+ */
22
+ declare const PasteIcon: 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 { PasteIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Play icon component for play/start actions.
6
+ *
7
+ * A standard play triangle icon commonly used for starting playback,
8
+ * running processes, and begin operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <PlayIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <PlayIcon size="lg" color="success" />
17
+ *
18
+ * // In a play button
19
+ * <Button icon={<PlayIcon />}>Play</Button>
20
+ * ```
21
+ */
22
+ declare const PlayIcon: 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 { PlayIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Redo icon component for redo actions.
6
+ *
7
+ * A standard curved arrow icon commonly used for redoing operations,
8
+ * reapplying changes, and history navigation in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <RedoIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <RedoIcon size="md" color="secondary" />
17
+ *
18
+ * // In a redo button
19
+ * <Button icon={<RedoIcon />}>Redo</Button>
20
+ * ```
21
+ */
22
+ declare const RedoIcon: 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 { RedoIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Refresh icon component for refresh/reload actions.
6
+ *
7
+ * A standard circular arrow icon commonly used for refreshing content,
8
+ * reloading data, and update operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <RefreshIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <RefreshIcon size="lg" color="accent" />
17
+ *
18
+ * // In a refresh button
19
+ * <Button icon={<RefreshIcon />}>Refresh</Button>
20
+ * ```
21
+ */
22
+ declare const RefreshIcon: 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 { RefreshIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Robot icon component representing AI or automation.
6
+ *
7
+ * A robot head icon commonly used for AI assistant features,
8
+ * chatbots, and automation actions in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <RobotIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <RobotIcon size="lg" color="primary" />
17
+ *
18
+ * // In an AI chat button
19
+ * <Button icon={<RobotIcon />}>AI Assistant</Button>
20
+ * ```
21
+ */
22
+ declare const RobotIcon: 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 { RobotIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Save icon component for save actions.
6
+ *
7
+ * A standard floppy disk icon commonly used for saving files,
8
+ * persisting data, and storage operations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <SaveIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <SaveIcon size="lg" color="success" />
17
+ *
18
+ * // In a save button
19
+ * <Button icon={<SaveIcon />}>Save</Button>
20
+ * ```
21
+ */
22
+ declare const SaveIcon: 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 { SaveIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Search icon component for search functionality.
6
+ *
7
+ * A standard magnifying glass icon commonly used for search inputs,
8
+ * find operations, and lookup features in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <SearchIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <SearchIcon size="md" color="primary" />
17
+ *
18
+ * // In a search input
19
+ * <Input startIcon={<SearchIcon />} placeholder="Search..." />
20
+ * ```
21
+ */
22
+ declare const SearchIcon: 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 { SearchIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Settings icon component for configuration and preferences.
6
+ *
7
+ * A standard gear/cog icon commonly used for settings panels,
8
+ * configuration dialogs, and preference screens in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <SettingsIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <SettingsIcon size="lg" color="primary" />
17
+ *
18
+ * // In a settings button
19
+ * <Button icon={<SettingsIcon />}>Settings</Button>
20
+ * ```
21
+ */
22
+ declare const SettingsIcon: 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 { SettingsIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Sort icon component for sorting actions.
6
+ *
7
+ * A standard up/down arrows icon commonly used for sorting content,
8
+ * data ordering, and list arrangement in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <SortIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <SortIcon size="sm" color="muted" />
17
+ *
18
+ * // In a sort context
19
+ * <Button icon={<SortIcon />}>Sort</Button>
20
+ * ```
21
+ */
22
+ declare const SortIcon: 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 { SortIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Star icon component for favorites and ratings.
6
+ *
7
+ * A standard star icon commonly used for favorites, bookmarks,
8
+ * ratings, and highlighting important content in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <StarIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <StarIcon size="lg" color="warning" />
17
+ *
18
+ * // In a favorites context
19
+ * <Button icon={<StarIcon />}>Favorite</Button>
20
+ * ```
21
+ */
22
+ declare const StarIcon: 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 { StarIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Success icon component for success states.
6
+ *
7
+ * A standard checkmark circle icon commonly used for success messages,
8
+ * completed operations, and positive confirmations in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <SuccessIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <SuccessIcon size="lg" color="success" />
17
+ *
18
+ * // In a success context
19
+ * <Button icon={<SuccessIcon />}>Success</Button>
20
+ * ```
21
+ */
22
+ declare const SuccessIcon: 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 { SuccessIcon };
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ /**
5
+ * Tag icon component for tagging and labeling.
6
+ *
7
+ * A standard tag icon commonly used for labeling content,
8
+ * categorization, and metadata organization in editor interfaces.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * // Basic usage
13
+ * <TagIcon />
14
+ *
15
+ * // With custom size and color
16
+ * <TagIcon size="lg" color="primary" />
17
+ *
18
+ * // In a tagging context
19
+ * <Button icon={<TagIcon />}>Add Tag</Button>
20
+ * ```
21
+ */
22
+ declare const TagIcon: 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 { TagIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentAlignedIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentAlignedIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentAutoIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentAutoIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentFreeIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentFreeIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentLinearIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentLinearIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentMirroredIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentMirroredIcon };
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { IconSize, IconColor } from '../primitives/Icon/Icon.js';
3
+
4
+ declare const TangentStepIcon: React.NamedExoticComponent<Omit<{
5
+ children: React.ReactNode;
6
+ size?: IconSize | undefined;
7
+ color?: IconColor | undefined;
8
+ className?: string | undefined;
9
+ title?: string | undefined;
10
+ decorative?: boolean | undefined;
11
+ testId?: string | undefined;
12
+ ref?: React.Ref<SVGSVGElement> | undefined;
13
+ }, "children">>;
14
+
15
+ export { TangentStepIcon };